Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use MS Expressions for creating and publishing sites. I also have a quick page editor built in to my CMS. If I edit the page with my CMS I can no longer edit it with Expressions. I get a file permission error.

Before I save the new info I delete the old page and create a new one. I then give it 0777 permission. Any suggestions?

The page saves fine and shows the correct permission in my Cpanel

$ourFileName =(DOCROOT."/template/$myTemplate/$myFile"); 
$page_content = stripslashes("$page_content");

unlink("$ourFileName");

$ourFileHandle = fopen($ourFileName, 'a+') or die("can't open file");
fwrite($ourFileHandle,"$page_content");
fclose($ourFileHandle);

chmod("$ourFileName", 0755);

}

share|improve this question

1 Answer

You have to be sure that you have correct permissions on directories, too. (757)

share|improve this answer
Dir permission is 0777 – MHowey Sep 5 '11 at 17:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.