Re: [Newbie Q] Cleanest way to implement one logon per user?

2002-08-02 Thread Eric Cholet
--On Thursday, August 01, 2002 15:08:40 -0400 Baljit Sethi [EMAIL PROTECTED] wrote: Hello. I am hoping someone can point me in the right direction. What I want to do is limit client logons to one logon per username ie while a client has a session open, he/she cannot logon to the website

Re: [Newbie Q] Cleanest way to implement one logon per user?

2002-08-02 Thread Perrin Harkins
Eric Cholet wrote: Someone recently suggested to me the following solution, based on slightly modified sessions. It involves sending a cookie that contains a new ID with each response. The server stores that ID keyed on the user's login name. The next request from the client is expected to

1.99_05-dev (from CVS) + 1.27?

2002-08-02 Thread Oden Eriksson
Hi there. I'm new to this list so excuse me if I brake written or unwritten rules... I'm the apache2 (from CVS) packager for Mandrake Linux. Is there some voodoo magic trick I could do to enable both mod_perl bransches on the same machine? As it is now both apache versions can coexist, but

Re: 1.99_05-dev (from CVS) + 1.27?

2002-08-02 Thread Stas Bekman
Oden Eriksson wrote: Hi there. I'm new to this list so excuse me if I brake written or unwritten rules... I'm the apache2 (from CVS) packager for Mandrake Linux. Is there some voodoo magic trick I could do to enable both mod_perl bransches on the same machine? As it is now both

Re: 1.99_05-dev (from CVS) + 1.27?

2002-08-02 Thread Oden Eriksson
On Fridayen den 2 August 2002 13.37, Stas Bekman wrote: Oden Eriksson wrote: Hi there. I'm new to this list so excuse me if I brake written or unwritten rules... I'm the apache2 (from CVS) packager for Mandrake Linux. Is there some voodoo magic trick I could do to enable both

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Tatsuhiko Miyagawa
Apache::SessionManager has once been discussed here. AFAIK it's not on CPAN though .. http://mathforum.org/epigone/modperl/clarcloigol At Fri, 2 Aug 2002 16:59:43 +0200, Enrico Sorcinelli wrote: After some search on CPAN I haven't found a mod_perl module that does the same thing (right?).

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
There's the AxKit one, which does something pretty similar - AxKit::XSP::Session I think it's called. On Fri, 2 Aug 2002, Enrico Sorcinelli wrote: Hi all, I would like to propose a new Apache module before I send it off to CPAN. The namespace I've chosen is Apache::SessionManager. This

mod_perl/Apache has Alzheimers?

2002-08-02 Thread Colin Kuskie
I recently got a new server for our website, and installed RH7.2 on it and shipped it off to the colo. Since then, I've been getting lots of 404 server errors, so I added debugging code to the stacked content handler (a modified version of Apache::NavBar). What showed up in the error_log is

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Apache::SessionManager creates an object session (in Header parsing phase, but not obligatorily) and make it available to all other handlers transparently by putting in pnotes. Others handlers can retrieve session directly from pnotes or by calling the simple

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 23:56:18 +0900 Tatsuhiko Miyagawa [EMAIL PROTECTED] wrote: Apache::SessionManager has once been discussed here. AFAIK it's not on CPAN though .. http://mathforum.org/epigone/modperl/clarcloigol Hi Tatsuhiko, I'am in modperl list from beginnig of 2001. The thread you've

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 11:33:15 -0400 Perrin Harkins [EMAIL PROTECTED] wrote: Enrico Sorcinelli wrote: Apache::SessionManager creates an object session (in Header parsing phase, but not obligatorily) and make it available to all other handlers transparently by putting in pnotes. Others

[ANNOUNCE] StateMachine::Gestinanna 0.02

2002-08-02 Thread James G Smith
We now support HAS-A inheritance as well as ISA (sort of standard Perl) inheritance (see documentation for details). Now a state machine can contain other state machines without state namespace clashes. StateMachine::Gestinanna is a fairly simple state machine implementation that is driven by

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Some of the Apache::Auth* modules like Apache::AuthCookieURL are close, but I don't know of any that do the actual glue with Apache::Session. You might want to look at some of the existing modules and see if a merge of some kind is possible. This modules haven't

Re: No error log, no database

2002-08-02 Thread Joachim Zobel
At 09:03 02.08.2002 +0800, you wrote: Joachim Zobel wrote: Hi. Yesterday it happened that our error log reached 2Gb. Since ours is a linux box writing to it stopped. At the same time all database driven functionality stopped working (Plain DBI on Mysql, no Apache::DBI). The database was still

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 2 Aug 2002 16:31:04 +0100 (BST) Matt Sergeant [EMAIL PROTECTED] wrote: There's the AxKit one, which does something pretty similar - AxKit::XSP::Session I think it's called. It seems to be two modules that manage sessions over AxKit: Apache::AxKit::Plugin::Session (flexible

mod_perl program

2002-08-02 Thread masilva3
Hi list, I converted an cgi for mod_perl and sometimes it execute ok, in the others, it show the code of cgi in browser. Anybody know what occur ? thank, Mauricio

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 13:12:30 -0400 Perrin Harkins [EMAIL PROTECTED] wrote: Right, that's my point. Your module has overlap with them in terms of managing cookies and specifying locations, but adds the actual calls to Apache::Session. If I were doing something like this, I would probably

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Incidentally there is also a session manager module very similar to this in the Extropia modules. Sincerely, I don't know Extropia modules! You can find some documentation on them here:

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
On Friday, August 2, 2002, at 05:40 PM, Enrico Sorcinelli wrote: The only way that I know to have a session framework is to use mod_perl application server like AxKit, HTML::Mason or Apache::ASP ... Actually the AxKit one doesn't require AxKit - but it ships with an XSP taglib to access the

[RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
Hi all, I would like to propose a new Apache module before I send it off to CPAN. The namespace I've chosen is Apache::SessionManager. This module is a an Apache/mod_perl module and use Apache::Session to track user's sessions over HTTP request. Simply Apache::SessionManager help me with

Re: No error log, no database

2002-08-02 Thread Stas Bekman
Joachim Zobel wrote: At 09:03 02.08.2002 +0800, you wrote: Joachim Zobel wrote: Hi. Yesterday it happened that our error log reached 2Gb. Since ours is a linux box writing to it stopped. At the same time all database driven functionality stopped working (Plain DBI on Mysql, no

Re: mod_perl program

2002-08-02 Thread Stas Bekman
masilva3 wrote: Hi list, I converted an cgi for mod_perl and sometimes it execute ok, in the others, it show the code of cgi in browser. Anybody know what occur ? Did you use: Options +ExecCGI PerlSendHeader On __ Stas

Re: 1.99_05-dev (from CVS) + 1.27?

2002-08-02 Thread Stas Bekman
Oden Eriksson wrote: On Fridayen den 2 August 2002 13.37, Stas Bekman wrote: Oden Eriksson wrote: Hi there. I'm new to this list so excuse me if I brake written or unwritten rules... I'm the apache2 (from CVS) packager for Mandrake Linux. Is there some voodoo magic trick I could do to

Some wierd problem with mod_perl and Apache

2002-08-02 Thread pandit_tushar
I have been trying to debug this for some time, and am not sure what is happening or why it is happening. I have a simple gui that takes in old and new passwd and changes it. For this I have a change password button. Now the problem that I see is sometimes.when I enter the values in the

Some consideration about my Apache::SessionManager RFC

2002-08-02 Thread Enrico Sorcinelli
Hi all. First of all, sorry for my duplicate RFC post to this list. I've submitted today an RFC to mod_perl ml, as you've maybe seen. The main problem is that another old RFC with the same namespace has been submitted. However the RFC is out of date (October 2000!!!) and the module hasn't been