Increasing Upload Size of PHPMyAdmin

Increasing file upload size of PHPMyAdmin is a very easy task.
Just open the file /etc/php5/apache2/php.ini

1
$ sudo gedit /etc/php5/apache2/php.ini

Search for “upload_max_size” and make it to the required upload limit.

1
upload_max_size=20 M         //here I make it to 20M

Next search for “post_max_size” and make it to some size greater than “upload_max_size”.

1
post_max_size=25 M       //here I make it to 25M

Next you restart the apache server.

1
$ sudo service apache2 restart

And it’s done.

Comments