phpMyAdmin configuration

后端 未结 10 1145
刺人心
刺人心 2021-02-01 03:08
  • How do I increase phpmyadmin session timeout?
  • How do I increase phpmyadmin import file size limit(currently it says Max: 2,048KiB). I tried changing upload_
10条回答
  •  执念已碎
    2021-02-01 03:58

    Rather than setting session.gc_maxlifetime in the php.ini file, better to add the following to your config.inc.php file (typically in the /etc/phpmyadmin directory):

    ini_set('session.gc_maxlifetime', '86400');
    

    That way you don't compromise security for other PHP scripts, or cause excessive clutter in the RAM due to infrequent Garbage Collection.

提交回复
热议问题