View Single Post
  #2  
Old 02-09-2005, 11:03 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,922

I got the error "Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in c:\server\www\test.php on line 22"

Anyways, it's to do with your chmod command. You have a " after 0777, there should be no ".
[code:1:00b3e55bd2]
@chmod("/home/site/www/".$name, 0777);
[/code:1:00b3e55bd2]
And I would actually recoment for use on a wider range of systems,
[code:1:00b3e55bd2]
@chmod("/home/site/www/".$name, octdec("0777"));
[/code:1:00b3e55bd2]
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote