WE: Apache::AuthCookie causing strange-"Use of uninitialized value."

2003-09-12 Thread B. Fongo
PROTECTED] Gesendet: Freitag, 12. September 2003 13:46 An: [EMAIL PROTECTED] Betreff: Apache::AuthCookie causing strange-"Use of uninitialized value." I use Apache::AuthCookie 3.04, which seems to be the latest version, under Apache/1.3.26 Ben-SSL/1.48 (Unix) Debian GNU/Linux PHP/4.1.2 mod

Re: Apache::AuthCookie causing strange "Use of uninitialized value."

2003-09-12 Thread Per Eric Rosén
Thanks for your response! > You have to subclass Apache::AuthCookie. This should be something like: > PerlFixupHandler Your::Sublass->recognize_user Well, I do. I just pasted the wrong text (from the 2002 mail). The actual configuration snippet is: AuthType TAS::Cookie

Re: Apache::AuthCookie causing strange-"Use of uninitialized value."

2003-09-12 Thread Thomas Klausner
Hi! On Fri, Sep 12, 2003 at 01:46:24PM +0200, Per Eric Ros?n wrote: > I use Apache::AuthCookie 3.04, which seems to be the latest version, under > Apache/1.3.26 Ben-SSL/1.48 (Unix) Debian GNU/Linux PHP/4.1.2 mod_perl/1.26. I'm using quite the same setup (without PHP and ssl) and do no

Apache::AuthCookie causing strange-"Use of uninitialized value."

2003-09-12 Thread Per Eric Rosén
I use Apache::AuthCookie 3.04, which seems to be the latest version, under Apache/1.3.26 Ben-SSL/1.48 (Unix) Debian GNU/Linux PHP/4.1.2 mod_perl/1.26. When I use "PerlFixupHandler Apache::AuthCookie->recognize_user", Apache writes "Use of uninitialized value." in errorl

Apache::AuthCookie 3.05 prerelease

2003-08-01 Thread Michael Schout
I have placed a pre-release of Apache::AuthCookie 3.05 which supports mod_perl version 2 (as well as mod_perl version 1) up on the sorceforge downloads. The API has changed slightly for mod_perl version 2 in order to avoid using Apache->request. See the README.modperl2 file in the distribut

Re: Installing Apache::AuthCookie

2003-06-11 Thread Jay Strauss
dnesday, June 11, 2003 11:26 AM Subject: Re: Installing Apache::AuthCookie > On Tue, 10 Jun 2003, Jay Strauss wrote: > > > I'm running into a problem during the make test while installing the current > > version of Apache::AuthCookie. I'm not sure where to go. I looked

Re: Installing Apache::AuthCookie

2003-06-11 Thread Michael Schout
On Tue, 10 Jun 2003, Jay Strauss wrote: > I'm running into a problem during the make test while installing the current > version of Apache::AuthCookie. I'm not sure where to go. I looked at tests > 10 and 15: Hrm. You are supposed to get "ok" for all of the tests.

Installing Apache::AuthCookie

2003-06-10 Thread Jay Strauss
Hi, I'm running into a problem during the make test while installing the current version of Apache::AuthCookie. I'm not sure where to go. I looked at tests 10 and 15: Test 10 is supposed to fail: and it did Test 15 is supposed to be FORBIDDEN Should I go ahead and do "make in

AuthCookie with a modified version of Authticket unable to delete the cookie (logout)

2003-03-04 Thread Hill, Ronald
Hi All, I am having problems using Authcookie 3.0 and a modified version of AuthTicket 0.31 The problem is that I am not able to log off (delete the cookie). This is frustrating :-( I have everything else working correctly. Here is what I have done: In my http.conf file I have defined the

RE: Apache::AuthCookie and what's required

2003-01-07 Thread Gareth Kirwan
ire line after the word hamster. The method should return OK on success and FORBIDDEN on failure. Here you'll say that it'll call the method hamster! What do you think of that ? Typo ? > it's the other way round: > > if you say in httpd.conf > require species hamste

Re: Apache::AuthCookie and what's required

2003-01-07 Thread domm
Hi! On Tue, Jan 07, 2003 at 11:20:25AM +0100, [EMAIL PROTECTED] wrote: > From perldoc Apache::AuthCookie: > > o authorize() > This will step through the "require" directives you've > given for protected documents and make sure the user > passes must

Re: Apache::AuthCookie and what's required

2003-01-07 Thread domm
Hi! On Tue, Jan 07, 2003 at 09:30:32AM -, Gareth Kirwan wrote: > Hence I'm thinking that I'll need something using the model of require > species hamster ( from Apache::AuthCookie documentation ) > However I can't find out the significance of the word species

Apache::AuthCookie and what's required

2003-01-07 Thread Gareth Kirwan
Title: Gareth Stationery Morning all,   Diving straight in... This is my first time using Apache::AuthCookie for Authorization and Authentication ... but when I've been pencilling my plan out I'm already afraid I might need to go a different route - so I thought I'd post he

AuthCookie & Frames

2002-10-30 Thread FFabrizio
I'm having a slight problem using AuthCookie in our app because our app (unfortunately) is a frames-based interface. To summarize the problem and efforts I've made to date, my goal is to be able to display a message on the login page telling them why they are seeing the login page. O

Re: AuthCookie questions

2002-10-22 Thread Peter Bi
check here http://modperl.home.att.net Peter - Original Message - From: "Christian Gilmore" <[EMAIL PROTECTED]> To: "'Michael Schout'" <[EMAIL PROTECTED]> Cc: "'Modperl Mailing List (E-mail)'" <[EMAIL PROTECTED]> Sent:

Re: AuthCookie questions

2002-10-22 Thread Michael Schout
Christian Gilmore wrote: 1. Read data from existing cookie. 1a. Redirect if cookie is non-existent. 2. Accept or reject cookie. 2a. If rejected, redirect. 2b. If accepted, populate environment and return. Sounds to me like you really dont need AuthCookie at all. You could just as

Re: protecting and entire site with AuthCookie and its derivatives?

2002-10-22 Thread Michael Schout
George Valpak wrote: Is it possible to protect an entire site, from DocumentRoot, using AuthCookie? Yes. I've never done this myself personally, but people have reported success doing this. The trick is to configure apache so that your LOGIN handler is not inside the authentication

Re: AuthCookie questions

2002-10-22 Thread Perrin Harkins
Christian Gilmore wrote: Hi, Michael. Let me try again with more specifics. I'm required to mash my service into another organization's authentication scheme, ditching my own secure methods for their cross-domain unencrypted, unsigned cookie. [...] On a side note, if anyone finds the proposed de

RE: AuthCookie questions

2002-10-22 Thread Christian Gilmore
ilto:mschout@;gkg.net] > Sent: Tuesday, October 22, 2002 2:00 PM > To: Christian Gilmore > Cc: Modperl Mailing List (E-mail) > Subject: Re: AuthCookie questions > > > Christian Gilmore wrote: > > > 4. I cannot modify the cookie and should not send > additional cook

protecting and entire site with AuthCookie and its derivatives?

2002-10-22 Thread George Valpak
Is it possible to protect an entire site, from DocumentRoot, using AuthCookie? I have tried to configured it today, using my subclass of AuthCookieDBI: - If I have all of the protected files in blocks under Document root, all is fine. - If I try to protect , then it appears that /login.pl is

Re: AuthCookie questions

2002-10-22 Thread Michael Schout
Christian Gilmore wrote: 4. I cannot modify the cookie and should not send additional cookies. [snip] about 4. Can I use an unmodified AuthCookie to ensure that whatever format the inbound cookie is in is sufficient and will not need to be modified or supplemented? I believe the answer is

AuthCookie questions

2002-10-22 Thread Christian Gilmore
I'm considering use of Apache::AuthCookie in my environment. Here's the problem I need to solve. I'm not certain if AuthCookie will, without modification, support my needs. 1. Authentication cookies are doled out from a centralized server that is out of my control and cannot

Re: Apache::AuthCookie in mod_perl 1.99_5

2002-10-21 Thread Michael Schout
Any comments? AuthCookie has not yet been ported to mod_perl 2.0. Mike

Apache::AuthCookie in mod_perl 1.99_5

2002-10-17 Thread Antti Haapala
I recently started testing experimental mod_perl 2.0, and almost immediately run into following problem: Apache::AuthCookie (3.04) wants to set auth_type of connection/request/whatever, but there no longer exists any method in Apache::blahblah that allows me to set the auth_type/auth_name of

Apache::AuthCookie causing "Use of uninitialized value." in errorlog...

2002-08-27 Thread simran
Hi All, I have written some code that seems to work fine with no perl warnings in the error log... and i was using it quite successfully using Apache::AuthCookie under mod_perl. However, when i put this in my apache configuration file: PerlFixupHandler Apache::AuthCookie->recognize_user

Apache::AuthCookie weirdness

2002-07-11 Thread Ken Miller
I'm experiencing a really strange problem with Apache::AuthCookie and Internet Explorer. Every now and then when I try and access a protected URL, I never see the login page. If I close the window, and open a new one, it works just fine. This is the case even if there are other windows

Re: (browser bug) Internet Explorer AuthCookie and others

2002-06-23 Thread Richard Clarke
I am an idiot. Please ignore the previous post. Richard :( - Original Message - From: "Richard Clarke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 2:00 AM Subject: (browser bug) Internet Explorer AuthCookie and others > List, >

(browser bug) Internet Explorer AuthCookie and others

2002-06-23 Thread Richard Clarke
List, I just wanted to post to see if anyone could help me understand this (probably internet explorer) based problem. In the past I have used my own custom authcookie type modules. Sometimes I experience problems where internet explorer sends back a cookie with the incorrect hash (maybe an

[ANNOUNCE] Apache-AuthCookie 3.02

2002-06-20 Thread Michael J Schout
The uploaded file Apache-AuthCookie-3.02.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MS/MSCHOUT/Apache-AuthCookie-3.02.tar.gz size: 29015 bytes md5: 107408d13a43cfbe2d2eccce40adffbe Changes: --- Version

Re: location of LoginScript in Apache::AuthCookie* modules

2002-06-14 Thread Vivek Khera
> "ED" == Eric Doutreleau <[EMAIL PROTECTED]> writes: ED> Right now i would like to make user authenticate throug a SSL ED> page. ED> In order to do that i modify the configuration script to use ED> PerlSetVar WhatEverLoginScript https://corbeau/perl/login.pl Well, in order to be able to ge

location of LoginScript in Apache::AuthCookie* modules

2002-06-14 Thread Eric Doutreleau
Hi I 'm trying to use the Apache::AuthCoookieLDAP module to authenticate my web users using my ldap server. With the defaut configuration it works quite well. Right now i would like to make user authenticate throug a SSL page. In order to do that i modify the configuration script to use PerlS

Re: Getting AuthCookie to work on W2K

2002-05-31 Thread Randy Kobes
On Thu, 30 May 2002, Hill, Ronald wrote: > Hello All, > > I am trying to setup the Apache-AuthCookie module and have run into a > problem. Every time > I try to login it just returns my back to the login screen. I can't get past > the login screen!! > (I have tried wit

Getting AuthCookie to work on W2K

2002-05-30 Thread Hill, Ronald
Hello All, I am trying to setup the Apache-AuthCookie module and have run into a problem. Every time I try to login it just returns my back to the login screen. I can't get past the login screen!! (I have tried with Netscape and IE). Next I wrote a perl script to check things out. (same

Re: AuthCookie help

2002-05-15 Thread Jian Zhen
chout ([EMAIL PROTECTED]) [020515 09:11]: > Jian Zhen wrote: > > Hi all, > > > > I have been scratching my head for a day now trying to figure > > out how to make AuthCookie work. > > I note that you have > PerlSetVar WhatEverSecure 1 > > in your config. I

Re: AuthCookie help

2002-05-15 Thread Michael Schout
Jian Zhen wrote: > Hi all, > > I have been scratching my head for a day now trying to figure > out how to make AuthCookie work. I note that you have PerlSetVar WhatEverSecure 1 in your config. If that is the case, make sure you are accessing the from using HTTPS, not HTTP. Thi

Re: Problems with Apache-AuthCookie mod_perl 1.99

2002-05-06 Thread Peter Rothermel
ith method handlers ala 2.0 I'll forward the code to you. -pete Michael J Schout wrote: > On Thu, 2 May 2002, Per Einar Ellefsen wrote: > > > At 21:25 02.05.2002, Peter Rothermel wrote: > > >greetings, > > > > > >Has anybody had any luck getting Apache-A

Re: Problems with Apache-AuthCookie mod_perl 1.99

2002-05-03 Thread Michael J Schout
On Thu, 2 May 2002, Per Einar Ellefsen wrote: > At 21:25 02.05.2002, Peter Rothermel wrote: > >greetings, > > > >Has anybody had any luck getting Apache-AuthCookie going > >on an Apache 2.0 / mod_perl 1.99 setup? The first thing that > >I hit was $r->connecti

Re: Problems with Apache-AuthCookie mod_perl 1.99

2002-05-02 Thread Per Einar Ellefsen
At 21:25 02.05.2002, Peter Rothermel wrote: >greetings, > >Has anybody had any luck getting Apache-AuthCookie going >on an Apache 2.0 / mod_perl 1.99 setup? The first thing that >I hit was $r->connection->user is deprecated. I've changed these >to $r->user. Th

Problems with Apache-AuthCookie mod_perl 1.99

2002-05-02 Thread Peter Rothermel
greetings, Has anybody had any luck getting Apache-AuthCookie going on an Apache 2.0 / mod_perl 1.99 setup? The first thing that I hit was $r->connection->user is deprecated. I've changed these to $r->user. The next hurdle is that the status code REDIRECT does not seen to be Apa

Re: different type of login with Apache::AuthCookie?

2002-04-29 Thread Fran Fabrizio
Have that proactive signin area forward to a page behind Apache::AuthCookie protection and then have that page forward them right back to where they were? If you don't have frames that would be pretty easy. -Fran Ken Miller wrote: > We currently use Apache::AuthCookie for authen

different type of login with Apache::AuthCookie?

2002-04-29 Thread Ken Miller
We currently use Apache::AuthCookie for authentication/authorization, and it works great. However, we want to make a change to how the login works. In addition to having Apache::AuthCookie intercept requests for URL's that require auth/authz, we would like to provide a signon area on the

Re: framesets/AuthCookie question

2002-04-23 Thread Michael Schout
On Mon, 22 Apr 2002, Fran Fabrizio wrote: > It seems that even if AuthCookie returns a FORBIDDEN with a custom_error > page set, the $r->notes() don't propagate. Does apache consider the > display of the custom_response page to be a completely new request? Its a subrequest, s

Re: framesets/AuthCookie question

2002-04-22 Thread Fran Fabrizio
Followup from last week: > I'm using AuthCookie and as some of you know, if it determines your > session to be invalid it redirects to a login page instead by way of a > FORBIDDEN response coupled with a custom_response error page. [snip] >...I then thought it'd be

RE: framesets/AuthCookie question

2002-04-21 Thread Jeff Armstrong
n Fabrizio; [EMAIL PROTECTED] Subject: Re: framesets/AuthCookie question On Wed, 17 Apr 2002, Peter Bi wrote: > Fran: > > You may need to 1) add a few lines of code in AuthCookie to make your error > code aware to other methods, and 2) have a dynamic login page that can > interpret the

Re: framesets/AuthCookie question

2002-04-19 Thread Peter Bi
<[EMAIL PROTECTED]> Cc: "Fran Fabrizio" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 9:44 AM Subject: Re: framesets/AuthCookie question > On Wed, 17 Apr 2002, Peter Bi wrote: > > > Fran: > > > > You may need to 1) add a

Re: framesets/AuthCookie question

2002-04-19 Thread Michael Schout
On Wed, 17 Apr 2002, Peter Bi wrote: > Fran: > > You may need to 1) add a few lines of code in AuthCookie to make your error > code aware to other methods, and 2) have a dynamic login page that can > interpret the code. Alternatively, you may try AccessCookie I posted. :-) The

RE: framesets/AuthCookie question

2002-04-18 Thread Jonathan M. Hollin
>Is there a solution to breaking out of the frameset >AND propagating the reason for the logout to the /real/login page? > >I'd appreciate and and all ideas. Thanks! Well, if you're not against using a little JavaScript, the following code within your ... tags will not allow the page it is us

RE: framesets/AuthCookie question

2002-04-17 Thread Jeff
April 2002 23:01 To: [EMAIL PROTECTED] Subject: framesets/AuthCookie question I'm using AuthCookie and as some of you know, if it determines your session to be invalid it redirects to a login page instead by way of a FORBIDDEN response coupled with a custom error page. My app has a fram

Re: framesets/AuthCookie question

2002-04-17 Thread Peter Bi
Fran: You may need to 1) add a few lines of code in AuthCookie to make your error code aware to other methods, and 2) have a dynamic login page that can interpret the code. Alternatively, you may try AccessCookie I posted. :-) In AccessCookie, you simply "return $error" from au

framesets/AuthCookie question

2002-04-17 Thread Fran Fabrizio
I'm using AuthCookie and as some of you know, if it determines your session to be invalid it redirects to a login page instead by way of a FORBIDDEN response coupled with a custom error page. My app has a frameset (navigation on the left, and two data frames on the right). I know the

Re: AuthCookie login ?

2002-04-09 Thread Fran Fabrizio
n cheating and editing that module directly but I eventually will spin my own when I get more time. It works very nicely now and I've tied the Apache::Session creation and destruction to AuthCookie logins and logouts, and I'm using the username as my Apache::Session key. All very clean n

Re: AuthCookie login ?

2002-04-09 Thread Michael Schout
authen_cred() after you have checked the credentials, but before returning the username. authen_cred() is only called when you submit the login form. Regards, Michael Schout (AuthCookie maintainer).

Re: AuthCookie login ?

2002-04-05 Thread Geoffrey Young
s up to you to determine if the user is valid. authen_ses_key() then checks whether the cookie itself (containing the session key) is valid. at least this is how I remember it working - it's been a while since I've worked with AuthCookie. --Geoff

AuthCookie login ?

2002-04-05 Thread Fran Fabrizio
Is there a hook in AuthCookie to allow me to run some code only right after successful login? The model doesn't seem to allow for this. The way it seems to work is you attempt to log in, if it doesn't find a valid cookie, it displays the login form again. You submit that and it

Re: Apache::AuthCookie not set cookie really

2002-01-30 Thread Michael Schout
> variable path=/agenda was omitted. Explorer 6.0 doesn't set cookie > without path attribute. > I think, it's a good idea to make WhatEverPath required option in > config. Hrm. I was not aware of that. Thanks for bringing it to my attention. I have changed AuthCookie in

Re: Apache::AuthCookie not set cookie really

2002-01-29 Thread BeerBong
Skipped > Actually, as my application should be > 1. simple maintained, > 2. maximum count of users - 100 (employees in small software > development company) > 3. simultaneous login - 5-7 maximum > 4. team managers work with money (project budjet, employee's payment > per hour and etc) > 5. good

Re: Apache::AuthCookie not set cookie really

2002-01-29 Thread BeerBong
gt; I dont know why cookie is not set. > > I'd suspect something isnt right with your configuration. Have you > tried turning on "warn me before accepting cookies" on your browser? > Sometimes that helps me verify that the cookies are actually making it > to the browser.

Re: Apache::AuthCookie not set cookie really

2002-01-29 Thread Michael Schout
okies" on your browser? Sometimes that helps me verify that the cookies are actually making it to the browser. What your trying to do looks to me like exactly the sort of thing AuthCookie can do. Unless I am misunderstanding your problem I dont see an AuthCookie limitation here. Please expl

Re: AuthSession Manager [was] Apache::AuthCookie not set cookie really

2002-01-28 Thread Perrin Harkins
ookie (not just an ID), you have to do some kind of lookup on the server-side for every request if they need session information. It may not be to a database though. If you know that each user will stay on a single server, you can use a disk-based technique like Cache::FileCache or Apache::Session:

AuthSession Manager [was] Apache::AuthCookie not set cookie really

2002-01-28 Thread BeerBong
> Hello all! > > Odd thing - all should works fine. > I use Apache::AuthCookie for my project Agenda. > I wrote descendant - Apache::AuthCookieAgenda > > package Apache::AuthCookieAgenda; > > use strict; > use Apac

Apache::AuthCookie not set cookie really

2002-01-28 Thread BeerBong
Hello all! Odd thing - all should works fine. I use Apache::AuthCookie for my project Agenda. I wrote descendant - Apache::AuthCookieAgenda package Apache::AuthCookieAgenda; use strict; use Apache; use Apache::Constants qw(:common); use Apache

Re: Problems with cookies in Apache::AuthCookie

2002-01-07 Thread Øyvind Gjerstad
Charles Day wrote: > key line must come first. I used Portal instead of your PrisInformasjon, > but you get the idea. I tried that, but it made no difference. I must be doing something wrong. I have now tried with a very similar setup on my linux box with apache 1.3.22, mod_perl 1.26 and all

Re: Problems with cookies in Apache::AuthCookie

2002-01-04 Thread Geoffrey Young
:2002-01-04-14-23-46:2002-01-05-14 > >>-23-46:54f7553ccb96d3af70abe449f053ee3d > >>[Fri Jan 4 14:23:46 2002] [error] auth_type Apache::AuthCookieDBI > >> > > > > the AuthType setting should be the name of the class that inherits > > from Apache::AuthCookie (or Apache::Au

Problems with cookies in Apache::AuthCookie

2002-01-04 Thread Øyvind Gjerstad
I'm trying to get Apache::AuthCookie and Apache::AuthCookieDBI to work. However it seems like I can't set any cookies. I have cookies enabled in my browser (with warnings), but I can't read the cookie after the redirect from the login-script. I'm pretty sure the cookie i

Problem with Apache::AuthCookie

2001-12-09 Thread Steven Lembark
Getting multiple header entries from AuthCookie returned to the client. This happens even if I stub out the authen_cred and authen_ses_key to return "foo". Other thing I notice after adding logging to the authentication and authorization sub's is that the $r->conne

Re: Problem with Apache::AuthCookie-3.00

2001-12-07 Thread David Young
Well, I didn't see any other replies to this... so I'll comment: I don't get what you are saying here... Could you rephrase it and clarify if you are talking about AuthTicket or AuthCookie? > From: Steven Lembark <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] >

Problem with Apache::AuthCookie-3.00

2001-12-06 Thread Steven Lembark
binations of sending the headers and form with no luck. Ideally Apache::AuthCookie should only require the login_form, authen_cred and authen_ses_key sub's to function with the addition of login_screen to use a location rather rather than #!-ed code for the login form. Does anyone know of a s

Re: Apache::AuthCookie login faliure reason

2001-11-27 Thread Vivek Khera
>>>>> "CH" == Carolyn Hicks <[EMAIL PROTECTED]> writes: CH> this to something like 'InvalidLogin' in authen_cred, you can then check CH> for this and set the reason via $r->subprocess_env in AuthCookieHandler-> authen_ses_key, before A

Re: Apache::AuthCookie login faliure reason

2001-11-23 Thread clayton cottingham
Bill Moseley wrote: > > At 04:09 PM 11/23/2001 +1100, simran wrote: > >>>> > Hi All, > > I am having some trouble getting Apache::AuthCookie (version 3 which i > believe is the latest version) to do what want: > > What i want is: > > * To be

Re: Apache::AuthCookie login faliure reason

2001-11-23 Thread Bill Moseley
At 04:09 PM 11/23/2001 +1100, simran wrote: >>>> Hi All, I am having some trouble getting Apache::AuthCookie (version 3 which i believe is the latest version) to do what want: What i want is: * To be able to give the user a reson if login fails - eg reason: * "

Re: Apache::AuthCookie login faliure reason

2001-11-23 Thread Steve van der Burg
>I am having some trouble getting Apache::AuthCookie (version 3 which i >believe is the latest version) to do what want: >What i want is: >* To be able to give the user a reson if login fails > - eg reason: * "No such username" >* "Your pa

Re: Apache::AuthCookie login faliure reason

2001-11-22 Thread Carolyn Hicks
gins, but your mention of setting another cookie gave me the idea of using the session key of the authcookie itself. If you set this to something like 'InvalidLogin' in authen_cred, you can then check for this and set the reason via $r->subprocess_env in AuthCookieHandler->authen_ses_k

RE: Apache::AuthCookie login faliure reason

2001-11-22 Thread simran
mran. -Original Message- From: clayton [mailto:[EMAIL PROTECTED]] Sent: Friday, 23 November 2001 4:26 PM To: simran Cc: [EMAIL PROTECTED] Subject: Re: Apache::AuthCookie login faliure reason yes its pretty easy one to do, btw: i first found out how by investigating the Apache::AuthCook

Re: Apache::AuthCookie login faliure reason

2001-11-22 Thread clayton
yes its pretty easy one to do, btw: i first found out how by investigating the Apache::AuthCookie code here is the meat of the matter send something like this to the $r->subprocess_env {the name im using is the same as authcookie's with the 2 added} $r->subprocess_env('A

Apache::AuthCookie login faliure reason

2001-11-22 Thread simran
Hi All,   I am having some trouble getting Apache::AuthCookie (version 3 which i believe is the latest version) to do what want:   What i want is:   * To be able to give the user a reson if login fails   - eg reason: * "No such username"     * "Yo

authcookie segmentation faults

2001-10-12 Thread David Young
I had users complaining of intermittent "document contains no data" errors when logging in (using AuthCookie). I wrote a script to repeatedly POST to the AuthCookie LOGIN method. I am finding that after 15,000 POSTs or so, I start getting a lot of segfaults (child pid 12494 e

Re: Apache::AuthCookie

2001-09-28 Thread clayton cottingham
Rob Bloodgood wrote: > > > > Does anyone know where I can find documentation to install > > > and configure > > > Apache::AuthCookie? The docs that come with it are thin and > > > do not provide > > > much information. > > > > you&#

RE: Apache::AuthCookie

2001-09-28 Thread Rob Bloodgood
> > Does anyone know where I can find documentation to install > > and configure > > Apache::AuthCookie? The docs that come with it are thin and > > do not provide > > much information. > > you're kidding, right? > > [geoff@jib Apache-AuthCookie-2

RE: Apache::AuthCookie

2001-09-28 Thread Geoffrey Young
> -Original Message- > From: Recendez, Ray [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 28, 2001 1:45 PM > To: '[EMAIL PROTECTED]' > Subject: Apache::AuthCookie > > > Does anyone know where I can find documentation to install > and con

Apache::AuthCookie

2001-09-28 Thread Recendez, Ray
Does anyone know where I can find documentation to install and configure Apache::AuthCookie? The docs that come with it are thin and do not provide much information. Thanks, Ray

mailing list responses (was Re: FW: AuthCookie Woes!)

2001-09-04 Thread Perrin Harkins
> Further...no one needs to know or care about PerlMod around hereI posted a > question two weeks ago about Apache::AuthDBI...and no one responded. > > So looks like you are on your own.. Not true; people do know and care about Apache:: modules around here. There are lots of reasons why you

Re: FW: FW: AuthCookie Woes!

2001-09-04 Thread Bill Moseley
At 07:59 AM 9/4/2001 -0400, Chris Lavin wrote: >Im sorry I thought that everyone would be familiar with Appach::AuthCookie Perhaps if you posted a tiny httpd.conf and the url of where it's running. And I'd tend to use telnet for debugging and write log messages in Apache::AuthCoo

FW: FW: AuthCookie Woes!

2001-09-04 Thread Chris Lavin
Im sorry I thought that everyone would be familiar with Appach::AuthCookie and I am usin g Apache Auth::Ticket. Thanx -Original Message- From: Peter J. Schoenster [mailto:[EMAIL PROTECTED]] Sent: Monday, September 03, 2001 11:01 PM To: [EMAIL PROTECTED] Subject: Re: FW: AuthCookie Woes

Re: FW: AuthCookie Woes!

2001-09-04 Thread Medi Montaseri
is frustrating! > > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Dzuy Nguyen > Sent: Monday, September 03, 2001 9:00 PM > To: [EMAIL PROTECTED] > Subject: Re: AuthCookie Woes! > > > Chris Lavin wrote: > >

Re: FW: AuthCookie Woes!

2001-09-04 Thread Dave Hodgkinson
"Chris Lavin" <[EMAIL PROTECTED]> writes: > I have used a sniffer and no cookie is being sent! Man this is frustrating! Are you positive the cookie domain is being set properly? -- Dave Hodgkinson, http://www.hodgkinson.org Editor-in-chief, The Highway Star

FW: AuthCookie Woes!

2001-09-03 Thread Chris Lavin
I have used a sniffer and no cookie is being sent! Man this is frustrating! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Dzuy Nguyen Sent: Monday, September 03, 2001 9:00 PM To: [EMAIL PROTECTED] Subject: Re: AuthCookie Woes! Chris Lavin wrote

AuthCookie Woes!

2001-09-03 Thread Chris Lavin
I need help with Apache::Authcookie It does not seem to be sending the cookie to the Browser. For those of you familiar with AuthCookie PLEASE Help. I have heard of oddities with IE so I tried Netscape and no differnce. AuthXCookie uses error_header_out to send cookie..     Thanx Chris

RE: Apache::AuthCookie and ServerSide Include not working

2001-08-21 Thread Chad Phillips
Never mind. A few more eyes showed me that my virtual host was not set up right for SSIs -Original Message- From: Chad Phillips [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 12:13 PM To: mod_perl List Subject: Apache::AuthCookie and ServerSide Include not working Hello, I

Apache::AuthCookie and ServerSide Include not working

2001-08-21 Thread Chad Phillips
Hello, I have apache 1.3.19 running on a Mandrake 8.0 box. I am using authcookie for authentication. I can't seem to get any SSIs to run now. I have another plain install of apache on the same box and SSIs work fine. The only difference I have seen between the two installs is AuthCookie.

Re: AuthCookie access denied messages

2001-08-20 Thread David Young
Agreed, however I'd like to at least say "The username and/or password you entered was not recognized". > From: Ged Haywood <[EMAIL PROTECTED]> > Date: Tue, 21 Aug 2001 00:36:33 +0100 (BST) > To: David Young <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED]

Re: AuthCookie access denied messages

2001-08-20 Thread Ged Haywood
Hi there, On Mon, 20 Aug 2001, David Young wrote: > Before I tackle this myself, has anyone added functionality to AuthCookie so > that it will report *why* a user is being asked to login? Currently, if a > user enters in a wrong username or password, they just get redirected back

Re: AuthCookie access denied messages

2001-08-20 Thread Steve van der Burg
>you can set these in yourself by overwriting >the AuthCookie Response method > >you should catch these in your >own subs and send back messages > >for instance >in my Auth.pm authen_ses_key sub [ snip ] In addition to that, what I found confusing was actually gett

Re: AuthCookie access denied messages

2001-08-20 Thread clayton cottingham
David Young wrote: > > Before I tackle this myself, has anyone added functionality to AuthCookie so > that it will report *why* a user is being asked to login? Currently, if a > user enters in a wrong username or password, they just get redirected back > to the login form with

Re: AuthCookie access denied messages

2001-08-20 Thread Toni Andjelkovic
David Young wrote on Mon, Aug 20 2001 (12:36:19 -0400): > Before I tackle this myself, has anyone added functionality to AuthCookie so > that it will report *why* a user is being asked to login? Currently, if a perldoc Apache::AuthCookie /AuthCookieReason cu, -- Toni Andjelkovic &

AuthCookie access denied messages

2001-08-20 Thread David Young
Before I tackle this myself, has anyone added functionality to AuthCookie so that it will report *why* a user is being asked to login? Currently, if a user enters in a wrong username or password, they just get redirected back to the login form with no explanation. Thanks, --David

Re: AuthCookie question

2001-07-06 Thread darren chamberlain
Chad Phillips <[EMAIL PROTECTED]> said something to this effect on 07/06/2001: > Hi, > I have set up Authcookie. I modified the sample scripts for my sight. > Everything works except when the wrong password is entered. When an invalid > user/password is entered, instead of

AuthCookie question

2001-07-06 Thread Chad Phillips
Hi, I have set up Authcookie. I modified the sample scripts for my sight. Everything works except when the wrong password is entered. When an invalid user/password is entered, instead of re-displaying the login page, I get a 302 Found error to url http://myhost/LOGIN Any ideas on what I may

Re: AuthCookie expansion

2001-07-02 Thread Vivek Khera
>>>>> "RB" == Rich Buckley <[EMAIL PROTECTED]> writes: RB> credentials have been verified. What I would like to do is redirect RB> to a home page looked up from the database. The database lookup is RB> trivial but where and how is the best place to do t

AuthCookie expansion

2001-07-02 Thread Rich Buckley
Title: AuthCookie expansion modperlers, We have been using AuthCookie (very successfully) for web site login with user accounts held in an Oracle DB. With expansion, what we would now like to do is have one login screen, then, depending on a user attribute's, redirect to a diff

CPAN Apache-AuthCookie-3.00.tar.gz (fwd)

2001-06-01 Thread Michael J Schout
The uploaded file Apache-AuthCookie-3.00.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MS/MSCHOUT/Apache-AuthCookie-3.00.tar.gz size: 25399 bytes md5: 5c94e0ced442653f229b39f4f1fcfe8c Changes since v2.011: - New maintiner: Michael Schout <[EMAIL PROTECTED]> - chan

  1   2   >