You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Vasiliy Boulytchev <va...@boulytcheva.com> on 2002/03/12 23:23:02 UTC

cgi scripts now loading

Ladies and Gents,
For some reason I can't launch cgi scripts.  Can anyone help?
Forbidden
You don't have permission to access /edit/cust_main.cgi on this server.


----------------------------------------------------------------------------
----

Apache-AdvancedExtranetServer/1.3.20 Server at freebilling Port 80

Thanks a lot,

Vasiliy Boulytchev
vasiliy@boulytcheva.com
----- Original Message -----
From: "Tony White" <to...@worldlingo.com>
To: <us...@httpd.apache.org>
Sent: Tuesday, March 12, 2002 3:19 PM
Subject: RE: DBM Error In Apache Logs


> David,
>
> Perhaps you could list what modules you have enabled, someone might be
able
> to spot something...
>
> Cheers
> Tony
>
> > -----Original Message-----
> > From: David Archer [mailto:arrchie@cosmic.net.au]
> > Sent: Wednesday, 13 March 2002 08:47
> > To: users@httpd.apache.org
> > Subject: RE: DBM Error In Apache Logs
> >
> >
> > Hi,
> > Thanks for your idea, but I have looked in my cofig.status
> > and found both
> > auth_db and auth_dbm
> > have been disabled with lines similar to
> >
> > "--disable-module=auth_db"
> >
> > Ive checked compiled in modules and with httpd -l and found
> > that its not
> > there either.
> >
> > Dave
> >
> >
> >
> > At 07:58 AM 13/3/2002 +1000, Tony White wrote:
> > >David,
> > >
> > >It sounds like you compiled Apache with the auth_dbm module
> > configured but
> > >no db installed...
> > >see:
> > >http://httpd.apache.org/docs/howto/auth.html#modauthdb
> > >
> > >Hopefully that should help you sort out how you can fix the
> > problem with out
> > >needing to recompile Apache.
> > >
> > >Tony
> > >
> > > > -----Original Message-----
> > > > From: David Archer [mailto:arrchie@cosmic.net.au]
> > > > Sent: Wednesday, 13 March 2002 08:13
> > > > To: users@httpd.apache.org
> > > > Subject: Fwd: DBM Error In Apache Logs
> > > >
> > > >
> > > >
> > > > Sorry if this email appears twice in the mailing list, the
> > > > first time I
> > > > tried sending with an email address which was not subscribed
> > > > and assumed it
> > > > would be blocked after the message has not shown up in the
> > > > list for a long
> > > > time.
> > > >
> > > > >Date: Wed, 13 Mar 2002 08:19:20 +1030
> > > > >To: users@httpd.apache.org
> > > > >From: David Archer <ar...@cosmic.net.au>
> > > > >Subject: DBM Error In Apache Logs
> > > > >
> > > > >Hi,
> > > > >I have recently installed the latest version of Apache 1.3
> > > > and found that
> > > > >im now getting these errors.
> > > > >
> > > > >Does anyone know what feature/option I should be turning off
> > > > to prevent
> > > > >this error.
> > > > >
> > > > >The apache server still delivers webpages without a problem.
> > > > >
> > > > >[Wed Mar 13 02:14:22 2002] [error] (111)Connection refused:
> > > > Cannot connect
> > > > >to DBM server
> > > > >[Wed Mar 13 07:20:13 2002] [error] (111)Connection refused:
> > > > Cannot connect
> > > > >to DBM server
> > > > >
> > > > >Thanks
> > > > >Regards
> > > > >Dave
> > > >
> > > >
> > > >
> > > >
> > ---------------------------------------------------------------------
> > > > The official User-To-User support forum of the Apache HTTP
> > > > Server Project.
> > > > See <URL:http://httpd.apache.org/userslist.html> for more info.
> > > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> > > > For additional commands, e-mail: users-help@httpd.apache.org
> > > >
> > >
> > >---------------------------------------------------------------------
> > >The official User-To-User support forum of the Apache HTTP
> > Server Project.
> > >See <URL:http://httpd.apache.org/userslist.html> for more info.
> > >To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> > >For additional commands, e-mail: users-help@httpd.apache.org
> >
> >
> >
> > ---------------------------------------------------------------------
> > The official User-To-User support forum of the Apache HTTP
> > Server Project.
> > See <URL:http://httpd.apache.org/userslist.html> for more info.
> > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> > For additional commands, e-mail: users-help@httpd.apache.org
> >
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: cgi scripts now loading

Posted by Joshua Slive <jo...@slive.ca>.
Vasiliy Boulytchev wrote:
> [Tue Mar 12 07:45:19 2002] [error] [client 10.0.0.1] Options ExecCGI is off
> in this directory:
> /home2/downloads/freeside/freeside-1.3.1/htdocs/edit/cust_main.cgi

>>Vasiliy Boulytchev wrote:
>>
>>>Ladies and Gents,
>>>For some reason I can't launch cgi scripts.  Can anyone help?
>>>Forbidden
>>>You don't have permission to access /edit/cust_main.cgi on this server.
>>
>>What does the error log say?

This means the Options directive applying to that directive does not 
include ExecCGI.  Either find the Options directive applying to that 
part of the server and add ExecCGI to it, or add the following to your 
httpd.conf:

<Directory 
/home2/downloads/freeside/freeside-1.3.1/htdocs/edit/cust_main.cgi>
Options +ExecCGI
</Directory>

Joshua.



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: cgi scripts now loading

Posted by Vasiliy Boulytchev <va...@boulytcheva.com>.
[Tue Mar 12 07:45:19 2002] [error] [client 10.0.0.1] Options ExecCGI is off
in this directory:
/home2/downloads/freeside/freeside-1.3.1/htdocs/edit/cust_main.cgi

i have no experience with .htaccess.
I feel stupid

Thanks guys


Vasiliy Boulytchev
vasiliy@boulytcheva.com
----- Original Message -----
From: "Joshua Slive" <jo...@slive.ca>
To: <us...@httpd.apache.org>
Sent: Tuesday, March 12, 2002 4:19 PM
Subject: Re: cgi scripts now loading


> Vasiliy Boulytchev wrote:
> > Ladies and Gents,
> > For some reason I can't launch cgi scripts.  Can anyone help?
> > Forbidden
> > You don't have permission to access /edit/cust_main.cgi on this server.
>
> What does the error log say?
>
> Joshua.
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: cgi scripts now loading

Posted by Joshua Slive <jo...@slive.ca>.
Vasiliy Boulytchev wrote:
> Ladies and Gents,
> For some reason I can't launch cgi scripts.  Can anyone help?
> Forbidden
> You don't have permission to access /edit/cust_main.cgi on this server.

What does the error log say?

Joshua.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org