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