PhpMyAdmin 128Mib limits

I have a large MySql database dump file that appears to exceed the max phpMyAdmin upload size.

The upload times out and suggests that I’ve exceeded the permissable upload size.

Is there a setting I can tweek to overcome this issue?

Sympl Version 12:
Hosted With: Mythic

You can either zip/gzip the SQL file when uploading it (assuming that’s not already been done), or upload it via FTP/SFTP and import it via the command line with something like cat <file.sql> | mysql -u <username> -p <database name>.

Oustanding. I’ll give that a try