PHPMYADMIN: No data was received to import. Either no file name was submitted, or the file size
No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted
We just need to find the following things in the php.ini file:
post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M
post_max_size = 40M
upload_max_filesize = 10M
max_execution_time = 150
max_input_time = 300
memory_limit = 40M
When you have completed the above settings, then save the file php.ini.
Now, restart the wamp server (or Apache) to take effect with the new configuration. After completing these steps, try to upload your database again and you will be able to upload your database and solve the problem No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16.