Home > Database > phpMyAdmin > body text

What should I do if there is an error when accessing phpmyadmin and there is no response when entering the account and password?

藏色散人
Release: 2021-03-30 19:32:03
forward
2443 people have browsed it

The following tutorial column of phpmyadmin will introduce to you the solution to the error of accessing phpmyadmin and no response when entering the account and password. I hope it will be helpful to friends in need!

What should I do if there is an error when accessing phpmyadmin and there is no response when entering the account and password?

Access to phpmyadmin error, no response when entering the account and password

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.
Copy after login

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/
Copy after login

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.


The above is the detailed content of What should I do if there is an error when accessing phpmyadmin and there is no response when entering the account and password?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!