I am having problems keeping the sessions active among the subdomains of the system, I am using the CakePHP version 2.4.7, I already added the function below in App/bootstrap.php
ini_set('session.cookie_domain', env('HTTP_BASE'));
I already put it in App/core.php
Configure::write('Security.level', 'low');
Configure::write('Session.save', 'session_save_handler');
But it still does not work, do you have any other settings for this to work?