There are a few common errors that occur in Wordpress and other PHP-based programs that use the php.ini for certain settings. One of the most common of these settings is the maximum upload filesize ("upload_max_filesize"). This is a setting commonly found within a file known as the php.ini file. Here's an example screenshot of a program with max file size limits exceeded during an upload attempt:
Error text: file_name" has failed to upload due to an error - This file exceeds the maximum upload size for this site.
You will need to increase the allowed memory in your php.ini file. The instructions below will show you on how to fix the php memory error by adjusting the appropriate sections of your local php.ini file.
Fixing the "Maximum upload size exceeded" Error
- Login to your cPanel.
- Scroll down to the FILES section of your Cpanel, and then click on the icon labeled FILE MANAGER.
- Use the File Manager to navigate to the web root. For more information on understanding your web root or document root.
- Locate the php.ini file in your public_html folder. or you can create a blank file by clicking on the New File icon and naming it php.ini so you can edit and add your own settings. Once you have a php.ini file, click on the file name to highlight it in the right side of the File Manager. If you need further information on editing with the File Manager editors, go to Using the File Manager Code Editor.
- Search the php.ini file for the following text:
;;;;;;;;;;;;;;;;
; File Uploads ;
; ;;;;;;;;;;;;;;; Whether to allow HTTP file uploads.
file_uploads = On; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =; Maximum allowed size for uploaded files.
upload_max_filesize = 128M
- The
- should be set to "on" and "
- " should be set to the file size that you need.
- Click the Save Changes button to save your changes.
This change affects all files within the directory that a php.ini is saved, unless the file is set to be recursive. If it is set to be recursive, then it affects all directories as per the setting in the .htaccess file.
If you got this error while installing a WordPress Theme, then you will need to put this php.ini file under the wp-admin folder for it to be effective.