How to solve time out in phpmyadmin?

后端 未结 10 1357
野性不改
野性不改 2020-11-29 21:30

I want import huge (at least 300 mb) sql scripts via phpMyAdmin.

I\'ve tried:

post_max_size = 750M
upload_max_filesize = 750M
max_ex         


        
10条回答
  •  渐次进展
    2020-11-29 21:56

    To increase the phpMyAdmin Session Timeout, open config.inc.php in the root phpMyAdmin directory and add this setting (anywhere).

    $cfg['LoginCookieValidity'] = ;
    

    Where is some number larger than 1800.

    Note:

    Always keep on mind that a short cookie lifetime is all well and good for the development server. So do not do this on your production server.

    Reference

提交回复
热议问题