Installation 4.2.6 phpmyadmin Access error, no response when entering the account and password Response
Error code
phpMyAdmin - Error Error during session start; please check your PHP and/or webserver log file and configure your PHP installation properly. Also ensure that cookies are enabled in your browser.
The reason is that there is no session storage mechanism file under /usr/local/php
Solution;
First check vim /etc/php.ini
Check whether session.save_path = "/usr/local/php/tmp/" is commented out. If the comment is removed; Turn on.
mkdir -p /usr/local/php/tmp/ chmod -R 777 /usr/local/php/tmp/
Restart httpd or fpm to solve the problem.
The browser is successfully accessed again.
Then go to the created directory to view the generated session content.