[PHP] upload on Win9x

2001-06-19 Thread Christian Dechery

I can't get file uploads to work on my Windows 98Me running Apache+PHP4.05...

I did everything correctly according to the script I found on phpbuilder...

it simply won't go... the error message is something like can't open 
c:\file.ext for reading... it's like it thinks it's a local file... this 
is the code...
pre
$upload_dir=c:\\apache\\htdocs\\mydir\\;
$upload_tmp_path=ini_get(upload_tmp_dir); // this returns the correct 
path BTW

$file=stripslashes($file);
$newfile=$upload_dir.file.tmp; // just for debugging, but it still 
doesn't work...

chdir($upload_tmp_path);
if(!copy($file,$newfile))
echo pfont face=tahoma size=2bError uploading 
$newfile./b/font/p;
else
process_file($newfile);
/pre

. Christian Dechery (lemming)
. http://www.tanamesa.com.br
. Gaita-L Owner / Web Developer




Re: [PHP] upload on Win9x

2001-06-19 Thread Andrew Halliday

Have you set the content type of the form to be multipart MIME ?  That
screws me every time...

AndrewH

- Original Message -
From: Christian Dechery [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, June 19, 2001 11:16 AM
Subject: [PHP] upload on Win9x


 I can't get file uploads to work on my Windows 98Me running
Apache+PHP4.05...

 I did everything correctly according to the script I found on
phpbuilder...

 it simply won't go... the error message is something like can't open
 c:\file.ext for reading... it's like it thinks it's a local file... this
 is the code...
 pre
 $upload_dir=c:\\apache\\htdocs\\mydir\\;
 $upload_tmp_path=ini_get(upload_tmp_dir); // this returns the correct
 path BTW

 $file=stripslashes($file);
 $newfile=$upload_dir.file.tmp; // just for debugging, but it still
 doesn't work...

 chdir($upload_tmp_path);
 if(!copy($file,$newfile))
 echo pfont face=tahoma size=2bError uploading
 $newfile./b/font/p;
 else
 process_file($newfile);
 /pre
 
 . Christian Dechery (lemming)
 . http://www.tanamesa.com.br
 . Gaita-L Owner / Web Developer





Re: [PHP] upload on Win9x

2001-06-19 Thread Christian Dechery

yes... it goes like form enctype=multipart/form-data method=post.

this is correct right?

At 17:17 19/6/2001 +0930, Andrew Halliday wrote:
Have you set the content type of the form to be multipart MIME ?  That
screws me every time...

AndrewH

- Original Message -
From: Christian Dechery [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, June 19, 2001 11:16 AM
Subject: [PHP] upload on Win9x


  I can't get file uploads to work on my Windows 98Me running
Apache+PHP4.05...
 
  I did everything correctly according to the script I found on
phpbuilder...
 
  it simply won't go... the error message is something like can't open
  c:\file.ext for reading... it's like it thinks it's a local file... this
  is the code...
  pre
  $upload_dir=c:\\apache\\htdocs\\mydir\\;
  $upload_tmp_path=ini_get(upload_tmp_dir); // this returns the correct
  path BTW
 
  $file=stripslashes($file);
  $newfile=$upload_dir.file.tmp; // just for debugging, but it still
  doesn't work...
 
  chdir($upload_tmp_path);
  if(!copy($file,$newfile))
  echo pfont face=tahoma size=2bError uploading
  $newfile./b/font/p;
  else
  process_file($newfile);
  /pre
  
  . Christian Dechery (lemming)
  . http://www.tanamesa.com.br
  . Gaita-L Owner / Web Developer
 


. Christian Dechery (lemming)
. http://www.tanamesa.com.br
. Gaita-L Owner / Web Developer