1Place in .htaccess file
2
3php_value upload_max_filesize 64M
4php_value post_max_size 64M
5php_value max_execution_time 300
6php_value max_input_time 300
1//Add to functions.php file
2@ini_set( 'upload_max_size' , '120M' );
3@ini_set( 'post_max_size', '120M');
4@ini_set( 'max_execution_time', '300' );