I\'ve been trying to upload large data into my testing server, I\'ve modified a few files so far:
php.ini
memory_limit=2048M
php_value post_max_size 2048
Source: How to Import Large Database Files in XAMPP
Make changes in xampp\php\php.ini
Look for the following:
post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M
then replace the lines with the following:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
Restart your XAMPP after making the changes, if you are still seeing the same error – try restarting your computer.