Sentora Support Forums

Full Version: SQL too big
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 457c3d00db040994dd33bd910a119e1a.png]

only tried to import a db that is 49.56 mb into phpmyadmin.

Just asking where I can change my upload file size limit or do I have to ask my host to do that
edit this problem is now solved but now it says this:
#1153 - Got a packet bigger than 'max_allowed_packet' bytes
I changed it to 10000m but still not big enough
For databases larger than 10mb it is suggested to use something like http://www.ozerov.de/bigdump/ or similar rather than change your server upload max size settings.
Edit the lines of your php.ini, as follows:
Code:
upload_max_filesize = 128M post_max_size = 128M max_execution_time = 120 max_input_time = -1 memory_limit = 128M
Or as needed.