#AskMe

Import file size limit in PHPMyAdmin

Performance tuning is very important and there are still a lot of question around, here our tips to help base on our experience.

  1. Import file size limit in PHPMyAdmin

For uploading large files through PHPMyAdmin, follow these steps:

memory_limit = 750M

post_max_size = 750M

upload_max_filesize = 1000M

max_execution_time = 5000

max_input_time = 3000

2. Maximum execution time in phpMyadmin

Please go to:

xampp\phpMyAdmin\libraries\config.default.php

Look for : $cfg[‘ExecTimeLimit’] = 600;

You can change ‘600’ to any higher value, like ‘6000’.

Maximum execution time in seconds is (0 for no limit).