|             <Location /asp/>
|             SetHandler PerlScript
|             PerlHandler Apache::ASP
|             PerlSetVar Global /tmp
|             </Location>
|
| When I try to run the sample asp applications from the
| eg directory, for example
| http://localhost/eg/application.asp I don't get any
| errors, but the asp part doesn't seem to work. Please
| advice as to what I should do for my asp to start
| ticking in my Apache server.

First, it should be Perl-Script, with a dash. Secondly, with the location
directive above, only urls like
http://localhost/asp/... are handled as Apache::ASP scipts. So, try this:

<Files *.asp>
  SetHandler perl-script
  PerlHandler Apache::ASP
  PerlSetVar Debug 2
</Files>

in a .htaccess in the eg directory (make sure AllowOveride All is set) or
maybe even put this
in your httpd.conf

Ime







Reply via email to