My hosting provider says my python script must be made to be executable(chmod755). What does this mean & how do I do it?
Cheers!
|
|
|||
|
|
|
If you have ssh access to your web space, connect and issue
If you do not have ssh access but rather connect by FTP, check your FTP application to see whether it supports setting the permissions. As to the meaning of 755:
The digits are constructed by adding the permision values. 1 = executable, 2 = writable and 4 = readable. I.e. 755 means that you yourself can read, write and execute the file and everybody else can read and execute it. |
||
|
|
|
It means, that somebody (the user, a group or everybody) has the right so execute (or read or write) the script (or a file in general). The permissions are expressed in different ways:
You can take away permissions in the same way, just substitute the
Octal numbers express the same in a different way. 4 is reading, 2 writing, 1 execution. simple math:
packed all in one short and sweet command:
|
|||
|
|
|
|
In addition to the other fine answers here, you should be aware that most FTP clients have a |
||
|
|
|
|
Unix-like systems have "file modes" that say who can read/write/execute a file. The mode 755 means owner can read/write/execute, and everyone else can read/execute but not write. To make your Python script have this mode, you type
You also need a shebang like
on the very first line of the file to tell the operating system what kind of script it is. |
||
|
|
|
|
on the shell (such as bash), just type
to make it executable. You can use
to verify the execution permission is set (the "x" in "rwxr-xr-x") |
||
|
|