Quote:
Originally Posted by spandexman
I'm having trouble uploading large files. The file is 15megs but it always gives me a connection error when I try to upload it.
Someone posted you need to edit the .htaccess file but I cant find it.
|
Search is your friend :-)
Quote:
Originally Posted by westpointer
php has a limit. To over-ride it, add this to your .htaccess file in the same folder that downloads.php is in.
Code:
php_value upload_max_filesize 25M
php_value post_max_size 25M
change the 25M to whatever you'd like it to be.
|