Re: MP2: Dealing with AuthCookie and IE's "You are about to be redirected ..."

2006-04-07 Thread Philip M. Gollucci
Instead of the 302 redirect, give a 400 responce, and a meta-refresh tag. http://zzz.com/";> I'll need to modify a local copy of Apache2::AuthCookie to do this, but I wondered if there are other solutions out there for this problem. Well, I'm not using Apache2::AuthCookie, but this site doesn'

MP2: Dealing with AuthCookie and IE's "You are about to be redirected ..."

2006-04-07 Thread Barry Hoggard
I have a client who has a lot of web site users using Internet Explorer 6 on Windows. At the moment, the login form submits via https, and then the user is redirected to a regular http page afterward. In IE, we get this: “You are about to be redirected to a connection that is not secure.

Re: anyone with pgpool experience?

2006-04-07 Thread Perrin Harkins
On Fri, 2006-04-07 at 21:16 -0500, David Nicol wrote: > When I was trying to multiplex a single database connection to a > room ful of clients that combination was reccommended to me by people > on the DBI list. I suspect most of them have never tried it. It's a solution for accessing a database

Re: anyone with pgpool experience?

2006-04-07 Thread David Nicol
On 4/7/06, Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Fri, 2006-04-07 at 20:59 -0500, David Nicol wrote: > > Have you looked at DBD::Proxy and DBI::ProxyServer? > > That's not a pooling solution, and the performance is terrible. I'd > recommend just running fewer processes before resorting to

Re: anyone with pgpool experience?

2006-04-07 Thread Perrin Harkins
On Fri, 2006-04-07 at 20:59 -0500, David Nicol wrote: > Have you looked at DBD::Proxy and DBI::ProxyServer? That's not a pooling solution, and the performance is terrible. I'd recommend just running fewer processes before resorting to DBD::Proxy. - Perrin

Re: anyone with pgpool experience?

2006-04-07 Thread David Nicol
Have you looked at DBD::Proxy and DBI::ProxyServer? -- David L Nicol Should the bike shed have bunks? Or maybe cots?

Re: anyone with pgpool experience?

2006-04-07 Thread Jonathan Vanasco
On Apr 7, 2006, at 8:03 PM, Perrin Harkins wrote: Are you talking about http://pgpool.projects.postgresql.org/? It says right on the front page that it looks just like a normal server and you don't need to change anything. It also says it works with any language. - Perrin yep. thats

FYI: AppArmor - makes mod_perl/mod_php safer on linux

2006-04-07 Thread Stas Bekman
I was just at cansecwest (http://cansecwest.com/) here in Vancouver, and went to a talk by Crispin Cowan from Novell. He presented AppArmor which confines the application into a restricted mode (which files it can access and what it can and cannot do). Unlike jail/chroot AppArmor allows you to

Re: anyone with pgpool experience?

2006-04-07 Thread Perrin Harkins
On Fri, 2006-04-07 at 17:46 -0400, Jonathan Vanasco wrote: > can anyone here share some experience ? there's not much out there > in terms of mod_perl / pgpool integration (lots of stuff for other > languages) > > i'm not sure if i need to use it, if there's something better, or > even how

anyone with pgpool experience?

2006-04-07 Thread Jonathan Vanasco
well, i learned a new lesson today mysql uses threads pgsql uses shared memory and forking i'm looking at somewhere between 50 and 200 child processes ( depending on the memory i can allocate for apache) each with 3 db handles: ( log , read , write ) under mysql, this was