When I try to upload a 85mb flash video (.flv) file, WordPress 2.8 tells me "This file is too big. Your php.ini upload_max_filesize is 600M"
Any ideas? php is set for 600MB and the video is less than 100.
Jerry
When I try to upload a 85mb flash video (.flv) file, WordPress 2.8 tells me "This file is too big. Your php.ini upload_max_filesize is 600M"
Any ideas? php is set for 600MB and the video is less than 100.
Jerry
You need to add in .htaccess file, the limit:
php_value upload_max_filesize 600M
php_value post_max_size 600M
I assume, you have already copied your php.ini in wp-admin folder and made the necessary changes there.
Worked perfectly modifying the .htaccess.
I very much appreciate the help!
You must log in to post.