copy and paste below: The upper limit to limit download and post-limit in PHP copy and paste below: http://daipratt.co.uk/importing-large-files-into-mysql-with-phpmyadmin/
How I overcame the same problem.
When trying to import large SQL files into mysql using phpmyadmin, the phpmyadmin documentation offers several solutions, but I find the easiest way to overcome this ...
Locate the config.inc.php file located in the phpmyadmin directory. In my case, it is here :? 1 C:\wamp\apps\phpmyadmin3.2.0.1\config.inc.php
Find the line with $cfg['UploadDir'] on it and update it to :? 1 $cfg['UploadDir'] = 'upload';
Create a directory named 'upload in the phpmyadmin directory.? 1 C:\wamp\apps\phpmyadmin3.2.0.1\upload\
Then put the large sql file that you are trying to import into the new download directory. Now, when you go to the db import page in the phpmyadmin console, you will see a drop-down list that was not there before - it contains all the sql files in the download directory that you just created. Now you can select this and start importing.
If you are not using WAMP on Windows, then I am sure that you can easily adapt it to your environment without any problems.
Jiar
source share