Re: Working Directory

2002-07-12 Thread Stas Bekman
Francesc X.Noria wrote: On Thu, 11 Jul 2002 16:56:38 -0700 Josh Bernstein [EMAIL PROTECTED] wrote: : /. My question is how can I set the working directory to be the : location of where the script is running. (This would make mod_perl : correctly locate file that I have included in

Re: END subroutine in Apache::Registry

2002-07-12 Thread Ged Haywood
Hi Jim, Stas, On Fri, 12 Jul 2002, Stas Bekman wrote: Jim Schueler wrote: I just read the fine print: :) Good man. Apache::Registry runs BEGIN subroutines just once per child process, but END routines run every time a script is run. The implication is that an otherwise robust

Re: END subroutine in Apache::Registry

2002-07-12 Thread Stas Bekman
Please read: http://perl.apache.org/release/docs/1.0/guide/porting.html#END_blocks The special case is for registry scripts that include END blocks. If the the explanation at the above URL is unclear/confusing, please suggest how to improve it. It's pretty clear, and the bit about BEGIN

Re: Working Directory

2002-07-12 Thread Matt Sergeant
On Fri, 12 Jul 2002, Stas Bekman wrote: Josh Bernstein wrote: After just upgrading to mod_perl2 with Apache2. My current INC path includes a . on the end, which should reference the current working directory, and therefore correctly locate include locate in the script's working

ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Stas Bekman
As you may know, the work on the new mod_perl site started in September 2001, and after almost a year we are glad to present to you the outcome of this work at the expected location: http://perl.apache.org/ and say good bye to the old site, which has now retired, but still can be retrieved

Mod_perl 1.27 and Apache 1.3.26

2002-07-12 Thread Rudolf Wolf
Hi, I'm newbie in mod_perl. I try to compile mod_perl 1.27 with Apache 1.3.26, I satisfied all prerequisities, succesfully compiled mod_perl, when I use /usr/local/apache/bin/httpd -l I can see mod_perl listed in list, but the problem is, that my Apache is not working as before compiling. I

Re: Mod_perl 1.27 and Apache 1.3.26

2002-07-12 Thread Ask Bjoern Hansen
On Fri, 12 Jul 2002, Rudolf Wolf wrote: Not Acceptable An appropriate representation of the requested resource / could not be found on this server. Available variants: index.html.ca , type text/html, language ca index.html.cz , type text/html, language cz [...] That's not a mod_perl

[OT] Need help with future CPAN template module name

2002-07-12 Thread Jean-Michel Hiver
Hi List, Yes yes, I am building yet another CPAN templating module which should be pretty mod_perl friendly. It will be working a bit like zope's TAL templates, i.e. you'll be able to type: ul tal:condition=object.list li tal:repeat=element object.list tal:content=:encode

Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread Chris Pizzo
This might be a little off topic. I recently installed apache 1.3.26 with modperl 1.26. I run a virtual host seconady website. When I try to retieve or write cookies to a netscape browser from the virtualhost URL it doesn't work. cookies work fine on the main server. cookies work fine on both

Re: solaris9+apache2+mod_perl2

2002-07-12 Thread Stas Bekman
Well I commented the little switch statement what was giving me the problems and all seems to be resolved. Josh, have you tried with the latest cvs as I've suggested, it seems like you didn't. [...] Stas Bekman wrote: Josh Bernstein wrote: Hey All, I'm getting this error when I

Re: Weird problem with cookies on Netscape with apache running avirtualhost

2002-07-12 Thread Ged Haywood
Hi there, On Fri, 12 Jul 2002, Chris Pizzo wrote: This might be a little off topic. Not if it's the result of a mod_perl upgrade. :) I recently installed apache 1.3.26 with modperl 1.26. [snip] try to retieve or write cookies to a netscape browser from the virtualhost URL it doesn't work.

RE: Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread Charles
Chris, It is a bit difficult to determine your problem but here are a few suggestions: 1) Revert to $r-headers_out-set('Set-Cookie', cookie(-name='cookie_name', -value='value_here')); If this works, check for a difference in the module you are using. 2) You may have inconstant privacy

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Joe Schaefer
Stas Bekman [EMAIL PROTECTED] writes: This new site is a result of a collaborative effort of the mod_perl community. Thank you all! Without you the new site won't be as good as it is now. Special acknowledgements go to the following folks: Allan Juul Bill Moseley Jonathan M. Hollin

Re: [JOB] Perl / mod_perl programmer in Orem, UT

2002-07-12 Thread Jean-Michel Hiver
Yet again I ask myself - why don't I emigrate to the US? :-( Coz they don't have a Queen? :-) -- IT'S TIME FOR A DIFFERENT KIND OF WEB Jean-Michel Hiver - Software Director [EMAIL PROTECTED] +44 (0)114 255 8097

RE: [JOB] Perl / mod_perl programmer in Orem, UT

2002-07-12 Thread stevea
Untrue... Portland is full of queens -Original Message- From: Jean-Michel Hiver [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 11:11 AM To: Jonathan M. Hollin Cc: Cahill, Earl; modperl Subject: Re: [JOB] Perl / mod_perl programmer in Orem, UT Yet again I ask myself - why

Re: Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread Chris Pizzo
- Original Message - From: Charles [EMAIL PROTECTED] To: Chris Pizzo [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, July 12, 2002 1:51 PM Subject: RE: Weird problem with cookies on Netscape with apache running a virtualhost Chris, It is a bit difficult to determine your

Re: Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread ___cliff rayman___
Chris Pizzo wrote: $r-headers_out-set('Set-Cookie',$cc); $r-headers_out-set('Set-Cookie',$c); should this second one be? $r-headers_out-add('Set-Cookie',$c); i didn't get a chance to try it, but it should be easy to try.

Re: Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread darren chamberlain
* Chris Pizzo [EMAIL PROTECTED] [2002-07-12 17:02]: This works but I need to set multiple cookies. Im doing this: my $c = new CGI::Cookie(-name = 'SID', -value = 'stuff', -expires = '+6M'); my $cc = new CGI::Cookie(-name = 'BUD', -value = 'Wassup', -expires = '+6M');

Re: Weird problem with cookies on Netscape with apache running a virtualhost

2002-07-12 Thread Chris Pizzo
Doh! Thanks that's it! - Original Message - From: ___cliff rayman___ [EMAIL PROTECTED] To: Chris Pizzo [EMAIL PROTECTED] Cc: Charles [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, July 12, 2002 5:10 PM Subject: Re: Weird problem with cookies on Netscape with apache running a

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread David Kaufman
Stas Bekman [EMAIL PROTECTED] wrote: As you may know, the work on the new mod_perl site started in September 2001, and after almost a year we are glad to present to you the outcome of this work at the expected location: http://perl.apache.org/ fist, let me say: Great Job! the new site

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Matt Sergeant
On Fri, 12 Jul 2002, David Kaufman wrote: i still notice, however that the *content* of the Sites Running mod_perl page doesn't seem to have been updated. about 6 months ago, i sent notices about two sites that we (Vanguard Media) had launched to the email address that used to be on that

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread David Kaufman
Matt Sergeant [EMAIL PROTECTED] wrote: On Fri, 12 Jul 2002, David Kaufman wrote: i still notice, however that the *content* of the Sites Running mod_perl page doesn't seem to have been updated. about 6 months ago, i sent notices about two sites that we (Vanguard Media) had launched to

$Apache::ServerStarting

2002-07-12 Thread Mike Blazer
Hello, guys, I'm facing rather unpleasant thing in Perl sections. This all happens on Win32, I'm using 0.7 distribution from theoryx5.uwinnipeg.ca by Randy Kobes (thanks Randy!) So, here, what happens when apache starts? 1. It passes the conf file once (starting) 2. passes it for the 2nd time

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Randal L. Schwartz
Matt == Matt Sergeant [EMAIL PROTECTED] writes: Matt Are there that many sites any more that are running pure mod_perl? I would Matt expect most new sites to be running one of the framework modules - Matt EmbPerl, TT, Mason, AxKit, ASP, etc... Perhaps live sites is a more Matt framework

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Gunther Birznieks
I agree! It is great work. It looks really slick. Unfortunately, the mod_perl guide documentation area has lost functionality. I wanted to download the latest guide before my 23 hour flight to the USA (to read on the flight) and was dismayed to find hours before my flight that it is

Re: $Apache::ServerStarting

2002-07-12 Thread Mike Blazer
Then I used $Apache::ServerStarting and $Apache::ServerReStarting ... That was all about on Win32 Apache/1.3.20 (Win32) mod_perl/1.25_01-dev But on my Solaris 2.8 Server: Apache/1.3.22 (Unix) mod_perl/1.26 mod_ssl/2.8.5 OpenSSL/0.9.6b $Apache::Server::Starting reports 1/0 during

New Website

2002-07-12 Thread Joshua Bernstein
Incredible Job on the new site. If there is anything I can help with (Documentation etc...) Please let me know.. -Joshua Bernstein Systems Analyst University of Arizona Tucson, Arizona, USA

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Nate Campi
I hate to be a party pooper, but I single handedly brute upgraded www.wired.com from Vignette Storyserver 5.0 to V/6 this month - it's not mod_perl. The new page is incorrect. I do the ServerTokens Min thing to hide what modules we run. If the authors of the page want to ask me about different

Re: nice mod_perl statistics to share

2002-07-12 Thread Stas Bekman
Kevin Berggren wrote: Stas Bekman wrote: I've just updated the mod_perl with the latest stats and I'm glad to say that the results are nice, so you can show your bosses that they did the right choice (or should) ;) This is the netcraft.com:

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Stas Bekman
Gunther Birznieks wrote: I agree! It is great work. It looks really slick. :) Unfortunately, the mod_perl guide documentation area has lost functionality. I wanted to download the latest guide before my 23 hour flight to the USA (to read on the flight) and was dismayed to find hours

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Stas Bekman
Nate Campi wrote: I hate to be a party pooper, but I single handedly brute upgraded www.wired.com from Vignette Storyserver 5.0 to V/6 this month - it's not mod_perl. The new page is incorrect. I do the ServerTokens Min thing to hide what modules we run. If the authors of the page want to

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Stas Bekman
fist, let me say: Great Job! the new site looks fantastic, a *vast* and long-awaited improvement. ;) i still notice, however that the *content* of the Sites Running mod_perl page doesn't seem to have been updated. about 6 months ago, i sent notices about two sites that we (Vanguard

Re: New Website

2002-07-12 Thread Stas Bekman
Joshua Bernstein wrote: Incredible Job on the new site. If there is anything I can help with (Documentation etc...) Please let me know.. Everybody can help. Go read the site, see what's missing, incomplete, unclear and send the updates/new material in. e.g., do you know of any new mod_perl

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Nick Tonkin
The content seems great. But whatever font you've used is rendering skinny and pixelated and hard to read and makes me want to egt of the site asap ... why not leave font face undetermined so the font that each has chosen for his platform is employed? - nick Nick