Re: [PHP] Upload problems

2004-10-06 Thread Robert Sossomon
With apache, check out the php.conf file located at: /etc/httpd/conf.d and modify it to be: Files *.php SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 838860800 /Files That'll allow a full CD worth of information to be uploaded... :) Robert raditha dissanayake wrote: Dennis

[PHP] Upload problems

2004-10-05 Thread Pablo Gosse
Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue. I can't seem to upload any files bigger than 511k. 511k will upload fine, but 512k returns a Document contains no data error. I've tried this with a text file, adding and removing lines until it

RE: [PHP] Upload problems

2004-10-05 Thread Jay Blanchard
[snip] Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue. I can't seem to upload any files bigger than 511k. 511k will upload fine, but 512k returns a Document contains no data error. I've tried this with a text file, adding and removing lines

Re: [PHP] Upload problems

2004-10-05 Thread PHP Junkie
Ave, What's the upload_max_filesize set to in your php.ini ? Under File Uploads in the php.ini, you will find this value. Junkie On 10/5/04 4:33 PM, Pablo Gosse [EMAIL PROTECTED] wrote: Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue.

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
[snip] What's the upload_max_filesize set to in your php.ini ? Under File Uploads in the php.ini, you will find this value. [/snip] That's not it. That's set to 30M. This domain was just transferred over to a new server, and this problem did not exist on the old one, so while I am pretty

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
[snip] Look in your php.ini for max_upload_size or something like it. [/snip] 'Twas an apache problem. Thanks the help. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Upload problems

2004-10-05 Thread Dennis Gearon
Would you mind sharing what it was so that it hits the archives and a few 'enquiring minds'? Pablo Gosse [EMAIL PROTECTED] wrote: quote --- [snip] Look in your php.ini for max_upload_size or something like it. [/snip] 'Twas an apache problem.

Re: [PHP] Upload problems

2004-10-05 Thread raditha dissanayake
Dennis Gearon wrote: Would you mind sharing what it was so that it hits the archives and a few 'enquiring minds'? it probably was the LimitRequestBody apache directive which is set to 512 Kb in some 'out of the box' installations. -- Raditha Dissanayake.

[PHP] Upload problems

2004-08-15 Thread Rosen
Hi, I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Can someone help with this ? Thanks in advance! -- PHP General Mailing

Re: [PHP] Upload problems

2004-08-15 Thread raditha dissanayake
Rosen wrote: Hi, I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Can someone help with this ? upload_max_filesize setting

Re: [PHP] Upload problems

2004-08-15 Thread Jason Wong
On Sunday 15 August 2004 23:14, Rosen wrote: I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Have you read the chapter

[PHP] upload problems

2003-09-08 Thread Doug Parker
I'm trying to do some uploading on my server, and I'm not getting any value for my tmp upload setting - meaning this code: $source = $_FILES['cat1_thumb']['tmp_name']; echo $source; returns nothing. The form is fine - meaning that the text input name is correct and I am indeed selecting a

Re: [PHP] upload problems

2003-09-08 Thread Marek Kilimajer
Does the form contain form enctype=multipart/form-data ...? Doug Parker wrote: I'm trying to do some uploading on my server, and I'm not getting any value for my tmp upload setting - meaning this code: $source = $_FILES['cat1_thumb']['tmp_name']; echo $source; returns nothing. The form is fine -

Re: [PHP] upload problems

2003-09-08 Thread Dan Anderson
If you go to the PHP site they have a nice section on file uploads: http://us2.php.net/features.file-upload Double check that $_FILES['cat1_thumb']['error'] == 0 See: http://us2.php.net/manual/en/features.file-upload.errors.php -Dan -- PHP General Mailing List (http://www.php.net/) To

[PHP] upload problems - unable to open 'none'

2002-07-02 Thread Phil Schwarzmann
Now I'm getting this error each time I upload a file... Warning: Unable to open 'none' for reading: No such file or directory in /home/.../upload3.php on line 7 why is it saying 'none' ??

RE: [PHP] upload problems - unable to open 'none'

2002-07-02 Thread Lazor, Ed
Send us a copy of your script so that we can help. Odds are that you didn't specify the proper field name in your upload form. -Original Message- Now I'm getting this error each time I upload a file... Warning: Unable to open 'none' for reading: No such file or directory in

RE: [PHP] upload problems - unable to open 'none'

2002-07-02 Thread Lazor, Ed
=) -Ed -Original Message- From: Phil Schwarzmann [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 4:14 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] upload problems - unable to open 'none' Here is the code. $userfile is the name of the upload field. I doubled checked the HTML

Re: [PHP] upload problems - unable to open 'none'

2002-07-02 Thread Richard Lynch
Send us a copy of your script so that we can help. Odds are that you didn't specify the proper field name in your upload form. -Original Message- Now I'm getting this error each time I upload a file... Warning: Unable to open 'none' for reading: No such file or directory in

[PHP] upload problems

2001-11-23 Thread Nikola Veber
Hi ! You asked for the code ... Here you go : html body form action=?global $PHP_SELF; echo $PHP_SELF? method=POST ENCTYPE=multipart/form-data table tr tdSelect File:/td td:/td tdinput type=file name=userfile/td /tr tr tdnbsp;/td tdnbsp;/td