FIX->Fatal error: Maximum execution time of 300 seconds exceeded with phpMyAdmin
PHPMyAdmin will not work for uploading large mysql databases. If you attempt to upload a large mysql dataset you will often get this error
Fatal error: Maximum execution time of 300 seconds exceeded
Fix:
If you get this error you will need edit config.default.php inside phpmyadmin and look for this line
$cfg['ExecTimeLimit'] = 300;
and replace with 0 or any larger value
$cfg['ExecTimeLimit'] = 3600;
If that doesnt work, try this BigDump MySQL Importer. It is free for download.
If you have commandline …

