Re: [PHP-DB] Uploading files

2004-02-28 Thread Pavel Lobovich
Try to change the following limits in your php.ini file: max_input_time = 120 ; Maximum amount of time each script may spend parsing request data memory_limit = 10M ; Maximum amount of memory a script may consume (8MB) ; Maximum size of POST data that PHP will accept. post_max_size = 10M

Re: [PHP-DB] Uploading files

2004-02-27 Thread nikos
OTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 11:22 PM Subject: Re: [PHP-DB] Uploading files > Hello, > > > Are you uploading files into MYSQL or any other DB?? > > > Or are you uploading the files to a directory and inserting the > location of

Re: [PHP-DB] Uploading files

2004-02-27 Thread Daniel Brunner
age - From: "Pavel Lobovich" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "PHP-mailist" <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 6:50 PM Subject: Re: [PHP-DB] Uploading files If your on a slow connection, it might be timing out. Try putting: s

Re: [PHP-DB] Uploading files

2004-02-27 Thread nikos
AIL PROTECTED]> Sent: Friday, February 27, 2004 5:38 PM Subject: Re: [PHP-DB] Uploading files > If your on a slow connection, it might be timing out. > > Try putting: > > set_time_limit(0); > > At the top of the page where the file is being uploaded to (not from), >

Re: [PHP-DB] Uploading files

2004-02-27 Thread nikos
Pavel my form works fine with files < 1M - Original Message - From: "Pavel Lobovich" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "PHP-mailist" <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 6:50 PM Subject: Re: [PHP-DB] Uploading files &

Re: [PHP-DB] Uploading files

2004-02-27 Thread Pavel Lobovich
ginal Message - > > From: "Adam Voigt" <[EMAIL PROTECTED]> > > To: "nikos" <[EMAIL PROTECTED]> > > Cc: "PHP-mailist" <[EMAIL PROTECTED]> > > Sent: Friday, February 27, 2004 5:13 PM > > Subject: Re:

Re: [PHP-DB] Uploading files

2004-02-27 Thread Adam Voigt
From: "Adam Voigt" <[EMAIL PROTECTED]> > To: "nikos" <[EMAIL PROTECTED]> > Cc: "PHP-mailist" <[EMAIL PROTECTED]> > Sent: Friday, February 27, 2004 5:13 PM > Subject: Re: [PHP-DB] Uploading files > > > > Your max pos

Re: [PHP-DB] Uploading files

2004-02-27 Thread nikos
It is allready 8M - Original Message - From: "Adam Voigt" <[EMAIL PROTECTED]> To: "nikos" <[EMAIL PROTECTED]> Cc: "PHP-mailist" <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 5:13 PM Subject: Re: [PHP-DB] Uploading files > Your m

Re: [PHP-DB] Uploading files

2004-02-27 Thread Adam Voigt
Your max post size needs to be upped to, try making it 6M and see if that makes a difference. On Fri, 2004-02-27 at 10:05, nikos wrote: > Hello list > > Allthough I set my PHP.in upload_max_file=4M my system refused to upload > files bigger than 1M and the browser send an "server not found" erro

Re: [PHP-DB] Uploading files

2003-12-02 Thread jeffrey_n_Dyke
the web process does not have access to write the directory that oyu're moving the file to. in this case ./images/exec/. most likely you'll need to either chmod o+w ./images/exec (give the world the write right) or change the owner of that directoyr to be the web process. both come with their o

Re: [PHP-DB] Uploading files

2003-12-02 Thread Matt Matijevich
Warning: move_uploaded_file(./images/exec/Editor.jpg): failed to open stream: Permission denied in /home/hudson/misc/dtr8hcj/public_html/changeexec.php on line 24 php needs permission to write to that directory. Check the permissons on ./images/exec/. -- PHP Database Mailing List (http://www.

Re: [PHP-DB] Uploading Files

2001-05-24 Thread Terry Romine
I've had problems enough with uploading files that I find the following checkpoints VERY important: 1) directory privileges (you indicate you have those set 777 2) the tag needs: a) enctype = "multipart/form-data" b) method = "post" HTH Terry On Thursday, May 24, 2001, at 12:1

Re: [PHP-DB] uploading files.

2001-04-01 Thread Boclair
"olinux" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... | here is the working script on my local windows machine. note that you will | need to change $the_path | Everything is pretty self explanatory. You can read the article that I took | this from at http://ph

RE: [PHP-DB] uploading files.

2001-03-25 Thread olinux
here is the working script on my local windows machine. note that you will need to change $the_path Everything is pretty self explanatory. You can read the article that I took this from at http://phpbuilder.com/columns/bealers2904.php3 olinux =

Re: [PHP-DB] uploading files.

2001-03-25 Thread Mohammed Mahmoud Abdel'al
Yes Please - Original Message - From: "boclair" <[EMAIL PROTECTED]> To: "olinux" <[EMAIL PROTECTED]>; "PHP-DB" <[EMAIL PROTECTED]> Sent: Sunday, March 25, 2001 2:55 AM Subject: Re: [PHP-DB] uploading files. > Yes please > > Ti

Re: [PHP-DB] uploading files.

2001-03-24 Thread boclair
Yes please Tim Morris - Original Message - From: olinux <[EMAIL PROTECTED]> To: PHP-DB <[EMAIL PROTECTED]> Sent: Sunday, March 25, 2001 11:21 AM Subject: Re: [PHP-DB] uploading files. > mmmK, > > i have figured it out, > anyone want it? > lemme know >

Re: [PHP-DB] uploading files.

2001-03-24 Thread olinux
mmmK, i have figured it out, anyone want it? lemme know olinux - Original Message - From: "olinux" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "PHP-DB" <[EMAIL PROTECTED]> Sent: Saturday, March 24, 2001 4:27 PM Subject: [PHP-DB] uploading files. K, I am using a script i found at