How to set the PHP maximum upload file size in an .htaccess file

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

The information in this article only applies to certain types of hosting accounts. To determine whether or not the information below applies to your account, please see this article.

This article assumes that you have already set up a custom .htaccess file. If you have not already set up a custom .htaccess file, please read this article first.

Changing the maximum upload file size

You may want to change the maximum upload file size for your web site. 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 in an .htaccess file.

To change the maximum upload file size for your PHP scripts, follow these steps:

  1. Log in to your account using SSH.
  2. Use a text editor to add the following line to the .htaccess file. Replace xx with the maximum upload file size that you want to set, in megabytes:
    php_value upload_max_filesize xxM
  3. Add the following line to the .htaccess file. Replace xx with the maximum HTTP POST file size that you want to set, in megabytes:

    php_value post_max_size xxM
    To ensure that file uploads work correctly, the post_max_size directive should be a little larger than the upload_max_filesize. For example, to set a file upload limit of 20 megabytes, you could set the upload_max_filesize directive to 20M, and the post_max_size directive to 21M.
  4. Save the changes to the .htaccess file and exit the text editor.
  5. To verify that the new setting is active, create a PHP test file that contains the following code in the same directory where the .htaccess file is located:
    <?php phpinfo(); ?>
  6. Load the test file in your web browser, and then search for the name of the directive. The Local Value column should display the new setting that you specified in the .htaccess file.

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.