By aoegamers.com on
Is there a limit to the size of a file that a user can upload to the forums? I have tried uploading a 4.75 MB file and it doesn't show up.
Is there a limit to the size of a file that a user can upload to the forums? I have tried uploading a 4.75 MB file and it doesn't show up.
Comments
This limit is set not by
This limit is set not by Drupal but by your PHP configuration on server. Try to edit php.ini to allow bigger files.
Drupal Top Sites | Drupal Sites Directory
Check your PHP
Check your PHP configuration, theres a upload limit called upload_max_filesize .
Where would I find these
Where would I find these files at?
System
Depends a lot on your system. Could be in /etc or in c:\program files\xampp\php\. It's also possible that you do not have access to php.ini. Some hosts allow a php.ini in the documentroot.
--
Tips for posting to the forums.
When your problem is solved, please post a follow-up to the thread you started.
You may also try this
You may also try this http://drupal.org/node/19326#comment-37873 .
...or this
...or this http://drupal.org/node/19326#comment-86130 .
I have done the following to
I have done the following to try to get this to work:
Changed the settings to allow ZIP, EXE and RAR
Changed Setting to allow files 1000MB at once, per user
Chnaged HTACCESS file to include upload sizes, but it the system changed it:
# File modified on Sun Feb 19 14:51:24 2006 by server
# For security reasons, mod_php is not used on this server. Use a php.ini file for php directives
# php_value upload_max_filesize 10000000
# For security reasons, mod_php is not used on this server. Use a php.ini file for php directives
# php_value post_max_size 10000000
Cannot find php.ini on my server. Don't know where it is. It is not in etc. Not sure if they have to give me access for that.
Changed settings.php to:
ini_set('post_max_size', '10M');
ini_set('upload_max_filesize', '10M');
I checked upload.module to ensure it was correct and did not have to add the "* 1024 * 1024" thing. It was there.
Not sure what else I can do here. I'm not getting any errors when I upload. I hit attach and when it is done uploading, ther page refreshes and nothing is there. I checked the files directory and the file is not there.
likewise
I am having the same trouble
The applicable variables in the php.ini are set extra high. There are no OS limits on directory size. For some reason I cannot attach a file larger than about 20MB, it seems.
Is there possibly a limit on the browser side or inherent in AJAX?