PHP Tutorial : Chmod file permissions

Did you encountered a script installation or something like that which bothers you with changing file permissions? You can do that via a FTP client or just with chmod (change file mode) function in php programming language like this:

<?php
chmod(“filename”, 0777);
//or

chmod(“filename”, 644);
?>

Read PHP Tutorial : Chmod file permissions »