Re: [PHP] can't upload files

2004-09-29 Thread Jason Wong
Please do not top post. On Wednesday 29 September 2004 21:39, blackwater dev wrote: > What should I look for? I know globals are off...file_upload is on. read manual > Handling file uploads Find out whether your version of php supports $_FILES, if so use it. If not use $HTTP_POST_FILES. Do:

Re: [PHP] can't upload files

2004-09-29 Thread blackwater dev
What should I look for? I know globals are off...file_upload is on. On Wed, 29 Sep 2004 10:08:31 +0600, raditha dissanayake <[EMAIL PROTECTED]> wrote: > blackwater dev wrote: > > >Doesn't print out anything. > > > > > > > > > then try phpinfo() it will tell you everything about your server, y

Re: [PHP] can't upload files

2004-09-28 Thread raditha dissanayake
blackwater dev wrote: Doesn't print out anything. then try phpinfo() it will tell you everything about your server, your script and data that is being passed to it. Look for anything amiss. print_r() those two variables (and any others you can think of). -- Raditha Dissanayake.

Re: [PHP] can't upload files

2004-09-28 Thread blackwater dev
Doesn't print out anything. On Wed, 29 Sep 2004 05:32:32 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Wednesday 29 September 2004 01:44, blackwater dev wrote: > > > Then, here is part of the code doing the upload: > > To be precise this is the part of the code which handles the upload. The

Re: [PHP] can't upload files

2004-09-28 Thread Jason Wong
On Wednesday 29 September 2004 01:44, blackwater dev wrote: > Then, here is part of the code doing the upload: To be precise this is the part of the code which handles the upload. The files have already been uploaded and stored by your webserver long before your script starts executing. > It p

[PHP] can't upload files

2004-09-28 Thread blackwater dev
--sorry if you get this twice...it didn't seem to go through the first time-- I just switched hosts and I am now working on all the stuff that once worked but now doesn't. I have an image upload script with the following code: ?method=upload&id='>

Re: [PHP] Can't upload files > then 400K to MySQL

2003-12-28 Thread Raditha Dissanayake
hi try this article: http://www.radinks.com/upload/config.php It's a quick guide on configuring php for large file uploads. all the best ahmetax wrote: Hi, I have the following PHP code to upload files to a MySQL table. It works fine, but, I can't upload any files greater then 400K. What mi

[PHP] Can't upload files > then 400K to MySQL

2003-12-28 Thread ahmetax
Hi, I have the following PHP code to upload files to a MySQL table. It works fine, but, I can't upload any files greater then 400K. What might be the problem? TIA ahmet AxTelSoft-Uploading a file " method="post"> Send this file: Explanations : -- PHP General Mailing L

Re: [PHP] can't upload files

2002-05-15 Thread heinisch
At 15.05.2002 12:33, you wrote: >I am using this script: to upload a picture file and I get the error below: >"Unable to create 'hgh6.gif': Permission denied in >/home/vhtdocs/archipro/do_upload.php on line 13 >Couldn't copy the file!" - What am I doing wrong > > > >File to Upload: > > > > > >u

Re: [PHP] can't upload files

2002-05-15 Thread Jason Wong
On Wednesday 15 May 2002 18:33, Diana Castillo wrote: > I am using this script: to upload a picture file and I get the error below: > "Unable to create 'hgh6.gif': Permission denied in > /home/vhtdocs/archipro/do_upload.php on line 13 > Couldn't copy the file!" - What am I doing wrong > > > File

[PHP] can't upload files

2002-05-15 Thread Diana Castillo
I am using this script: to upload a picture file and I get the error below: "Unable to create 'hgh6.gif': Permission denied in /home/vhtdocs/archipro/do_upload.php on line 13 Couldn't copy the file!" - What am I doing wrong File to Upload: upload file: Warning: Unable to create 'hgh6.g

[PHP] can't upload files with more than one dot in the file name.

2001-01-26 Thread david klein
Hello! I am trying to upload the files to the sever. For files that has only one dot such as abc.txt and 123.doc, it works fine. But when uploading files that have more than one dot such as 123.txt.pdf, there's problem, and I tried to echo the $userfile[i], and it is "none". Codes are attached as

Re: [PHP] can't upload files if extension has more than one dot.

2001-01-26 Thread Richard Lynch
> I am trying to upload the files to the sever. For files that has only one > dot such as abc.txt and 123.doc, it works fine. But when uploading files > that have more than one dot such as 123.txt.pdf, there's problem, and I > tried to echo the $userfile[i], and it is "none". Codes are attached as

[PHP] can't upload files if extension has more than one dot.

2001-01-25 Thread david klein
Hello! I am trying to upload the files to the sever. For files that has only one dot such as abc.txt and 123.doc, it works fine. But when uploading files that have more than one dot such as 123.txt.pdf, there's problem, and I tried to echo the $userfile[i], and it is "none". Codes are attached