Modified: httpd-docs-1.3/htdocs/manual/howto/cgi.html Log: Removed spaces and slashes from internal fragment names and hrefs. Fixed a couple closing tags.
Index: cgi.html =================================================================== RCS file: /home/cvspublic/httpd-docs-1.3/htdocs/manual/howto/cgi.html,v retrieving revision 1.4 diff -u -d -b -w -r1.4 cgi.html --- cgi.html 2000/11/12 23:54:17 1.4 +++ cgi.html 2000/11/16 20:48:36 @@ -68,7 +68,7 @@ </ul> </li> -<li><a href="#cgi modules/libraries">CGI modules/libraries</a></li> +<li><a href="#cgimoduleslibraries">CGI modules/libraries</a></li> <li><a href="#for more information">For more information</a></li> </ul> @@ -256,7 +256,7 @@ <p>If you open your favorite browser and tell it to get the address</p> <pre> - http://www.example.com/cgi-bin/first.pl</a> + http://www.example.com/cgi-bin/first.pl </pre> <p>or wherever you put your file, you will see the one line @@ -278,20 +278,20 @@ <dt>The source code of your CGI script</dt> <dd>That means that you have not properly configured Apache to process your CGI script. Reread the section on <a -href="#configuring%20apache%20to%20permit%20cgi">configuring +href="#configuringapachetopermitcgi">configuring Apache</a> and try to find what you missed.<br><br></dd> <dt>A message starting with "Forbidden"</dt> <dd>That means that there -is a permissions problem. Check the <a href="#error%20logs">Apache +is a permissions problem. Check the <a href="#errorlogs">Apache error log</a> and the section below on <a -href="#file%20permissions">file permissions</a>.<br><br></dd> +href="#filepermissions">file permissions</a>.<br><br></dd> <dt>A message saying "Internal Server Error"</dt> <dd>If you check the -<a href="#error%20logs">Apache error log</a>, you will probably find +<a href="#errorlogs">Apache error log</a>, you will probably find that it says "Premature end of script headers", possibly along with an error message generated by your CGI script. In this case, you will want to check each of the below sections to see what might be preventing -your CGI script from emitting the proper HTTP headers.</dt> +your CGI script from emitting the proper HTTP headers.</dd> </dl> @@ -447,7 +447,7 @@ aspects of your CGI script.</p> <hr> -<h2><a name="cgi modules/libraries">CGI modules/libraries</a></h2> +<h2><a name="cgimoduleslibraries">CGI modules/libraries</a></h2> <p>When you write CGI scripts, you should consider using a code library, or module, to do most of the grunt work for you. This leads to