Sorry for the personal reply. I'm not used to this list yet.

In the browser, I get the asp script.

In the error log, I get nothing. (It seems the server thinks it's cool to
just throw the script out there.)

I don't seem to have a global.asa file anywhere on the server. (Did a search
for it...came up empty.)

Directories:

        <Directory "D:\Xxxxxxx\xxxxxx">
                Options FollowSymlinks  Includes
                AllowOverride None
                Order allow,deny
                Allow from all
        </Directory>

That directory is the "home" directory for my site. It contains index.php
and several other php scripts

<Directory "C:/IndigoPerl/apache/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

That directory is what came pre-installed on IndigoPerl as the "home".
There's nothing there.

<Directory "C:/IndigoPerl/apache/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

<Directory "C:/IndigoPerl/php">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
</Directory>

The previous two directories seem to be where Apache is supposed to look for
cgi's or php.exe.

<Directory "C:/IndigoPerl/apache/htdocs">
    Options Indexes FollowSymLinks MultiViews ExecCGI +Includes
</Directory>

That one seems to tell Apache that in htdocs which options to use.

<Directory "C:/IndigoPerl/apache/htdocs">
  <IfModule mod_perl.c>
    # Files directive is only valid in Directory section
    <Files ~ "\.(pl|cgi)$">
        SetHandler perl-script
        PerlHandler ModPerl::Registry
        Options ExecCGI
        allow from all
        PerlSendHeader On
    </Files>
  </IfModule>
</Directory>

That one seems to tell Apache how to handle Perl scripts in the htdocs
directory.

As for permissions, all of the directories above seem to be configured
properly...at least as far as I understand Apache.

What is the StateDir? Never heard of it.

By "the httpd user" to whom do you refer?

Thanks.


-----Original Message-----
From: Warren Young [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 19, 2008 8:44 PM
To: Apache-ASP List
Subject: Re: Apache::ASP Installation Issue

Redirecting this back to the list.  Please don't respond to me 
personally.  I'm here to support Apache::ASP, not to support you in 
particular. :)

Randy wrote:
> It now has Apache::ASP installed on it, but still won't run ASP scripts.

What do you get in the browser?

What do you get in Apache's error log?

What does your global.asa file contain, and where is it?

Can you post the relevant sections of your httpd.conf file, and say what 
is in all of the directories it references?

Do all of these directories have appropriate permissions?  Especially, 
does the StateDir exist, and is it writeable by the httpd user?

> How do I call out a directory, and specify ASP scripts to run in it, in
the
> httpd.conf file? (I think this may be the end of it).

There is an answer, but it's the wrong question.  If you configure 
Apache::ASP to run on the server as a whole and it doesn't work, 
restricting it to a single directory won't make it work.

Once you get ASP working globally, we can talk about tightening it down 
to a single directory.  Let's not complicate things yet.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to