Increase plugin upload limit wp migration
How to Increase upload limit all in one wp migration plugin ?just follow these steps to increase all in one wp migration plugin upload limit
1- Update .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
You have to increase max_filesize and post_max_size to incease upload limit according to your needs(you can see in below image)
@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' );
You have to increase max_filesize and post_max_size to incease upload limit according to your needs(you can see in below image)
100% working method. it will work perfectly.
If you need help regarding this post you can comment or contact us on facebook.com/dwebsol
Post a Comment