Re: mod_perl2 compiling error

2007-08-22 Thread Manoj Bist
In general to create a shared object the constituent object files should be PICable. Look for Makefile(s) which compile the individual source files. It would have a variable like 'CFLAGS'. Adding '-fPIC' to it should take care of it. On 8/21/07, jónJósef Bjarnason <[EMAIL PROTECTED]> wrote: > Wh

Re: mod_perl2 compiling error

2007-08-22 Thread jónJósef Bjarnason
Thanks. I had to compile Perl again, then mod_perl2. mod_perl works now, nothing else thoguh, Problems compiling DBI, DBD..etc. (MySql on a different machine) I´m getting therevery slowly. Thank you all for your time and help. Regards Jon Þann 8/22/2007, skrifaði "Manoj Bist" <[EMAIL

Disconnection from basic auth

2007-08-22 Thread Matthieu FEREYRE
I use a basic authentification (Apache2::Access) wich works fine, but my question is : How do I disconnect users ? The disconnection is done when they close their webbrowser (Apache will ask the login/password the next time they enter the website). But i would like to make a "disconnect" button.

Re: mod_perl2 compiling error

2007-08-22 Thread Manoj Bist
Hi Jon, Which OS platform are you working on? On platforms like ubuntu linux you can get precompile packages for all these modules. You just need to do: sudo apt-get install . An option like this may already be available on your development platform. -Manoj. On 8/22/07, jónJósef Bjarnason <[EM

Re: Disconnection from basic auth

2007-08-22 Thread Geoffrey Young
Matthieu FEREYRE wrote: > I use a basic authentification (Apache2::Access) wich works fine, but my > question is : > How do I disconnect users ? the short answer is that you can't. this is why you don't see popup authentication anywhere anymore :) try a simple module like Apache::AuthCookie:

Re: Disconnection from basic auth

2007-08-22 Thread William A. Rowe, Jr.
Geoffrey Young wrote: > > Matthieu FEREYRE wrote: >> I use a basic authentification (Apache2::Access) wich works fine, but my >> question is : >> How do I disconnect users ? > > the short answer is that you can't. this is why you don't see popup > authentication anywhere anymore :) > > "When y

Re: Disconnection from basic auth

2007-08-22 Thread Abhijit Hoskeri
On Thu, Aug 23, 2007 at 12:11:37AM -0500, William A. Rowe, Jr. wrote: > Geoffrey Young wrote: > > > > Matthieu FEREYRE wrote: > >> I use a basic authentification (Apache2::Access) wich works fine, but my > >> question is : > >> How do I disconnect users ? > > > > the short answer is that you can