What file permissions do I need for my CGI scripts?

CGI scripts must be set with executable file permissions, or requests for the script from the web server will result in an Internal Server Error.

Scripts that need to be executable should have their permission set with chmod 755. This sets the file's permissions so that the file's owner may read, write, and execute the file; and anyone else can only read and execute it

Esta resposta foi útil?

 Imprimir este Artigo

Leia também

Why am I getting the "Internal Server Error (500)" message?

Internal Server Error (500) errors are typically something wrong in the syntax of your script....

CGI-BIN and Perl scripts not working on my domain ?

There are lot of reasons for not working of cgi and perl scripts. You can do small test on your...

Do my CGI scripts need to be in my "cgi-bin" folder?

All .cgi and .pl can only be executed in cgi-bin at this time.

Can you explain unix/linux file permissions?

Owner = the files users (you) Group = the files group Others = others Permissions Definitions: r...

I uploaded my CGI script . How to execute that script ?

Before executing scripts you need to follow below steps to avoid any errors. 1) You need to...