Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001062

Re: [PHP] upload on Win9x From: Andrew Halliday (andrew <email protected>)
Date: 06/19/01

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

AndrewH

----- Original Message -----
From: "Christian Dechery" <lemming <email protected>>
To: <php-general <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 "<p><font face=tahoma size=2><b>Error uploading
> $newfile.</b></font></p>";
> else
> process_file($newfile);
> </pre>
> ____________________________
> . Christian Dechery (lemming)
> . http://www.tanamesa.com.br
> . Gaita-L Owner / Web Developer
>