Increase Upload Size
To increase the PHP / Apache file upload size, you may use one of the following snippets
#1 Theme or Plugin
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
#2 php.ini
memory_limit = 100M
upload_max_filesize =...