How to change the maximum upload file size for PHP scripts

This article describes how to change the maximum upload file size for PHP scripts by using the upload_max_filesize and post_max_size php directives. 

Changing the maximum upload file size

By default, the maximum upload file size for PHP scripts is set to 128 megabytes. However, you may want to change these limits. For example, you can set a lower limit to prevent users from uploading large files to your site. To do this, change the upload_max_filesize and post_max_size directives.

To ensure that file uploads work correctly, the post_max_size directive should be a little larger than the upload_max_filesize. For example, the following settings demonstrate how to set a file upload limit to 20 megabytes:

upload_max_filesize = 20M
post_max_size = 21M
To verify the current value of the upload_max_filesize directive and other directives, you can use the phpinfo() function. For more information, please see this article.

Setting the directives

The preferred way to set php directives is using the graphical tools in the control panel.

For accounts using the cPanel control panel, see this article.

For accounts using the Plesk control panel, see this article.

Many accounts also allow the use of a custom php.ini file.  For instructions to create a custom php.ini file, see this article.

More Information

Did you find this article helpful? Then you'll love our support. Experience the A2 Hosting difference today and get a pre-secured, pre-optimized website. Check out our web hosting plans today.

We use cookies to personalize the website for you and to analyze the use of our website. You consent to this by clicking on "I consent" or by continuing your use of this website. Further information about cookies can be found in our Privacy Policy.