CyberRanger |
12-19-2007 12:37 PM |
Quote:
Originally Posted by Poeta
(Post 1404440)
hi guys,
one of my users is trying to upload a 80mb file.. the upload works but there is no trace of the file. Any ideas? Is there a limit of mb that can be uploaded?
Thanks :)
|
Are you SURE the upload worked? Normally, your web server won't permit that big of an upload unless you've modified the config files or .htaccess.
From prior posts in this thread:
Quote:
Originally Posted by Hex_legend
(Post 1396209)
however when I upload a media clip of something 2MB+ it comes up with
Upload Error! Can Not Upload.
|
Quote:
Originally Posted by nebu
(Post 1277951)
tell me what to do plz.
|
Like Jelle has said already, you need to create a file named .htaccess (note the period in front of the name). Put the following two lines into the file:
Code:
php_value upload_max_filesize 30M
php_value post_max_size 30M
Upload the file into your forum directory (the same location where downloads.php is located.)
This will increase the size of the file you can upload to 30MB.
|