bondct Posted October 28, 2005 Posted October 28, 2005 (edited) I am unable to upload files to coopermine over 2mb... I need to upload files in the 3-5mb range... is this a server side limitation? I have tried to research the coopermine site and they say the default max_input_size is 60 seconds so I think I am timing out on larger files... even though I have broadband connection doh i am a loser... here is my prob... from the coop website 1. max_input_time- 60 seconds is the default time limit for uploading files. This time limit includes the time it takes for the files to upload, so if you exceed this limit, the file will not even parse, and the browser will not get a response. You can workaround this by trying to upload smaller or fewer files, or you can try uploading over broadband. The best solution, of course, is to increase the time limit to something more in line with your needs. 2. upload_max_filesize - 2MB is the default limit for individual files. Edited October 28, 2005 by CharlieT Quote
TweezerMan Posted October 28, 2005 Posted October 28, 2005 'upload_max_filesize' is a PHP configuration setting that would indeed limit the size of files you could upload. You can change this by adding the following to your .htaccess file, which would increase that limit to 5MB: >php_value upload_max_filesize 5M Quote
bondct Posted October 29, 2005 Author Posted October 29, 2005 'upload_max_filesize' is a PHP configuration setting that would indeed limit the size of files you could upload. You can change this by adding the following to your .htaccess file, which would increase that limit to 5MB: >php_value upload_max_filesize 5M and what about the 60 sec timeout setting? anything I can edit for that... the 60 sec is actually more of an issue... Quote
TweezerMan Posted October 29, 2005 Posted October 29, 2005 'max_input_time' is also a PHP configuration setting that can be set in your .htaccess file: >php_value max_input_time 300 This would set the file upload timout to 5 minutes (300 seconds). Quote
bondct Posted October 30, 2005 Author Posted October 30, 2005 and what about the 60 sec timeout setting? anything I can edit for that... the 60 sec is actually more of an issue... thnx very much... that did it Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.