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:- Log in to your account using SSH.
-
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:
-
Add the following line to the .htaccess file. Replace xx with the maximum HTTP POST file size that you want to set, in megabytes:
🚧 Important 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 .
- Save the changes to the .htaccess file and exit the text editor.
-
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:
- 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
- To view a complete list of PHP directives, please visit http://www.php.net/manual/en/ini.list.php.
- For more information about the upload_max_filesize directive, please visit http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize.
- For more information about the post_max_size directive, please visit http://www.php.net/manual/en/ini.core.php#ini.post-max-size.