How to Increase Import Size Limit in phpMyAdmin

前端 未结 19 1879
萌比男神i
萌比男神i 2020-12-02 04:58

Does anyone know if or how you can increase the import size limit in phpMyAdmin? Currently my server is limited to 50MB.

Please note that this is no

19条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 05:14

    I had the same problem with my working correctly by doing the following

    changes into the php.ini file

    post_max_size = 800M 
    upload_max_filesize = 800M 
    max_execution_time = 5000 
    max_input_time = 5000 
    memory_limit = 1000M 
    

    now restart for the changes to take effect

提交回复
热议问题