Last updated on August 23rd, 2014 at 08:01 am
[code]
phpMyAdmin – Error
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
[/code]
I face this problem in CentOS 6 with nginx and php-fpm, so I solve using this way
[code lang=”bash”]
sudo mkdir /var/lib/php/session
sudo chown nginx:nginx /var/lib/php/session
sudo chmod 777 /var/lib/php/session
[/code]
The restart both service
[code lang=”bash”]
service nginx reload
service php-fpm reload
[/code]
Done.