HostGator Web Hosting Help
CGI Basics
Summary
CGI (Common Gateway Interface) is a standard method of extending web server functionality by executing programs or scripts on a Web server.
- What Is CGI?
- How is CGI going to help me?
- How am I supposed to install a script?
- What does "chmod" mean??
- What is the path to PERL (interpretator)?
What Is CGI?
CGI (COMMON GATEWAY INTERFACE) is a standard method of extending Web server functionality by executing programs or scripts on a Web server in response to Web browser requests. A common use of CGI is in form processing, where the Web browser sends form data to a CGI script on the server, the script integrates the data with a database, and sends back the results as a Web page. Use of CGI can make a Web page much more dynamic and add interactivity for the user.
How is CGI going to help me?
CGI is used to provide interactivity and turn static pages into dynamic ones. What do I mean? Let's take a guestbook for example. Most of them are powered by CGI. They allow your visitors to leave their comments on your site. This makes it interactive. But guestbook is only one example. You also have bulletin boards, form processing, counters, and much more.
How am I supposed to install a script?
Usually most of the scripts that I have tried before have complete instructions and a special ReadMe file with everything you need to know about installing that script. I recommend you reading the instructions a few times before starting to install the script. This will help you to make less mistakes.
What does "chmod" mean?
To chmod a file means to set a certain permission. Few of the most common chmod commands are 755 and 777. To see more about modifying file permissions please see our articles on changing file permissions and setting file and user permissions
What are the most common errors and how do I deal with them?
One of the most common errors is "500 Internal Error". The chances are that you will experience it many times. The worst thing about it, is that it doesn't actually tells you what's wrong with the script. It only tells you that something is not right. There are several possibilities that cause of this error. Here they are:
- Incorrect path to PERL. See the next question for more information.
- Syntax error. Check and see if you didn't accidentally delete a command or a word that the instructions didn't tell you to.
- Incorrect CHMOD command. Make sure that you chmod the file exactly as the instructions say.
What is the path to PERL (interpretator)?
The perl path is the very first line in every .cgi or .pl file. Usually it looks something like this #!/usr/bin/perl. Make sure that the path is correct, otherwise you'll get an error. If you don't have the telnet access, simply email your tech support and ask them.