Many WordPress users encounter the limitation of the maximum file upload size, especially when dealing with media-rich websites. Fortunately, increasing this limit can be accomplished with a few straightforward steps. Below, we will break down the process into simple points for your convenience.
Step 1: Check Your Current Limits
Before making any changes, it is essential to determine your existing upload limit. You can find this information in the WordPress dashboard under Media > Add New. The maximum upload file size will be displayed at the top of the upload area.
Step 2: Update the .htaccess File
One effective method to increase the max file upload size is editing your site’s .htaccess file. To do this:
- Access your website via an FTP client.
- Locate the .htaccess file in the root directory.
- Add the following lines:
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
Step 3: Modify wp-config.php
If the previous step does not yield results, you may need to edit the wp-config.php file. Follow these steps:
- Again, access your site via an FTP client.
- Locate and open the wp-config.php file.
- Add the line:
define('WP_MEMORY_LIMIT', '256M');
This will help increase the memory limit for WordPress, which can in turn allow for larger file uploads.
Conclusion
By following the steps outlined above, you can efficiently increase the maximum file upload size in your WordPress site. This will enable you to manage larger files without encountering frustrating limitations.

