#wordpress #wordpresstutorial #wordpresstamil #wordpresshosting #wp
WordPress Course in Chennai
https://kingofseo.in/wordpress-course...
Call : 7338968869
How to Increase the Maximum File Upload Size in WordPress
Most users have different WordPress hosting setups :
Method 1: Contact Your WordPress Hosting Provider
Method 2: Create or Edit an Existing php.ini file
Method 3: Add Code to Your WordPress Theme functions.php File
Method 4: Add Code to Your .htaccess File
Method 5: Use a WordPress Plugin to Increase File Upload Size
php.ini
upload_max_filesize = 256M
post_max_size = 256M
max_execution_time = 3000
.htaccess file
php_value upload_max_filesize 64M
php_value post_max_size 128M
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300
funtion.php
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
Plugin methods
Increase Maximum Upload File Size | Increase Execution Time