How to Increase Import Size Limit in phpMyAdmin

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

    Be sure you are editing php.ini not php-development.ini or php-production.ini, php.ini file type is Configuration setting and when you edit it in editor it show .ini extension. You can find php.ini here: xampp/php/php

    Then

    upload_max_filesize = 128M
    post_max_size = 128M
    max_execution_time = 900
    max_input_time = 50000000
    memory_limit = 256M
    

    enter image description here]

提交回复
热议问题