Import file size limit in PHPMyAdmin

后端 未结 27 2644
遇见更好的自我
遇见更好的自我 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:25

    The first things to check (or ask your host provider to check) are the values of max_execution_time, upload_max_filesize, memory_limit and post_max_size in the php.ini configuration file. All of these three settings limit the maximum size of data that can be submitted and handled by PHP.

    Please note that post_max_size needs to be larger than upload_max_filesize.

提交回复
热议问题