Re: Perl Cookbook modperl chapter

2002-12-12 Thread Raf
On Wed, 11 Dec 2002, Nathan Torkington wrote: I need some people with brains (instead of the warm gray mush filling I also need help on content. I'm not competing with Geoff, Randy, and Current recipe list: [gnat:~] grep head1 Ora/pcb2/ch21.pod =head1 Introduction =head1

Re: [OT] mod_proxy, mod_perl, php

2002-12-18 Thread Raf
On Wed, 18 Dec 2002, Scott Alexander wrote: The html documents are on the mod_perl machine. What happens if users add php code to their html documents? If I add php support on the front_end will it work normally? * Have you thought of setting a separate document route for php (if they are

Re: [OT] mod_proxy, mod_perl, php - RESEND

2002-12-18 Thread Raf
Still half asleep. Stupid typos have been un-typofied: On Wed, 18 Dec 2002, Raf wrote: On Wed, 18 Dec 2002, Scott Alexander wrote: The html documents are on the mod_perl machine. What happens if users add php code to their html documents? If I add php support on the front_end

Re: Help needed !!

2003-06-12 Thread Raf
ECE Webmaster said: Hi , I am having a problem with an application that I am running on an Apache server. It says that it is unable to load the script. I have chmod all things to 777. My application is at http://www.ece.ufl.edu/COE/pages/chat/chatmain.html Thanks a ton Mandeep That

Re: puzzle of split() running under mod_perl

2003-06-20 Thread Raf
Ok, before heading off for the evening, here's a guess which may be totally wrong. JY - June Young said: We are running CSWS1.2 (based on Apache 1.3.6) on Open VMS V7.3-1 and CSWS_PERL V1.1 based on Mod_Perl V1.25. Main assumption ( this is buggy and not real apache/mod_perl ) - (as buggy as

RE: puzzle of split() running under mod_perl

2003-06-20 Thread Raf
Hi June, JY - June Young said: with/without double quotes on the regexp. The print of the dir after= shows that split correctly parsed the input string. The only difference is that the server dies upon global destruction? As a matter of fact, I am very confused by the error message of

Re: Re[2]: Problem with PerlTransHandler

2003-06-27 Thread Raf
for this print STDERR \n Failed to connect \n; }; Cheers, Raf

Re: Re[4]: Problem with PerlTransHandler

2003-06-27 Thread Raf
', 'user', 'pswd'); $dbh-disconnect; return DECLINED unless $r-uri =~ /^\/session\/([a-zA-Z0-9]{32})(.*)/; $r-subprocess_env(SESSION = $1); $r-uri($2); return DECLINED; } 1; -Original Message- From: Raf [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Fri, 27

Re: Apache::Session

2003-08-14 Thread Raf
Aleksandr Guidrevitch said: ... Is it possible to uniquely identify the user by some attributes ? The only thing I consider now is IP, but what about proxies and NATs ? User Agent string could also be stolen via javascript. That means I tend to make stolen session ids non-reusable. Went