Have a database bigger than 2MB? want to import them somewhere else? but you cant and PHPmyAdmin just gave you the dead end message below?
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.
Have no fear, there’s a solution:
Look for the php.ini file -> c:/wamp/www/apache2/bin/php.ini
Then change the following lines:
post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M
To these new values:
post_max_size = 100M upload_max_filesize = 100M max_execution_time = 5000 max_input_time = 5000 memory_limit = 100M
Then restart wamp5 and retry importing…
Happy coding


