You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Marc Slemko <ma...@hyperreal.com> on 1997/05/05 03:48:55 UTC

cvs commit: apache/htdocs/manual/mod mod_cgi.html

marc        97/05/04 18:48:54

  Modified:    htdocs/manual/mod  mod_cgi.html
  Log:
  Clarify that the ScriptLog is opened by the child processes so
  permissions need to be set appropriately.  Perhaps wouldn't hurt
  to put an error in the error_log if it can't be opened.
  
  Revision  Changes    Path
  1.9       +13 -8     apache/htdocs/manual/mod/mod_cgi.html
  
  Index: mod_cgi.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_cgi.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -C3 -r1.8 -r1.9
  *** mod_cgi.html	1997/05/01 05:26:53	1.8
  --- mod_cgi.html	1997/05/05 01:48:54	1.9
  ***************
  *** 114,127 ****
    <b>Status:</b> mod_cgi
    <p>
    
  ! The <tt>ScriptLog</tt> directive sets the CGI script error logfile. If
  ! no
  ! ScriptLog is given, no error log is created. If given, any CGI errors
  ! are
  ! logged
  ! into the filename given as argument. If this is a relative file or
  ! path it is
  ! taken relative to the server root.
    
    <p>Note that script logging is meant to be a debugging feature when
    writing CGI scripts, and is not meant to be activated continuously on
  --- 114,132 ----
    <b>Status:</b> mod_cgi
    <p>
    
  ! The <tt>ScriptLog</tt> directive sets the CGI script error logfile.
  ! If no ScriptLog is given, no error log is created. If given, any
  ! CGI errors are logged into the filename given as argument. If this
  ! is a relative file or path it is taken relative to the server root.
  ! 
  ! <P>This log will be opened as the user the child processes run as,
  ! ie. the user specified in the main <A HREF="core.html#User">User</A>
  ! directive.  This means that either the directory the script log is
  ! in needs to be writable by that user or the file needs to be manually
  ! created and set to be writable by that user.  If you place the
  ! script log in your main logs directory, do <STRONG>NOT</STRONG>
  ! change the directory permissions to make it writable by the user
  ! the child processes run as.</P>
    
    <p>Note that script logging is meant to be a debugging feature when
    writing CGI scripts, and is not meant to be activated continuously on