PhpMyAdmin – Error Cannot start session

Asked By 0 points N/A Posted on -
qa-featured

What is this? I am very confused about this error. I create one PHP page. In this page I create 1 database link. So that I can insert, update and delete record. But when I try to access it then I receive below error due to this error my all work has been stopped. Please tell me its solution. How can I remove this error.

Error detail

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.

SHARE
Best Answer by jhon clark
Best Answer
Best Answer
Answered By 0 points N/A #120783

PhpMyAdmin – Error Cannot start session

qa-featured

PHP stores variable for the purpose to differentiate in multiple HTTP requests. PHP sends cookie to your browser and that cookies is used as a key. The browser use that key to get values from server-side. PHP have a files that are used to store session data on server. The error which you have mention show that your server is unable to retrieve the file, that's why variable can not be restore. and PHP MYAdmin is unable to proceed.

This error is due to filesystem permissions on your local machine. change your filesystem permission to 777. It will solve your problem.

 

 

 

 

 

 

 

Answered By 5 points N/A #120785

PhpMyAdmin – Error Cannot start session

qa-featured

 

Try to run the phpmyadmin script again as root:
 
Code:
/usr/local/directadmin/scripts/phpMyAdmin.sh
This usually fixes most of the problems.
If not let us know and we can investigate further.

Related Questions