phpMyAdmin configuration

后端 未结 10 1148
刺人心
刺人心 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:56

    Edit phpMyAdmin's config.inc.php and add or update LoginCookieValidity the value as follows:

    $cfg['LoginCookieValidity'] = 3600 * 9; // 9 hours
    

    In wamp or xampp or anything you use at php.ini, Search for upload_max_filesize this is where you should change it,

    we suggest you not use more than 64M filesize cause sometimes it makes crash:

    upload_max_filesize = 64M
    

    Save and exit.

提交回复
热议问题