Import file size limit in PHPMyAdmin

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

    I am using Bitnami WAMP Stack 7.1.8-0 on my localhost. For me, the PHPMyAdmin maximum upload size limit was set to 80MiB as in the screenshot https://nimb.ws/fFxv7O. I managed to increase this size limit as explained below:

    1. Go to the folder where you have installed the Bitname WAMP Stack, for me, it is "E:\Bitnami WAMP Stack”
    2. Further inside, go to the path “apps\phpmyadmin\conf"
    3. Open the file httpd-app.conf in your favorite text editor
    4. Find the following two lines:
    php_value upload_max_filesize 80M    
    php_value post_max_size 80M
    

    (The 80M value at the end of these lines may be different for you)

    1. Go ahead and change these values at the end of these two lines (80M in this case) according to your needs.

    2. Restart WAMP server.

    Now go to PHPMyAdmin and see, your upload size limit should be updated to whatever you set it to. That is it.

提交回复
热议问题