My localhost server only allow (Max: 2,048 KiB) but my dump file that I wanted to import is about 200mb, how can I increase the file size when importing sql file in phpmyadmin?
Maybe you should try load dump from console ? I don't knot which system you are using, if it is linux try this in terminal : You can dump the database into a file using: mysqldump -h hostname -u user --password=password databasename > filename you can restore the info to the database again using: mysql -h hostname -u user --password=password databasename < filename