There can be multiple ways to modify session.save_path. If you have root access or access to php.ini then modify [session] . . . save_path = “/path/to/session/storage/” You can modify .htaccess file php_value session.save_path “/path/to/session/storage/” by using PHP file ini_set(“session.save_path”,”/path/to/session/storage/”); Please post if you have any problem or need any help.
