• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

upload limit

PHP Upload Limit

September 18, 2014

I was working on PHPMyAdmin today trying to create a copy of a database. The SQL file was bigger than 8MB. Before I uploaded, I saw a message on the page of PHPMyAdmin saying the upload limit is 8MB. All indication points to increasing the upload size in the PHP configuration.

Since my server runs on Ubuntu, the php.ini file is located in /etc/php/apache2/php.ini. You’ll need to change the following settings:

sudo nano /etc/php/apache2/php.ini

sudo nano /etc/php/apache2/php.ini

# Edit the following entries to file size you want
upload_max_filesize = 32M
post_max_size = 32M

# Edit the following entries to file size you want upload_max_filesize = 32M post_max_size = 32M

It makes sense to match the two values because they go hand-in-hand.

The changes won’t take effect until you restart Apache.

sudo service apache2 restart

sudo service apache2 restart

Filed Under: Linux, PHP Tagged With: upload limit

  • Home
  • About
  • Archives

Copyright © 2023