Quote:
Originally Posted by odinzu
I have this installed on my forum and I tried testing it today.. I found out that my upload doesn't work. I tried uploading a 10mb file thats format is wmv. It told me there was a upload error.
|
The problem is most likely related to the max file upload size in your php.ini file. Since most folks can't access that, try to below placing the .htaccess file in your forum root directory.
Quote:
Originally Posted by CyberRanger
If you want to control the max file size a user can upload, try putting this in .htaccess
PHP Code:
php_value upload_max_filesize 10M
php_value post_max_size 10M
|