Import file size limit in PHPMyAdmin

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

    This is how i did it:

    1. Locate in the /etc/php5/apache2/php.ini

      post_max_size = 8M
      upload_max_filesize = 2M
      
    2. Edit it as

      post_max_size = 48M
      upload_max_filesize = 42M
      

    (Which is more then enough)

    Restarted the apache:

    sudo /etc/init.d/apache2 restart
    

提交回复
热议问题