You may have seen this error at least once, if you have used WordPress.When installing a theme, plugin or uploading a image or file, you may find this dreaded message on your screen. It has nothing to do with the theme or plugin. The issue is with your server settings which limit the maximum size for uploaded files.
It’s a common error and it can be easily fixed. This error message is an indication of that the file you are trying to upload is larger than your web host allows (WordPress default file upload size is 2 MB).
The uploaded file exceeds the upload_max_filesize directive in php.ini
Solution:
Solution is easy, you need to increase file size upload limit. You can do it yourself or ask your web host support team to increase the file size limit.
Way to fix it:
Editing Your .htaccess file
If the above editing PHP.ini file doesn’t work for you, then you can edit your .htaccess file to fix this issue.
Follow these steps to edit your .htaccess file
-
- Log in to your web hosting account and go to cPanel
- Click on FILES -> File Manager
- Select “Document Root for:” from the Directory Selection and click on Go. (Make sure the checkbox for Show Hidden Files is checked)
- find the .httaccess file.
- Open the .htaccess file and or edit the following code at the bottom.
php_value upload_max_filesize 64M php_value post_max_size 64M php_value memory_limit 400M php_value max_execution_time 180 php_value max_input_time 180
- Save the changes you made to the .htaccess file
Note: if you can’t find the .htaccess file in your root directory, create a file and name it .htaccess