Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread Marek Kilimajer
post_max_size should be greater than upload_max_filesize. What is the setting for max_input_time? Chris wrote: post_max_size: 8M upload_max_filesize: 10M what quota and disk space affect the web server process and temp dir This site is hosted by a third party: Disk space is 400MB only a

Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread Chris
Since this install of PHP is a CGI module, the server limits any execution to 30 seconds. Why should upload_max_filesize be greater than post_max_size? Why would this have any effect on a file size of 11kb? Marek Kilimajer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] post_max_size

Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread Asegu
your file is sent through post. If your post upload max size is smaller then your upload max size, then the file wouldn't all fit within the post data that PHP will accept. Your upload would then get blocked. Therefore, post_max_size should be set to a larger value then upload_max_filesize to

Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread Raditha Dissanayake
Hi, Both Marek and Asegu have raised a very valid point about upload_max_filesize post_max_size hower Chris seems to have set this in megabytes but the limit kicks in to place at 11 KILO bytes. That's why i am convinced it's either an apache setting or a proxy getting in the way. Chris, in

Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread Chris
The application is going to being supplied to a number of customers who may not know how to or don't have the ability to create/modify a .htaccess file. I tend to agree with Raditha about this being an Apache issue. Upon complaint to the hosting provider about this issue the did something that

Re: [PHP] Can't upload file greater than 11kb

2003-12-29 Thread David T-G
Chris, et al -- ...and then Chris said... % % complaint to the hosting provider about this issue the did something that % increased the upload file size to several hundred kilobytes. They claimed it % has something to do with the temp dir where the file is being uploaded to. Hah! I called it

Re: [PHP] Can't upload file greater than 11kb

2003-12-28 Thread raditha dissanayake
at least in my case that the hidden field has to be there. Larry -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than 11kb I've got a situation where I want to upload a file to a server

Re: [PHP] Can't upload file greater than 11kb

2003-12-28 Thread Chris
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than 11kb I've got a situation where I want to upload a file to a server then enter the data in that file into mysql

RE: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Larry Brown
-Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than 11kb I've got a situation where I want to upload a file to a server then enter the data in that file into mysql. I have used

Re: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Chris
will be empty since it did not recieve the file. So I know at least in my case that the hidden field has to be there. Larry -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than

Re: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Raditha Dissanayake
that the hidden field has to be there. Larry -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than 11kb I've got a situation where I want to upload a file to a server then enter the data

Re: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread David T-G
Chris -- ...and then Chris said... % % script on many php servers. However I am on one now which is not allowing me % to upload a file greater than 12kb. What does phpinfo() say for post_max_size upload_max_filesize and what quota and disk space affect the web server process and temp dir?

Re: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Chris
post_max_size: 8M upload_max_filesize: 10M what quota and disk space affect the web server process and temp dir This site is hosted by a third party: Disk space is 400MB only a fraction is used. temp dir -- unknown Chris -- ...and then Chris said... % % script on many php servers. However I

Re: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Chris
since it did not recieve the file. So I know at least in my case that the hidden field has to be there. Larry -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 8:55 PM To: [EMAIL PROTECTED] Subject: [PHP] Can't upload file greater than

[PHP] Can't upload file greater than 11kb

2003-12-22 Thread Chris
I've got a situation where I want to upload a file to a server then enter the data in that file into mysql. I have used this well documented upload form form enctype=multipart/form-data action=_URL_ method=POST Send this file: input name=userfile type=file input type=submit value=Send File