Home > Database > Mysql Tutorial > phpMyAdmin老出现登陆超时解决方法

phpMyAdmin老出现登陆超时解决方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:59:04
Original
1181 people have browsed it

现象一:phpmyadmin在使用过程中经常出现登陆超时(1440秒未活动),请重新登录; 现象二:phpmyadmin 里会出现您的 PHP 配置参数 session.gc_maxlifetime (外链,英文) 短于您在 phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 phpM

现象一:phpmyadmin在使用过程中经常出现“登陆超时(1440秒未活动),请重新登录”;

现象二:phpmyadmin 里会出现“您的 PHP 配置参数 session.gc_maxlifetime (外链,英文) 短于您在 phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 phpMyAdmin 中设置的时间要更短。”的错误提示。

解决方法:

第一步:

修改php.ini,找到

session.gc_maxlifetime = 1440

将数值改大就行了,然后使之生效

第二步:

在phpMyAdmin所在目录找到 / libraries / config.default.php 文件,打开,修改

$cfg['LoginCookieValidity'] = 1440; 

修改:$cfg['LoginCookieValidity']的值小于或等于php.ini里的session.gc_maxlifetime的值,即可解决”现象二“

注意:$cfg['LoginCookieValidity']的值不能大于php.ini里的session.gc_maxlifetime的值,否则phpmyadmin 里会出现“您的 PHP 配置参数 session.gc_maxlifetime (外链,英文) 短于您在 phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 phpMyAdmin 中设置的时间要更短。”错误(即问题现象二的错误)。


source:php.cn
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