Re: mod_perl newbie gotcha

2007-11-22 Thread Gunnar Hjalmarsson
[EMAIL PROTECTED] wrote: On Nov 20, 11:52 pm, [EMAIL PROTECTED] (Gunnar Hjalmarsson) wrote: [EMAIL PROTECTED] wrote: The problem is that after the first successful send/receive, all subsequent executions contain the same initial data: the parameters never get reset with 'newer' data. I wasn't

Re: mod_perl newbie gotcha

2007-11-22 Thread evil...@gmail.com
On Nov 20, 11:52 pm, [EMAIL PROTECTED] (Gunnar Hjalmarsson) wrote: > [EMAIL PROTECTED] wrote: > > The problem is that after the first successful send/receive, all > > subsequent executions contain the same initial data: the parameters > > never get reset with 'newer' data. > > I wasn't able to repr

Re: mod_perl newbie gotcha

2007-11-20 Thread Gunnar Hjalmarsson
[EMAIL PROTECTED] wrote: The problem is that after the first successful send/receive, all subsequent executions contain the same initial data: the parameters never get reset with 'newer' data. I wasn't able to reproduce the described problem. -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/

Re: mod_perl questions

2004-12-18 Thread Sean Davis
Greg, You will probably need to read some documentation: http://perl.apache.org/docs/index.html http://perl.apache.org/docs/1.0/guide/porting.html Note that last one is mod_perl-based, not mod_perl2, but it is a reasonable introduction. Also, the mod_perl book is available online: http://modperl

RE: mod_perl doesn't seem to work

2003-07-24 Thread Bob Showalter
Kates Gasis wrote: > Hello Perl world. > > I'm using ActiveState Perl 5.6.1 and Apache 1.3.27. Everything used > to work fine until I installed mod_perl. Now my perl scripts doesn't > work anymore. Whenever I access my scripts, my browser is giving me > an option to save or open the file. If I cho

Re: mod_perl books, cpan modules. (fwd)

2003-03-23 Thread Lincoln Stein
Someday I will write a new edition. The problem is that almost everything has changed and so it is basically a new book. Lincoln > > > -- Forwarded message -- > Date: 20 Mar 2003 09:33:56 - > From: entius <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: mod_perl books,

Re: mod_perl books

2003-03-22 Thread Iain 'Spoon' Truskett
* entius ([EMAIL PROTECTED]) [21 Mar 2003 23:26]: > I want to learn mod_perl and there're two books who talk > about this. Now a third has arrives and it's talking > about 2.0 mod_perl but i am a Lincoln Stein fan and i want > the "Writing Apache Modules with Perl and C". But the last > edition is

RE: mod_perl books, cpan modules.

2003-03-21 Thread wiggins
On 20 Mar 2003 09:33:56 -, entius <[EMAIL PROTECTED]> wrote: > I want to learn mod_perl and there're two books who talk about this. > Now a third has arrives and it's talking about 2.0 mod_perl but i am a > Lincoln Stein fan and i want the "Wr

Re: Mod_perl

2002-03-22 Thread zentara
On Fri, 22 Mar 2002 01:00:48 -0800 (PST), [EMAIL PROTECTED] (Rob Roudebush) wrote: > > I have created basic forms using CGI.pm and now I'm interested in using Apache >mod_perl to speed things up and use associated apache modules. Question: Can I >continue to program using regular CGI, using pa

Re: Mod_perl

2002-03-22 Thread fliptop
Rob Roudebush wrote: > I have created basic forms using CGI.pm and now I'm interested in using Apache >mod_perl to speed things up and use associated apache modules. Question: Can I >continue to program using regular CGI, using params etc. or does mod_perl require me >to program differently?

Re: mod_perl and nntp.perl.org

2001-10-30 Thread Gunther Birznieks
At 11:58 AM 10/31/2001, Scott R. Godin wrote: >In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Ask Bjoern Hansen) wrote: > > > [EMAIL PROTECTED] (Scott R. Godin) writes: > > > > > aside from the mailing lists @apache.org I haven't seen much else, and > > > having a fair preference for a usen

Re: mod_perl and nntp.perl.org

2001-10-30 Thread Scott R. Godin
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Ask Bjoern Hansen) wrote: > [EMAIL PROTECTED] (Scott R. Godin) writes: > > > aside from the mailing lists @apache.org I haven't seen much else, and > > having a fair preference for a usenet-style discussion as opposed to a > > mailing list fo

Re: mod_perl and nntp.perl.org

2001-10-30 Thread Ask Bjoern Hansen
[EMAIL PROTECTED] (Scott R. Godin) writes: > aside from the mailing lists @apache.org I haven't seen much else, and > having a fair preference for a usenet-style discussion as opposed to a > mailing list format, it might be useful to bring such onboard here at > nntp.perl.org... I don't think

RE: mod_perl

2001-10-29 Thread Gunther Birznieks
At 12:47 AM 10/30/2001, Bob Showalter wrote: > > -Original Message- > > From: John Griessen [mailto:[EMAIL PROTECTED]] > > Sent: Monday, October 29, 2001 11:39 AM > > To: David Kirol > > Cc: [EMAIL PROTECTED] > > Subject: Re: mod_perl > > > >

RE: mod_perl

2001-10-29 Thread Bob Showalter
> -Original Message- > From: John Griessen [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 29, 2001 11:39 AM > To: David Kirol > Cc: [EMAIL PROTECTED] > Subject: Re: mod_perl > > > Would one of you give me a little overview and point to best > docs

Re: mod_perl

2001-10-29 Thread John Griessen
Would one of you give me a little overview and point to best docs to read for mod_perl and CGI perl. For starters, I tried to put a script at my local apache web server root directory, and the server just displays the contents as text...sounds like a web server setting is wrong like an alias.

Re: mod_perl and nntp.perl.org

2001-10-28 Thread David Kirol
I am also interested in finding more help with mod_perl. I am trying to use HTML Mason (which requires mod_perl) and other tools. Any thing that would help reduce the learning gradient for me would be appreciated. "Scott R. Godin" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAI

Re: mod_perl/browser language

2001-10-04 Thread fliptop
Rob wrote: > > How can I detect the browser language using mod_perl? > > I tried this: > > $ENV{'HTTP_ACCEPT_LANGUAGE'}; > > but it doesn't seem to work.. read them: $lang = $r->subprocess_env->{'HTTP_ACCEPT_LANGUAGE'}; write them: $r->subprocess_env( 'SOME_NEW_VAR' => $somevalue ); -- T