WordPress solution to Increase Maximum Upload File Size in WordPress - Jagrav Education
BANNER 728X90

Tuesday, September 22, 2020

WordPress solution to Increase Maximum Upload File Size in WordPress

 



There are 4 ways that you can choose to increase the maximum upload file size in WordPress.

1. Update Core .htaccess file

php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300

Change the numbers to the values that you need. The max execution time and max input time values are in seconds and might need to be increased further if your internet connection is slow.

2. Update Core wp-config.php file

@ini_set( 'upload_max_filesize' , '128M' );
@ini_set( 'post_max_size', '128M');
@ini_set( 'memory_limit', '256M' );
@ini_set( 'max_execution_time', '300' );
@ini_set( 'max_input_time', '300' );

3. You can Ask your hosting provider

Reach over to the customer support of your hosting provider and ask them to increase these limits for you

4. Use some plugin?

No comments:

Post a Comment

Divi read more Text replace with custom text in divi builder via JS Query simple code in wordpress

  use simple JS Query for replace text  <script type="text/javascript"> (function($) { $(document).ready(function() { var ne...