Re: mod_auth_pgsql

From: The Hermit Hacker <scrappy(at)hub(dot)org>
To: Ramses van Pinxteren <ram6(at)euronet(dot)nl>
Cc: PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: Re: mod_auth_pgsql
Date: 2000-08-15 11:22:43
Message-ID: Pine.BSF.4.21.0008150822320.92127-100000@thelab.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, 15 Aug 2000, Ramses van Pinxteren wrote:

> Hello,
>
> I know that this is probably not the right mailing list to email to, but
> still I hope someone can help me?
>
> I have installed postgres (Running perfect!) apache 1.3.12 and
> mod_auth_pgsql this to facilitate logging in for users.
>
> I created a table login:
> CREATE TABLE login (
> uname VARCHAR(8) NOT NULL,
> password VARCHAR(8) NOT NULL,
> userlevel int2 NOT NULL,
> primary key (uname)
> );
> ---------------
> and a file called .htaccess
> deny from all
> AuthType basic
> Auth_PGhost localhost
> Auth_PGdatabase nobody
> Auth_PGpwd_table login
> Auth_PGuid_field uname
> Auth_PGpwd_field passwrd
>
> require valid-user
> --------------
>
> When I try to connect I keep on getting an error 500: Internal Server error.
>
> Who knows what can be wrong?

have you checked the error_log for that server?

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Carlos Felipe Zirbes 2000-08-15 11:52:19 RE: PostGres and ERwin
Previous Message Mark Kirkwood 2000-08-15 09:39:42 Re: Great Bridge benchmark results for Postgres, 4 others