Hi there.
I had severe issues regarding the Request class.
I had to switch back to the “old” mechanism to avoid constant
redirections and page constantly redirecting & reloading.
In Request.php, lines to 146 to 154 (git master) :
if (is_null(self::$request_class))
{
// new default to use egw_cache to store
requests
// self::$request_class =
CLASS.’\Cache’;
// old default to use request if mcrypt and gzcompress are
available and session if
not
self::$request_class = check_load_extension('mcrypt') &&
function_exists(‘gzcompress’) &&
self::init_crypt() ? CLASS :
‘etemplate_request_session’;
}
How may i check/debug that my setup is compliant with the use of the new
default ?
What causes may prevent my setup to enable “egw_cache to store requests” ?
Is it safe so use the “old default” ?
–
S.PERES-LABOURDETTE