Your Daily Source for Apache News and Information |
Breaking News | Preferences | Contribute | Triggers | Link Us | Search | About |
|
With this column Rich Bowen begins his weekly look at basic tasks that every Apache Webmaster must face. Rich is the author of Apache Server Unleashed. The CGI (Common Gateway Interface) is the simplest, and most common, way to put dynamic content on your web site. This week's column will be an introduction to setting up CGI on your Apache Web server and getting started writing CGI programs. Configuring Apache to Permit CGIIn order to get your CGI programs to work properly, you'll need to have Apache configured to permit CGI execution. There are several ways to do this. ScriptAliasThe The ScriptAlias /cgi-bin/ /usr/local/apache/cgi-bin/ The example shown is from your default For example, if the URL CGI Outside of ScriptAlias DirectoriesOccasionally you will want to have CGI programs outside of .htaccess FilesA AllowOverride Options In the Options +ExecCGI which tells Apache that execution of CGI programs is permitted in this directory. Explicitly using Options to Permit CGI ExecutionYou could explicitly use the <Directory /usr/local/apache/htdocs/somedir> Options +ExecCGI </Directory> You might do this if, for some reason, you really wanted to serve CGI out of a document directory. The Writing a CGI ProgramThere are two main differences between regular programming, and CGI programming. First, all output from your CGI program must be preceeded by a MIME-type header. This is HTTP header that tells the client what sort of content it is receiving. Most of the time, this will look like: Content-type: text/html Secondly, your output needs to be in HTML, or some other format that a browser will be able to display. Most of the time, this will be HTML, but occasionally you might write a CGI program that outputs a gif image, or other non-HTML content. Apart from those two things, writing a CGI program will look a lot like any other program that you might write. Your First CGI ProgramThe following is an example CGI program that prints one line to your browser. Type in the following, save it to a file called #!/usr/bin/perl print "Content-type: text/html\r\n\r\n"; print "Hello, World."; Even if you are not familiar with Perl, you should be able to see what is happening here. The first line tells Apache (or whatever shell you happen to be running under) that this program can be executed by feeding the file to the interpreter found at the location If you open your favorite browser and tell it to get the address http://your.server.com/cgi-bin/first.pl or wherever you put your file, you will see the one line But it's Still Not Working!If your program still is not working, here are some of the things that you need to look for in order to resolve your problem. File PermissionsRemember that the server does not run as you. That is, when the server starts up, it is running with the permissions of an unpriveleged user--usually chmod a+x first.pl Also, if your program reads from, or writes to, any other files, those files will need to have the correct permissions to permit this. Path InformationWhen you run a program from your command line, you have certain information that is passed to the shell without you thinking about it. For example, you have a path, which tells the shell where it can look for files that you reference. When a program runs through the web server as a CGI program, it does not have that path. Any programs that you invoke in your CGI program (like sendmail, for example) will need to be specified by a full path, so that the shell can find them when it attempts to execute your CGI program. Syntax ErrorsMost of the time when a CGI program fails, it's because of a problem with the program itself. This is particularly true once you get the hang of this CGI stuff, and no longer make the above two mistakes. Always attempt to run your program from the command line before you test if via a browser. This will elimate most of your problems, and will prevent having to look through cryptic error logs. For More InformationThere are a large number of CGI resources on the Web. You can discuss CGI problems with other users on the Usenet group comp.infosystems.www.authoring.cgi. And the -servers mailing list from the HTML Writers Guild is a great source of answers to your questions. You can find out more at http://www.hwg.org/lists/hwg-servers/. When you post a question about a CGI problem that you're having, whether to a mailing list, or to a newsgroup, make sure you provide enough information about what happened, what you expected to happen, and how what actually happened was different, what server you're running, what language your CGI program was in, and, if possible, the offending code. This will make finding your problem much simpler. Rich Bowen is the Director of Web Application Development at The Creative Group and the author of Apache Server Unleashed. |
|
|
About Triggers | Media Kit | Security | Triggers | Login |
All times are recorded in UTC. Linux is a trademark of Linus Torvalds. Powered by Linux 2.4, Apache 1.3, and PHP 4 Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy. |