* Thus wrote Gordon Heydon:
> Hello,
> 
> Can anyone please help me with this. please respond to me directly as I
> am not on this list.
> 
> Thanks in advance.
> Gordon
> -----Forwarded Message-----
> From: Gordon Heydon <[EMAIL PROTECTED]>
> To: PECL Develpment <[EMAIL PROTECTED]>
> Subject: [PECL-DEV] problems with file upload
> Date: Thu, 22 Jul 2004 22:59:36 +1000
> 
> hello,
> 
> I am having problems with a site that I am setting up. basically the
> file uploads are not working at all. I know that it is not the script as
> they work elsewhere with no problems, 

The problem will either reside in php.ini or your webserver
configuration.

In php.ini options to observer:
  post_max_size - defines how much data can be posted via a form.
  file_uploads  - boolean to allow or disallow uploads
  upload_max_filesize - maximum size a individule file is allowed
  to be.

See also: 
  http://www.php.net/ini_get
  http://www.php.net/manual/en/features.file-upload.php

your web server can also limit how much data can be sent as well,
for example, apache has a directive such as:

  LimitRequestBody 524288

By default, this value is on for a lot of RH installations. which
will deny any posts bigger than that amount.

> 
> I have tried turning all logging, but nothing is there.

It is possible that logs wont get displayed, if you resolve the
above issues, your logging issues may not be necessary.

See also your webserver logs in case that is limiting your file
upload.

> 
> Any ideas, Thanks.
> 
> The system is apache2 and php 4.3

What exact version: 4.3.x?


Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to