How to Increase Import Size Limit in phpMyAdmin

前端 未结 19 1887
萌比男神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:27

    IF YOU ARE USING NGINX :

    1. cd /etc/php//fpm example => cd /etc/php/7.2/fpm

    2. nano php.ini

      post_max_size = 1024M 
      upload_max_filesize = 1024M 
      max_execution_time = 3600 
      max_input_time = 3600 
      memory_limit = 1024M 
      
    3. after saving php.ini file , restart fpm using :

      systemctl restart php-fpm
      

    example => systemctl restart php7.2-fpm

提交回复
热议问题