If you do a google search for “increase file upload limit wordpress” or some combination of similar words, you see the same advice repeated all over: change your php.ini file so it reads something like
upload_max_filesize = 10M post_max_size = 10M (possibly including an execution time variable as well), and/or change your .htaccess to read:
php_value upload_max_filesize 10M php_value post_max_size 10M Which literally does the same thing at a different level.
Continue reading