PHP Tutorial : Chmod file permissions
Jan 25, 2009 Basic PHP
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 »
Tags: change file permissions, chmod, file permissions, php change file permissions, php chmod, php file permissions

