Understanding Permissions

File permissions define who can read, write, and execute files, such as scripts. When installation instructions ask you to CHMOD a file, they are instructing you to set specific file permissions. You can modify file permissions using most FTP clients or through the control panel's built-in file manager.

Common File Permission Levels

  • 600: Makes a file inaccessible (only the file owner can read and write).
  • 644: Readable by everyone (e.g., HTML documents).
  • 666: The file can be read and modified by everyone.
  • 755: The file can be read and executed by everyone.
  • 777: Writable and executable by everyone (use with caution).

Important Notes:

  • Most CGI scripts need to be set to 755.
  • Always refer to the script's documentation for proper installation instructions and file permissions.
Was this answer helpful? 0 Users Found This Useful (0 Votes)