Import file size limit in PHPMyAdmin

后端 未结 27 2622
遇见更好的自我
遇见更好的自我 2020-11-27 08:46

I have changed all the php.ini parameters I know: upload_max_filesize, post_max_size.

Why am I still seeing 2MB?

Im using Zend Serv

27条回答
  •  庸人自扰
    2020-11-27 09:29

    For uploading large files through PHPMyAdmin, follow these steps:

    Step 1: Open your php.ini file.

    Step 2: Upgrading Memory Limit:

    memory_limit = 750M
    

    Step 3: Upgrading Maximum size to post:

    post_max_size = 750M

    Step 4: Upgrading Maximum file-size to upload:

    upload_max_filesize = 1000M

    Step 5: Upgrading Maximum Execution Time:

    max_execution_time = 5000

    Step 6: Upgrading Maximum Input Time:

    max_input_time = 3000

    Step 7: Restart your xampp control panel.

提交回复
热议问题