Notes

increasing file size for PHPMyAdmin uploads

Edit on GitHub

PHP

Issue:

  • I cannot upload big dump files (memory, HTTP or timeout problems).
  • Can not import a database (Max: 2,048KiB)
1nano /etc/php5/apache2/php.ini # PHP5
2nano /etc/php/7.0/apache2/php.ini # PHP7
1post_max_size = 128M
2memory_limit = 128M
3upload_max_filesize = 64M # this is what corresponds with the file upload size in phpMyAdmin

Tip: Use ctrl+W to look for these settings.

1service apache2 reload

http://docs.phpmyadmin.net/en/latest/faq.html#faq1-16