I've been playing around with making my mac a webserver, and now I'm trying to make a simple html form, and a perl script that prints out the input. I have /Library/WebServer/Documents symlinked to ~/Sites/, so I have my index.html and display.cgi both there. But when I press submit, the perl file just shows up as text. Any cgi file I have doesn't execute, it just shows up as text. What am I doing wrong? Thanks.
|
|
|
|
|
|
|
Unless your server is specifically set up to run perl scripts in the Once you've done that, make sure that you've set the permissions on the Perl script so that it's executable. To do this, go to the containing directory in Terminal, and type Also, check that the first line of the script (the shebang line) has the correct path to perl. On my Mac, Perl is located at |
||||||||||
|
|
|
Don't forget to add the # sign in front of the "shebang line" such as the examples below:
Note: the -w will show warnings. |
||||||
|
|
|
To answer your other question: To use CGI scripts from outside the Alternatively, you could create an |
||
|
|
