View Single Post
  #2  
Old 08-29-2006, 02:08 PM
enron enron is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
enron is on a distinguished road
Default

You have write access, but does the webserver have write access? The webserver runs as a separate user for security reasons.

Another problem may be with your paths


PHP Code:
$source = "c:\windows";


will not work, \ is the escape character. you need to do

PHP Code:
$source = "c:\\windows"; -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - Move Uploaded File on Windows
View Single Post
  #2  
Old 08-29-2006, 02:08 PM
enron enron is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
enron is on a distinguished road
Default

You have write access, but does the webserver have write access? The webserver runs as a separate user for security reasons.

Another problem may be with your paths


PHP Code:
$source = "c:\windows";


will not work, \ is the escape character. you need to do

PHP Code:
$source = "c:\\windows"; -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote