at the first glance if you specify :

<Directory /home/*/public_html>
...

it means you have a 
UserDir public_html

somewhere

thus the "virtual" root directories for the users are
/home/<user>/public_html and the directory cgi-bin inside (ie
/home/<user>/public_html/cgi-bin) has the url http://server/~user/cgi-bin
and not http://server/~user/public_html/cgi-bin

that's why
ScriptAlias /~jmchenry/public_html/cgi-bin/
"/home/jmchenry/public_html/cgi-bin/"
is false, try instead

ScriptAlias /~jmchenry/cgi-bin/ "/home/jmchenry/public_html/cgi-bin/"


hth



A 08:24 22/01/02 -0500, vous avez écrit :
>Hello everyone. I had my server set up before to make it so specified
users can have their own cgi-bin. I can't seem to remember how I did it
before. And stupid me, I didn't write it down. Here's what I have so far...
>
><Directory /home/*/public_html>
>  Options Indexes FollowSymLinks Includes MultiViews
>  AllowOverride None
>  Order allow,deny
>  Allow from all
></Directory>
>
>ScriptAlias /~jmchenry/public_html/cgi-bin/
"/home/jmchenry/public_html/cgi-bin/"
>
><Directory /home/jmchenry/public_html/cgi-bin>
>  Options ExecCGI
>  AllowOverride Options
>  Order allow,deny
>  Allow from all
></Directory>
>
>
>All that I am getting when I try to run the script is the text of the
file, it's not running any scripts.
>
>Let me know what I'm doing wrong...
>
>Thanks,
>Jake
>
>Attachment Converted: "d:\app\net\eudora\attach\Apachean"
>
                        - * - * - * - * - * - * -
Bien sûr que je suis perfectionniste !
Mais ne pourrais-je pas l'être mieux ?
        Thierry ITTY
eMail : [EMAIL PROTECTED]               FRANCE



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to