Posts Tagged ‘PHPMyAdmin’
Sometimes phpMyadmin will give you following error.
“cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.”
Make the following changes.
root@server[~]#nano /usr/local/cpanel/3rdparty/etc/phpmyadmin/php.ini
And than change the following values in php.ini file
FROM:
=================================
session.save_handler = sqlite
session.save_path =/var/cpanel/userhomes/cpanelphpmyadmin/sessions/phpsess.sdb
=================================
TO
=================================
session.save_handler = files
session.save_path = /tmp
=================================
Restart cpanel