Answers for "change phpmyadmin import file size limit"

PHP
0

phpmyadmin import size limit

edit or add this line in php.ini

max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
post_max_size = 750M
upload_max_filesize = 750M
Posted by: Guest on January-08-2022
0

phpmyadmin change database import size

Just change your php.ini(xampp/php/php.ini) file, it worked for me!

max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
post_max_size = 750M
upload_max_filesize = 750M

And, don't forget to restart Apache Module from XAMPP Control Panel.
Posted by: Guest on April-28-2021

Code answers related to "change phpmyadmin import file size limit"

Browse Popular Code Answers by Language