does anyone know what "chod 755" is? I'm using a php script to send contact information to my email. the script comments the following: This file is uploaded in ascii and used chod 755. This is important!!! What does that mean.
Printable View
does anyone know what "chod 755" is? I'm using a php script to send contact information to my email. the script comments the following: This file is uploaded in ascii and used chod 755. This is important!!! What does that mean.
This is an expression of the permissions associated with the file on your server. Check with your ftp programme you should be able to configure it there.
chod is a Unix system command to set permissions and 755 is a permisssion setting. I think what you are seeing is a old comment in a PHP file that probably need to be removed. (if it's the script I think it is) A contact form PHP file should not need any special permissions. This is usually need when writing to a file in the PHP
As I said CHOD is numeric indication of the permission matrix, and represents read,write and Execute for User, Groups and others.
To adjust the permission level of any uploaded file rightclick and adjust under properties in most ftp applications.