Re: [PHP] Max file size for uploads?
Is there a true max size or do I just have something messed up somewhere that I need to tweak?? I've got a client who needs their customers to upload large files for printing this way - and it stops at 30MB. There is some setting in Windows XP that we have not been able to change. It's been a lot of fun digging through Microsoft support docs but have had no luck. The IIS setting seems to override whatever you tell PHP to do. - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Max file size for uploads?
Robert Sossomon wrote: I have an upload script that I am trying to allow for 725MB, I have written the script to handle files of that size, and I modified the upload_max_filesize = 730M I tried uploading a 15MB file and it blew up (current error message is not in my brain). Is there a true max size or do I just have something messed up somewhere that I need to tweak?? There are quite a few some have already been mentioned, in other posts but I invite you to look at http://www.radinks.com/upload/config.php that will give you a good idea about all the settings involved. Having said that you probably ought to switch to FTP or SFTP if you want to transfer so much data. Web servers are always optimized to deliver thousands of files at once instead of accepting large incoming files. Thanks, Robert -- Raditha Dissanayake. - http://www.radinks.com/print/upload.php SFTP, FTP and HTTP File Upload solutions -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Max file size for uploads?
On Wed, May 12, 2004 at 10:07:09AM -0400, Robert Sossomon wrote: > I get this error message now in my httpd error log: > > [Wed May 12 10:07:01 2004] [error] [client 66.43.177.38] Requested > content-length of 69888498 is larger than the configured limit of > 524288, referer: http://dinghy.homeip.net/upload.php > > Any thoughts? If you are using apache, this might help: http://httpd.apache.org/docs/mod/core.html#limitrequestbody -Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
RE: [PHP] Max file size for uploads?
I get this error message now in my httpd error log: [Wed May 12 10:07:01 2004] [error] [client 66.43.177.38] Requested content-length of 69888498 is larger than the configured limit of 524288, referer: http://dinghy.homeip.net/upload.php Any thoughts? TIA! Robert -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 9:43 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Max file size for uploads? Hello Robert, Wednesday, May 12, 2004, 2:37:23 PM, you wrote: RS> I have an upload script that I am trying to allow for 725MB, I have RS> written the script to handle files of that size, and I modified the RS> upload_max_filesize = 730M RS> I tried uploading a 15MB file and it blew up (current error message RS> is not in my brain). RS> Is there a true max size or do I just have something messed up RS> somewhere that I need to tweak?? POST file size is the other one. and that's HELL of a file size.. what is it, an ISO dump site? ;) -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Max file size for uploads?
Hello Robert, Wednesday, May 12, 2004, 2:37:23 PM, you wrote: RS> I have an upload script that I am trying to allow for 725MB, I have RS> written the script to handle files of that size, and I modified the RS> upload_max_filesize = 730M RS> I tried uploading a 15MB file and it blew up (current error message is RS> not in my brain). RS> Is there a true max size or do I just have something messed up somewhere RS> that I need to tweak?? POST file size is the other one. and that's HELL of a file size.. what is it, an ISO dump site? ;) -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Max file size for uploads?
I have an upload script that I am trying to allow for 725MB, I have written the script to handle files of that size, and I modified the upload_max_filesize = 730M I tried uploading a 15MB file and it blew up (current error message is not in my brain). Is there a true max size or do I just have something messed up somewhere that I need to tweak?? Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php