Ask a Question related to PERL Miscellaneous, Design and Development.
-
Harrie Geerts #1
perl and/und apache
[Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to invoke
directory as script: c:/foxserv/www/cgi-bin
This is standing in error.log Apache.
Das steht in error.log Apache.
And I get:
Und ich bekomme:
Forbidden.
You don't have permission to access /cgi-bin/ on this server.
I have the right settings i thought.
Ich habe die richtige settings dachte ich.
What should i change or do?
Was soll ich machen oder andern?
Harrie Geerts
Harrie Geerts
Harrie Geerts Guest
-
perl + mysql + apache on windows
I am running mySQL 3.23.57 on windows 2000. I configured it to run on named pipes ( enable-named-pipe ), and the server starts nicely. I have a perl... -
Apache htaccess and perl
Hi all I have a apache running with mod_perl, it is set up with access-control by a .htaccess-file with more than 1 user in it. I need to get... -
Problems with Apache 2.0, mod_perl2 and perl
I'm using FC4 Linux, and I'm having some problems with Apache 2.0. perl 5.8.8 httpd 2.0.54-10.3 mod_perl 2.0.1-1.fc4 1. If I add the load... -
perl SOAP::Lite and Apache
Good suggestion.... thank you. I will analyze the possibility of implementing session control on my system bye Giorgio In data Sun, 26 Oct... -
Help configuring Perl with Apache 2
This is more of an Apache question than a Perl question, but I'll go for it here. I installed RedHat 9 (including Apache 2 and Perl) from CD. ... -
James Willmore #2
Re: perl and/und apache
On Sun, 31 Aug 2003 20:49:07 +0200
"Harrie Geerts" <harriegeertsDITWEGHALEN@home.nl> wrote:Thie is _not_ a Perl question and is addressed in the Apache> [Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to
> invoke directory as script: c:/foxserv/www/cgi-bin
>
> This is standing in error.log Apache.
> Das steht in error.log Apache.
>
> And I get:
> Und ich bekomme:
>
> Forbidden.
> You don't have permission to access /cgi-bin/ on this server.
>
> I have the right settings i thought.
> Ich habe die richtige settings dachte ich.
>
> What should i change or do?
> Was soll ich machen oder andern?
documentation. There are also newsgroups that deal specifically with
Apache and it's configuration. Sorry :(
Jim
--
and now, a quote from fortune ....
================================================
Welcome thy neighbor into thy fallout
shelter. He'll come in handy if you run
out of food. -- Dean McLaughlin.
================================================
and a real quote ....
Linus Torvalids: "They are somking crack ...."
([url]http://www.eweek.com/article2/0,3959,1227150,00.asp[/url])
James Willmore Guest
-
Purl Gurl #3
Re: perl and/und apache
Harrie Geerts wrote:
(snipped)
> [Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to invoke
> directory as script: c:/foxserv/www/cgi-bin> Forbidden.
> You don't have permission to access /cgi-bin/ on this server.Research, read and learn about Apache.> What should i change or do?
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "c:/apache/cgi-bin/"
<Directory "c:/apache/cgi-bin">
your settings
</Directory>
Purl Gurl
Purl Gurl Guest



Reply With Quote

