Continue on non-local page

2000-10-01 Thread Kaare Rasmussen
Hi I need to go to another page. The page is on another system, so I cannot Execute the file. How do I unconditionally and without user intervention go to another page on another site? I know I can use this [- $http_headers_out{'Location'} = "$fdat{newpage}" -] But this is a redirect, and the

Secure way of logging in

2000-10-01 Thread Kaare Rasmussen
Hi I'm looking for a way to log in to a database application. The database is PostgreSQL, and it would be nice if the solution would use the database for authentication. The webserver is apache. I could use htaccess, but I really need to know who's logging on, because the user is only allowed to

Re: Secure way of logging in

2000-10-01 Thread Rob Tanner
--On 10/01/00 01:05:10 PM +0200 Kaare Rasmussen <[EMAIL PROTECTED]> wrote: > Hi > > I'm looking for a way to log in to a database application. The > database is PostgreSQL, and it would be nice if the solution would > use the database for authentication. > > The webserver is apache. I could use h

Re: Secure way of logging in

2000-10-01 Thread Ilia Lobsanov
Rob, you shouldn't rely on JavaScript for this. And I don't see why you need cookies for that. Just use SSL if you don't want a sniffer to intercept the password. ilia. - Original Message - From: "Rob Tanner" <[EMAIL PROTECTED]> To: "Kaare Rasmussen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTE

Re: Secure way of logging in

2000-10-01 Thread Rob Tanner
--On 10/01/00 04:05:39 PM -0400 Ilia Lobsanov <[EMAIL PROTECTED]> wrote: > Rob, you shouldn't rely on JavaScript for this. And I don't see why > you need cookies for that. > Just use SSL if you don't want a sniffer to intercept the password. > > ilia. > I thought about that right after I respond

Re: Secure way of logging in

2000-10-01 Thread Ragnar Hakonarson
Take a look at Apche::TicketAccess. That module does the job.. On Sun, 1 Oct 2000, Ilia Lobsanov wrote: > Rob, you shouldn't rely on JavaScript for this. And I don't see why you need > cookies for that. > Just use SSL if you don't want a sniffer to intercept the password. > > ilia. > > - O