phpmyadmin token mismatch for long time idle

前端 未结 10 1596
醉酒成梦
醉酒成梦 2021-01-31 09:07

I installed phpMyAdmin 4.0.4.1 on my local develop enviroment, I set auth_type to config. Also I provide authentication requirements by th

相关标签:
10条回答
  • 2021-01-31 09:42

    After doing all that was recommended here and in other places with no success, I found out that my /tmp was full.

    To check it, just run from command line: df

    It reports file system disk space usage.

    0 讨论(0)
  • 2021-01-31 09:47

    In my case I had to remove some files to make some space in this directory (\tmp) and the error was gone for now.

    0 讨论(0)
  • 2021-01-31 09:53

    I solve this annoying problem by following instructions below:

    1. open /etc/php5/apache2/php.ini
    2. find ;session.save_path = "/tmp", this line may look also like this ;session.save_path = "/var/lib/php5"
    3. remove first semicolon from this line
    4. restart apache by executing sudo service apache2 restart

    FYI: I work under Ubuntu 12.04 with apache2, php5, phpMyAdmin 4.0.5 so for different systems and servers file path may be a little different.

    In case of any troubles check if directory from step 2. is writable for server.

    Good luck.

    0 讨论(0)
  • 2021-01-31 09:57

    Try using another browser ex IE if it works then remove suspected chrome extensions . Forr me pageXray was the problem.

    0 讨论(0)
提交回复
热议问题