Coppermine Uploads

liunx

Guest
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<br /><br />doh i am a loser... here is my prob... from the coop website<br /><br />1. max_input_time- 60 seconds is the default time limit for uploading files.<br /><br />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. <br /><br />2. upload_max_filesize - 2MB is the default limit for individual files.<!--content-->
'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:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->php_value upload_max_filesize 5M<!--c2--></div><!--ec2--><!--content-->
<!--quoteo(post=153667:date=Oct 28 2005, 03:40 PM:name=TCH-David)--><div class='quotetop'>QUOTE(TCH-David @ Oct 28 2005, 03:40 PM) <a href="http://www.totalchoicehosting.com/forums/index.php?act=findpost&pid=153667"><img src='http://www.totalchoicehosting.com/forums/style_images/1/post_snapback.gif' alt='*' border='0' /></a></div><div class='quotemain'><!--quotec-->'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:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->php_value upload_max_filesize 5M<!--c2--></div><!--ec2--><!--QuoteEnd--></div><!--QuoteEEnd--><br /><br />and what about the 60 sec timeout setting? anything I can edit for that... the 60 sec is actually more of an issue...<!--content-->
'max_input_time' is also a PHP configuration setting that can be set in your .htaccess file:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->php_value max_input_time 300<!--c2--></div><!--ec2--><br />This would set the file upload timout to 5 minutes (300 seconds).<!--content-->
<!--quoteo(post=153731:date=Oct 29 2005, 01:42 PM:name=CharlieT)--><div class='quotetop'>QUOTE(CharlieT @ Oct 29 2005, 01:42 PM) <a href="http://www.totalchoicehosting.com/forums/index.php?act=findpost&pid=153731"><img src='http://www.totalchoicehosting.com/forums/style_images/1/post_snapback.gif' alt='*' border='0' /></a></div><div class='quotemain'><!--quotec-->and what about the 60 sec timeout setting? anything I can edit for that... the 60 sec is actually more of an issue...<!--QuoteEnd--></div><!--QuoteEEnd--><br /><br />thnx very much... that did it <img src="http://www.totalchoicehosting.com/forums/style_emoticons/default/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /><!--content-->
 
Back
Top