You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2003/12/12 15:37:19 UTC

DO NOT REPLY [Bug 25477] New: - suexec is NOT being called from userdir CGI scripts.

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25477>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25477

suexec is NOT being called from userdir CGI scripts.

           Summary: suexec is NOT being called from userdir CGI scripts.
           Product: Apache httpd-2.0
           Version: 2.0.47
          Platform: All
               URL: http://zathras.cs.umass.edu/~heller/cgi-bin/env.cgi
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: mod_suexec
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: heller@deepsoft.com


For some reason, mod_suexec is not invoking suexec when accessing a CGI script
in a user's directory (/~user/cgi-bin/foo.cgi --
~user/public_html/cgi-bin/foo.cgi).  Here is the section of the httpd.conf file
that relates to user dirs:

<IfModule mod_userdir.c>
    #
    # UserDir is disabled by default since it can confirm the presence
    # of a username on the system (depending on home directory
    # permissions).
    #
    #UserDir disable
 
    #
    # To enable requests to /~user/ to serve the user's public_html
    # directory, remove the "UserDir disable" line above, and uncomment
    # the following line instead:
    #
    UserDir public_html

    ScriptAliasMatch ~([a-z]+)/cgi-bin/(.*) /home/zathras/$1/public_html/cgi-bi$
 
    <Directory ~ "/home/zathras/[a-z0-9]+/public_html/cgi-bin"> 
      AllowOverride None
      Options +ExecCGI  
    </Directory>
    
    
</IfModule>

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org