home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F168992_cgi.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  25KB  |  494 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Apache Tutorial: Dynamic Content with CGI - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Apache Tutorial: Dynamic Content with CGI</h1></div>
  20. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#intro">Introduction</a></li>
  21. <li><img alt="" src="../images/down.gif" /> <a href="#configuring">Configuring Apache to permit CGI</a></li>
  22. <li><img alt="" src="../images/down.gif" /> <a href="#writing">Writing a CGI program</a></li>
  23. <li><img alt="" src="../images/down.gif" /> <a href="#troubleshoot">But it's still not working!</a></li>
  24. <li><img alt="" src="../images/down.gif" /> <a href="#behindscenes">What's going on behind the scenes?</a></li>
  25. <li><img alt="" src="../images/down.gif" /> <a href="#libraries">CGI modules/libraries</a></li>
  26. <li><img alt="" src="../images/down.gif" /> <a href="#moreinfo">For more information</a></li>
  27. </ul></div>
  28. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  29. <div class="section">
  30. <h2><a name="intro" id="intro">Introduction</a></h2>
  31.     
  32.  
  33.     <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code></li><li><code class="module"><a href="../mod/mod_cgi.html">mod_cgi</a></code></li></ul></td><td><ul><li><code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code></li><li><code class="directive"><a href="../mod/core.html#options">Options</a></code></li><li><code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code></li></ul></td></tr></table>
  34.  
  35.     <p>The CGI (Common Gateway Interface) defines a way for a web
  36.     server to interact with external content-generating programs,
  37.     which are often referred to as CGI programs or CGI scripts. It
  38.     is the simplest, and most common, way to put dynamic content on
  39.     your web site. This document will be an introduction to setting
  40.     up CGI on your Apache web server, and getting started writing
  41.     CGI programs.</p>
  42.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  43. <div class="section">
  44. <h2><a name="configuring" id="configuring">Configuring Apache to permit CGI</a></h2>
  45.     
  46.  
  47.     <p>In order to get your CGI programs to work properly, you'll
  48.     need to have Apache configured to permit CGI execution. There
  49.     are several ways to do this.</p>
  50.  
  51.     <h3><a name="scriptalias" id="scriptalias">ScriptAlias</a></h3>
  52.       
  53.  
  54.       <p>The 
  55.       <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>
  56.  
  57.       directive tells Apache that a particular directory is set
  58.       aside for CGI programs. Apache will assume that every file in
  59.       this directory is a CGI program, and will attempt to execute
  60.       it, when that particular resource is requested by a
  61.       client.</p>
  62.  
  63.       <p>The <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>
  64.       directive looks like:</p>
  65.  
  66.       <div class="example"><p><code>
  67.         ScriptAlias /cgi-bin/ /usr/local/apache/cgi-bin/
  68.       </code></p></div>
  69.  
  70.       <p>The example shown is from your default <code>httpd.conf</code>
  71.       configuration file, if you installed Apache in the default
  72.       location. The <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>
  73.       directive is much like the <code class="directive"><a href="../mod/mod_alias.html#alias">Alias</a></code> directive, which defines a URL prefix that
  74.       is to mapped to a particular directory. <code class="directive">Alias</code>
  75.       and <code class="directive">ScriptAlias</code> are usually used for
  76.       directories that are outside of the <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code> directory. The difference between
  77.       <code class="directive">Alias</code> and <code class="directive">ScriptAlias</code>
  78.       is that <code class="directive">ScriptAlias</code> has the added meaning
  79.       that everything under that URL prefix will be considered a CGI
  80.       program. So, the example above tells Apache that any request for a
  81.       resource beginning with <code>/cgi-bin/</code> should be served from
  82.       the directory  <code>/usr/local/apache/cgi-bin/</code>, and should be
  83.       treated as a CGI program.</p>
  84.  
  85.       <p>For example, if the URL
  86.       <code>http://www.example.com/cgi-bin/test.pl</code>
  87.       is requested, Apache will attempt to execute the file 
  88.       <code>/usr/local/apache/cgi-bin/test.pl</code>
  89.       and return the output. Of course, the file will have to
  90.       exist, and be executable, and return output in a particular
  91.       way, or Apache will return an error message.</p>
  92.     
  93.  
  94.     <h3><a name="nonscriptalias" id="nonscriptalias">CGI outside of ScriptAlias directories</a></h3>
  95.       
  96.  
  97.       <p>CGI programs are often restricted to <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>'ed directories for security reasons.
  98.       In this way, administrators can tightly control who is allowed to
  99.       use CGI programs. However, if the proper security precautions are
  100.       taken, there is no reason why CGI programs cannot be run from
  101.       arbitrary directories. For example, you may wish to let users
  102.       have web content in their home directories with the 
  103.       <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.
  104.       If they want to have their own CGI programs, but don't have access to
  105.       the main <code>cgi-bin</code> directory, they will need to be able to
  106.       run CGI programs elsewhere.</p>
  107.     
  108.  
  109.     <h3><a name="options" id="options">Explicitly using Options to permit CGI execution</a></h3>
  110.       
  111.  
  112.       <p>You could explicitly use the <code class="directive"><a href="../mod/core.html#options">Options</a></code> directive, inside your main server configuration
  113.       file, to specify that CGI execution was permitted in a particular
  114.       directory:</p>
  115.  
  116.       <div class="example"><p><code>
  117.         <Directory /usr/local/apache/htdocs/somedir><br />
  118.         <span class="indent">
  119.           Options +ExecCGI<br />
  120.         </span>
  121.         </Directory>
  122.       </code></p></div>
  123.  
  124.       <p>The above directive tells Apache to permit the execution
  125.       of CGI files. You will also need to tell the server what
  126.       files are CGI files. The following <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code> directive tells the server to treat all
  127.       files with the <code>cgi</code> or <code>pl</code> extension as CGI
  128.       programs:</p>
  129.  
  130.       <div class="example"><p><code>
  131.         AddHandler cgi-script cgi pl
  132.       </code></p></div>
  133.     
  134.  
  135.     <h3><a name="htaccess" id="htaccess">.htaccess files</a></h3>
  136.       
  137.  
  138.       <p>A <a href="htaccess.html"><code>.htaccess</code> file</a> is a way
  139.       to set configuration directives on a per-directory basis. When Apache
  140.       serves a resource, it looks in the directory from which it is serving
  141.       a file for a file called <code>.htaccess</code>, and, if it 
  142.       finds it, it will apply directives found therein.  
  143.       
  144.       <code>.htaccess</code> files can be permitted with the 
  145.       <code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code> directive,
  146.       which specifies what types of directives can
  147.       appear in these files, or if they are not allowed at all. To
  148.       permit the directive we will need for this purpose, the
  149.       following configuration will be needed in your main server
  150.       configuration:</p>
  151.  
  152.       <div class="example"><p><code>
  153.         AllowOverride Options
  154.       </code></p></div>
  155.  
  156.       <p>In the <code>.htaccess</code> file, you'll need the 
  157.       following directive:</p>
  158.  
  159.       <div class="example"><p><code>
  160.         Options +ExecCGI
  161.       </code></p></div>
  162.  
  163.       <p>which tells Apache that execution of CGI programs is
  164.       permitted in this directory.</p>
  165.     
  166.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  167. <div class="section">
  168. <h2><a name="writing" id="writing">Writing a CGI program</a></h2>
  169.     
  170.  
  171.     <p>There are two main differences between ``regular''
  172.     programming, and CGI programming.</p>
  173.  
  174.     <p>First, all output from your CGI program must be preceded by
  175.     a MIME-type header. This is HTTP header that tells the client
  176.     what sort of content it is receiving. Most of the time, this
  177.     will look like:</p>
  178.  
  179.     <div class="example"><p><code>
  180.       Content-type: text/html
  181.     </code></p></div>
  182.  
  183.     <p>Secondly, your output needs to be in HTML, or some other
  184.     format that a browser will be able to display. Most of the
  185.     time, this will be HTML, but occasionally you might write a CGI
  186.     program that outputs a gif image, or other non-HTML
  187.     content.</p>
  188.  
  189.     <p>Apart from those two things, writing a CGI program will look
  190.     a lot like any other program that you might write.</p>
  191.  
  192.     <h3><a name="firstcgi" id="firstcgi">Your first CGI program</a></h3>
  193.       
  194.  
  195.       <p>The following is an example CGI program that prints one
  196.       line to your browser. Type in the following, save it to a
  197.       file called <code>first.pl</code>, and put it in your 
  198.       <code>cgi-bin</code> directory.</p>
  199.  
  200.       <div class="example"><p><code>
  201.         #!/usr/bin/perl<br />
  202.         print "Content-type: text/html\n\n";<br />
  203.         print "Hello, World.";
  204.       </code></p></div>
  205.  
  206.       <p>Even if you are not familiar with Perl, you should be able
  207.       to see what is happening here. The first line tells Apache
  208.       (or whatever shell you happen to be running under) that this
  209.       program can be executed by feeding the file to the
  210.       interpreter found at the location <code>/usr/bin/perl</code>.
  211.       The second line prints the content-type declaration we
  212.       talked about, followed by two carriage-return newline pairs.
  213.       This puts a blank line after the header, to indicate the end
  214.       of the HTTP headers, and the beginning of the body. The third
  215.       line prints the string "Hello, World.". And that's the end
  216.       of it.</p>
  217.  
  218.       <p>If you open your favorite browser and tell it to get the
  219.       address</p>
  220.  
  221.       <div class="example"><p><code>
  222.         http://www.example.com/cgi-bin/first.pl
  223.       </code></p></div>
  224.  
  225.       <p>or wherever you put your file, you will see the one line 
  226.       <code>Hello, World.</code> appear in your browser window.
  227.       It's not very exciting, but once you get that working, you'll
  228.       have a good chance of getting just about anything working.</p>
  229.     
  230.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  231. <div class="section">
  232. <h2><a name="troubleshoot" id="troubleshoot">But it's still not working!</a></h2>
  233.     
  234.  
  235.     <p>There are four basic things that you may see in your browser
  236.     when you try to access your CGI program from the web:</p>
  237.  
  238.     <dl>
  239.       <dt>The output of your CGI program</dt>
  240.       <dd>Great! That means everything worked fine.</dd>
  241.  
  242.       <dt>The source code of your CGI program or a "POST Method Not
  243.       Allowed" message</dt>
  244.       <dd>That means that you have not properly configured Apache
  245.       to process your CGI program. Reread the section on 
  246.       <a href="#configuringapachetopermitcgi">configuring
  247.       Apache</a> and try to find what you missed.</dd>
  248.  
  249.       <dt>A message starting with "Forbidden"</dt>
  250.       <dd>That means that there is a permissions problem. Check the
  251.       <a href="#errorlogs">Apache error log</a> and the section below on
  252.       <a href="#permissions">file permissions</a>.</dd>
  253.  
  254.       <dt>A message saying "Internal Server Error"</dt>
  255.       <dd>If you check the 
  256.       <a href="#errorlogs">Apache error log</a>, you will probably
  257.       find that it says "Premature end of
  258.       script headers", possibly along with an error message
  259.       generated by your CGI program. In this case, you will want to
  260.       check each of the below sections to see what might be
  261.       preventing your CGI program from emitting the proper HTTP
  262.       headers.</dd>
  263.     </dl>
  264.  
  265.     <h3><a name="permissions" id="permissions">File permissions</a></h3>
  266.       
  267.  
  268.       <p>Remember that the server does not run as you. That is,
  269.       when the server starts up, it is running with the permissions
  270.       of an unprivileged user - usually <code>nobody</code>, or
  271.       <code>www</code> - and so it will need extra permissions to
  272.       execute files that are owned by you. Usually, the way to give
  273.       a file sufficient permissions to be executed by <code>nobody</code>
  274.       is to give everyone execute permission on the file:</p>
  275.  
  276.       <div class="example"><p><code>
  277.         chmod a+x first.pl
  278.       </code></p></div>
  279.  
  280.       <p>Also, if your program reads from, or writes to, any other
  281.       files, those files will need to have the correct permissions
  282.       to permit this.</p>
  283.  
  284.       <p>The exception to this is when the server is configured to
  285.       use <a href="../suexec.html">suexec</a>. This program allows
  286.       CGI programs to be run under different
  287.       user permissions, depending on which virtual host or user
  288.       home directory they are located in. Suexec has very strict
  289.       permission checking, and any failure in that checking will
  290.       result in your CGI programs failing with an "Internal Server
  291.       Error". In this case, you will need to check the suexec log
  292.       file to see what specific security check is failing.</p>
  293.     
  294.  
  295.     <h3><a name="pathinformation" id="pathinformation">Path information</a></h3>
  296.       
  297.  
  298.       <p>When you run a program from your command line, you have
  299.       certain information that is passed to the shell without you
  300.       thinking about it. For example, you have a path, which tells
  301.       the shell where it can look for files that you reference.</p>
  302.  
  303.       <p>When a program runs through the web server as a CGI
  304.       program, it does not have that path. Any programs that you
  305.       invoke in your CGI program (like 'sendmail', for example)
  306.       will need to be specified by a full path, so that the shell
  307.       can find them when it attempts to execute your CGI
  308.       program.</p>
  309.  
  310.       <p>A common manifestation of this is the path to the script
  311.       interpreter (often <code>perl</code>) indicated in the first
  312.       line of your CGI program, which will look something like:</p>
  313.  
  314.       <div class="example"><p><code>
  315.         #!/usr/bin/perl
  316.       </code></p></div>
  317.  
  318.       <p>Make sure that this is in fact the path to the
  319.       interpreter.</p>
  320.     
  321.  
  322.     <h3><a name="syntaxerrors" id="syntaxerrors">Syntax errors</a></h3>
  323.       
  324.  
  325.       <p>Most of the time when a CGI program fails, it's because of
  326.       a problem with the program itself. This is particularly true
  327.       once you get the hang of this CGI stuff, and no longer make
  328.       the above two mistakes. Always attempt to run your program
  329.       from the command line before you test if via a browser. This
  330.       will eliminate most of your problems.</p>
  331.     
  332.  
  333.     <h3><a name="errorlogs" id="errorlogs">Error logs</a></h3>
  334.       
  335.  
  336.       <p>The error logs are your friend. Anything that goes wrong
  337.       generates message in the error log. You should always look
  338.       there first. If the place where you are hosting your web site
  339.       does not permit you access to the error log, you should
  340.       probably host your site somewhere else. Learn to read the
  341.       error logs, and you'll find that almost all of your problems
  342.       are quickly identified, and quickly solved.</p>
  343.     
  344.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  345. <div class="section">
  346. <h2><a name="behindscenes" id="behindscenes">What's going on behind the scenes?</a></h2>
  347.     
  348.  
  349.     <p>As you become more advanced in CGI programming, it will
  350.     become useful to understand more about what's happening behind
  351.     the scenes. Specifically, how the browser and server
  352.     communicate with one another. Because although it's all very
  353.     well to write a program that prints "Hello, World.", it's not
  354.     particularly useful.</p>
  355.  
  356.     <h3><a name="env" id="env">Environment variables</a></h3>
  357.       
  358.  
  359.       <p>Environment variables are values that float around you as
  360.       you use your computer. They are useful things like your path
  361.       (where the computer searches for a the actual file
  362.       implementing a command when you type it), your username, your
  363.       terminal type, and so on. For a full list of your normal,
  364.       every day environment variables, type 
  365.       <code>env</code> at a command prompt.</p>
  366.  
  367.       <p>During the CGI transaction, the server and the browser
  368.       also set environment variables, so that they can communicate
  369.       with one another. These are things like the browser type
  370.       (Netscape, IE, Lynx), the server type (Apache, IIS, WebSite),
  371.       the name of the CGI program that is being run, and so on.</p>
  372.  
  373.       <p>These variables are available to the CGI programmer, and
  374.       are half of the story of the client-server communication. The
  375.       complete list of required variables is at 
  376.       <a href="http://hoohoo.ncsa.uiuc.edu/cgi/env.html">http://hoohoo.ncsa.uiuc.edu/cgi/env.html</a>.</p>
  377.  
  378.       <p>This simple Perl CGI program will display all of the
  379.       environment variables that are being passed around. Two
  380.       similar programs are included in the 
  381.       <code>cgi-bin</code>
  382.  
  383.       directory of the Apache distribution. Note that some
  384.       variables are required, while others are optional, so you may
  385.       see some variables listed that were not in the official list.
  386.       In addition, Apache provides many different ways for you to 
  387.       <a href="../env.html">add your own environment variables</a>
  388.       to the basic ones provided by default.</p>
  389.  
  390.       <div class="example"><p><code>
  391.         #!/usr/bin/perl<br />
  392.         print "Content-type: text/html\n\n";<br />
  393.         foreach $key (keys %ENV) {<br />
  394.         <span class="indent">
  395.           print "$key --> $ENV{$key}<br>";<br />
  396.         </span>
  397.         }
  398.       </code></p></div>
  399.     
  400.  
  401.     <h3><a name="stdin" id="stdin">STDIN and STDOUT</a></h3>
  402.       
  403.  
  404.       <p>Other communication between the server and the client
  405.       happens over standard input (<code>STDIN</code>) and standard
  406.       output (<code>STDOUT</code>). In normal everyday context, 
  407.       <code>STDIN</code> means the keyboard, or a file that a 
  408.       program is given to act on, and <code>STDOUT</code>
  409.       usually means the console or screen.</p> 
  410.  
  411.       <p>When you <code>POST</code> a web form to a CGI program,
  412.       the data in that form is bundled up into a special format
  413.       and gets delivered to your CGI program over <code>STDIN</code>.
  414.       The program then can process that data as though it was
  415.       coming in from the keyboard, or from a file</p>
  416.  
  417.       <p>The "special format" is very simple. A field name and
  418.       its value are joined together with an equals (=) sign, and
  419.       pairs of values are joined together with an ampersand
  420.       (&). Inconvenient characters like spaces, ampersands, and
  421.       equals signs, are converted into their hex equivalent so that
  422.       they don't gum up the works. The whole data string might look
  423.       something like:</p>
  424.  
  425.       <div class="example"><p><code>
  426.         name=Rich%20Bowen&city=Lexington&state=KY&sidekick=Squirrel%20Monkey
  427.       </code></p></div>
  428.  
  429.       <p>You'll sometimes also see this type of string appended to
  430.       the a URL. When that is done, the server puts that string
  431.       into the environment variable called 
  432.       <code>QUERY_STRING</code>. That's called a <code>GET</code>
  433.       request. Your HTML form specifies whether a <code>GET</code>
  434.       or a <code>POST</code> is used to deliver the data, by setting the 
  435.       <code>METHOD</code> attribute in the <code>FORM</code> tag.</p>
  436.  
  437.       <p>Your program is then responsible for splitting that string
  438.       up into useful information. Fortunately, there are libraries
  439.       and modules available to help you process this data, as well
  440.       as handle other of the aspects of your CGI program.</p>
  441.     
  442.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  443. <div class="section">
  444. <h2><a name="libraries" id="libraries">CGI modules/libraries</a></h2>
  445.     
  446.  
  447.     <p>When you write CGI programs, you should consider using a
  448.     code library, or module, to do most of the grunt work for you.
  449.     This leads to fewer errors, and faster development.</p>
  450.  
  451.     <p>If you're writing CGI programs in Perl, modules are
  452.     available on <a href="http://www.cpan.org/">CPAN</a>. The most
  453.     popular module for this purpose is <code>CGI.pm</code>. You might
  454.     also consider <code>CGI::Lite</code>, which implements a minimal
  455.     set of functionality, which is all you need in most programs.</p>
  456.  
  457.     <p>If you're writing CGI programs in C, there are a variety of
  458.     options. One of these is the <code>CGIC</code> library, from 
  459.     <a href="http://www.boutell.com/cgic/">http://www.boutell.com/cgic/</a>.</p>
  460.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  461. <div class="section">
  462. <h2><a name="moreinfo" id="moreinfo">For more information</a></h2>
  463.     
  464.  
  465.     <p>There are a large number of CGI resources on the web. You
  466.     can discuss CGI problems with other users on the Usenet group
  467.     <a href="news:comp.infosystems.www.authoring.cgi">comp.infosystems.www.authoring.cgi</a>. And the -servers mailing
  468.     list from the HTML Writers Guild is a great source of answers
  469.     to your questions. You can find out more at 
  470.     <a href="http://www.hwg.org/lists/hwg-servers/">http://www.hwg.org/lists/hwg-servers/</a>.</p>
  471.  
  472.     <p>And, of course, you should probably read the CGI
  473.     specification, which has all the details on the operation of
  474.     CGI programs. You can find the original version at the 
  475.     <a href="http://hoohoo.ncsa.uiuc.edu/cgi/interface.html">NCSA</a> and there is an updated draft at the 
  476.     <a href="http://web.golux.com/coar/cgi/">Common Gateway
  477.     Interface RFC project</a>.</p>
  478.  
  479.     <p>When you post a question about a CGI problem that you're
  480.     having, whether to a mailing list, or to a newsgroup, make sure
  481.     you provide enough information about what happened, what you
  482.     expected to happen, and how what actually happened was
  483.     different, what server you're running, what language your CGI
  484.     program was in, and, if possible, the offending code. This will
  485.     make finding your problem much simpler.</p>
  486.  
  487.     <p>Note that questions about CGI problems should <strong>never</strong>
  488.     be posted to the Apache bug database unless you are sure you
  489.     have found a problem in the Apache source code.</p>
  490.   </div></div>
  491. <div id="footer">
  492. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  493. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  494. </body></html>