|
刚刚我在安装phpmyadmin的时候,出现了提示错误:Failed to store CSRF token in session! Probably sessions are not working properly.
google查到了解决办法:
modify php.ini :
session.save_path = "c:\session"
The default session.save_path is C:\Windows\Temp. If you're getting this error IIS probably doesn't have permissions to create a session file there.
Only thing you'll have to do is give "IUSR" modify permissions on this folder and reload your phpMyAdmin page.
简单的说就是:windows中IUSR用户没有读取权限,自己设置一个session目录,然后授权给这个用户就可以了。
原贴地址:https://stackoverflow.com/questi ... en-phpmyadmin-4-6-4
|
|