如何更改phpmyadmin自动注销时间?
它将在1440秒后自动退出,这对我来说非常低.如何更改选项或完全删除登录请求?
我想通过phpMyAdmin 导入巨大的(至少 300 mb)sql脚本.
我试过了:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 300
max_input_time = 540
memory_limit = 1000M
Run Code Online (Sandbox Code Playgroud)
在我的php.ini文件中,但我在导入过程中仍然遇到超时错误.
我知道在SO网站上多次询问过这个问题.但是,我已经读过这个,这个,这个,这个,这个和这个,还有更多.他们都没有工作.我还尝试更改会话文件位置和其他我现在不记得的事情.
我的设置:
一:config.inc.php文件:
<?php
$cfg['LoginCookieValidity'] = 3600 * 24; // http://docs.phpmyadmin.net/en/latest/config.html#cfg_LoginCookieValidity
Run Code Online (Sandbox Code Playgroud)
这显示在phpMyAdmin设置中:

二:.htaccess文件:
php_value session.gc_maxlifetime 86400
Run Code Online (Sandbox Code Playgroud)
三:phpinfo.php来自phpMyAdmin根目录的文件显示:

四:服务器(uname -a):
Linux ubuntu-13 3.11.0-26-generic #45-Ubuntu SMP Tue Jul 15 04:02:06 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
Run Code Online (Sandbox Code Playgroud)
有没有其他方法可以增加phpMyAdmin会话超时?