PhpMyAdmin saves redirection to login screen

I am having trouble logging into PhpMyAdmin. When I click "login" after entering my credentials, it simply returns to the login screen. A few days ago, I was able to log in. I do not know what I did that caused this.

I can enter mysql perfectly in the shell (mysql -D database -u user -ppassword). My sites work as expected. What could it be?

Edit: Registration works fine in Firefox, but not in Chrome or IE See Answer # 4 in this section: https://sourceforge.net/projects/phpmyadmin/forums/forum/72909/topic/4479151

thanks.

+7
source share
2 answers

After searching for this problem for ages, I finally figured out what it was in my case. The problem was that google chrome is doing validation on the cookie's timestamp (or something like that). Just make sure that the PMA server installed on it has the correct date and time settings and is not synchronized. This should solve your problem.

+9
source

If all your settings for phpMyAdmin are correct, but the problem still persists, this may be due to lack of disk space. If so, you can use df -h to diagnose a space problem.

My scenario was that cron was used to create mysqldump a large database until the space ran out. After removing the sql dumps, phpMyAdmin registered as it should.

Hope this helps.

+2
source

All Articles