mod_auth_pgsql - Mailing list pgsql-general

From Ramses van Pinxteren
Subject mod_auth_pgsql
Date
Msg-id 004101c00699$9d66d920$0201a8c0@holodeck4.nl
Whole thread Raw
Responses Re: mod_auth_pgsql  (The Hermit Hacker <scrappy@hub.org>)
Re: mod_auth_pgsql  (Tomaz Borstnar <tomaz.borstnar@over.net>)
List pgsql-general
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?

Many thanks,
Ramses v. Pinxteren



pgsql-general by date:

Previous
From: "Tamsin"
Date:
Subject: RE: PostGres and ERwin
Next
From: Michael Meskes
Date:
Subject: Re: tools and apps for PostgreSQL