Jump to content

Recommended Posts

Posted (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 by CharlieT
Posted

'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

Posted
'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...

Posted

'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).

Posted
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 :)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...