Hi,
I faced an issue after installing phpmyadmin on one of the server. I am unable to load the phpmyadmin url giving error as "Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. "
The issue was with some permission with session path of php
For fixing the issue. First note the php settings path in php.ini using the command
php -i | grep -i session
For me the session path is /var/lib/php
I just gave is 777 permission using the command
chmod 777 /var/lib/php
Then the issue was resolved and I was able to login to phpmyadmin now.
Thanks and Regards
Syamkumar.M
I faced an issue after installing phpmyadmin on one of the server. I am unable to load the phpmyadmin url giving error as "Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. "
The issue was with some permission with session path of php
For fixing the issue. First note the php settings path in php.ini using the command
php -i | grep -i session
For me the session path is /var/lib/php
I just gave is 777 permission using the command
chmod 777 /var/lib/php
Then the issue was resolved and I was able to login to phpmyadmin now.
Thanks and Regards
Syamkumar.M
No comments:
Post a Comment