are you running php in safemode?
according to
http://php.net/manual/en/function.unlink.php
unlink() may not work with windows servers, I have no personal experience
with windows so I can not confirm this.
have you tried
http://php.net/manual/en/function.move-uploaded-file.php
this might be better suited.
Chris Lee
Mediawaveonline.com
"Mike Yuen" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I am trying to allow various users to upload their own picture. What I
> would like to happen is to have the copy statement rename the .jpg
> image to the username. For example, if the username is mike, then I want
> the picture to be renamed mike.jpg
>
> The following is a snippet of code:
>
> <?PHP
> print "$CUserName" //ensures name is carried over from session
>
> if(copy($userfile,"c:/phpweb/userpics/$CUserName.jpg"))
> {
> print "Your picture has been uploaded!";
> }
> else
> {
> print "Error";
> }
>
> unlink($userfile)
> ?>
>
> The errors I get are as follows:
> Warning: unable to open " for reading: Permission denied in
> c:\phpweb/fuploadconfirm.php on line 15
> Warning: Unlink failed (No such file or directory) in
> c:\phpweb/fuploadconfirm.php on line 31
>
> Line 15 is the if copy($userfile........) line in the above code
>
> AND
>
> Line 31 is the unlink statement at the end.
>
> Thanks,
> Mike
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]