Re: Getting data from external URL

2000-08-29 Thread Gisle Aas
Steve Reppucci [EMAIL PROTECTED] writes: Just a word of warning: LWP::Simple doesn't follow redirects (at least, the last I checked, not sure if it's been changed in the 3 or 4 months since I've last used it...), If it does not follow redirects then that is a bug. Do you have a test case?

Re: Getting data from external URL

2000-08-29 Thread Steve Reppucci
Hmmm Looking at _trivial_http_get: if ($code =~ /^30[1237]/ $buf =~ /\012Location:\s*(\S+)/) { # redirect So it certainly seems like it's *trying to handle it. As I recall (it was a late night when I had an application that wasn't working), I had single stepped down into

RE: PerlAuthenHandler invalid command

2000-08-29 Thread Geoffrey Young
-Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, August 28, 2000 3:45 PM To: Geoffrey Young Cc: 'Frank Plunkett'; [EMAIL PROTECTED] Subject: RE: PerlAuthenHandler invalid command On Mon, 28 Aug 2000, Geoffrey Young wrote: build mod_perl with

RE: PerlAuthenHandler invalid command

2000-08-29 Thread Geoffrey Young
-Original Message- From: Frank Plunkett [mailto:[EMAIL PROTECTED]] Sent: Monday, August 28, 2000 3:42 PM To: [EMAIL PROTECTED] Subject: Re: PerlAuthenHandler invalid command Geoff I did build with perl Makefile.PL PERL_AUTHEN=1 That was the first thing I thought

Apache::Reload problems

2000-08-29 Thread Barrie Slaymaker
Passing this along from the mason list. Original Message Subject: [OT]Apache::Reload (was Re: [Mason]More "At The Forge" articles) Date: 29 Aug 2000 10:59:35 +0400 From: [EMAIL PROTECTED] (Alexei V. Barantsev) To: [EMAIL PROTECTED] References: [EMAIL PROTECTED] Dave Rolsky

Re: Apache::Reload problems

2000-08-29 Thread Matt Sergeant
On Tue, 29 Aug 2000, Barrie Slaymaker wrote: Passing this along from the mason list. Thanks, Dave already passed it on. I've fixed the bug - new release today. Original Message Subject: [OT]Apache::Reload (was Re: [Mason]More "At The Forge" articles) Date: 29 Aug 2000

[ANNOUNCE] Apache::Reload 0.03

2000-08-29 Thread Matt Sergeant
Apache::Reload is a drop-in replacement for Apache::StatINC that does so much more... It provides two more options beyond StatINC. The first is a way that you can register modules to be reloaded. To do this, simply add: use Apache::Reload; to your module and it will automatically be detected

multilanguage site

2000-08-29 Thread Francesco Pasqualini
can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for applications) Can be usefull XML/XSL whit AxKit ? Is there any example/guideline ? Thanks Francesco Pasqualini

Re: multilanguage site

2000-08-29 Thread Matt Sergeant
On Tue, 29 Aug 2000, Francesco Pasqualini wrote: can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for applications) Can be usefull XML/XSL whit AxKit ? Is there any example/guideline ? This month's Web

Re: CGI.pm problem

2000-08-29 Thread Jeff Beard
There isn't a Vars() function in CGI.pm. If you're looking for the query string try param(). Or if you want to make it a mod_perl program (which is what you would normally discuss on this list) Apache::Request::param(). --Jeff At 04:11 PM 8/29/00 +0400, Alexei V. Barantsev wrote:

RE: multilanguage site

2000-08-29 Thread Jerrad Pierce
Try this: http://webtechniques.com/archives/2000/09/yunker/ and perhaps this: http://webtechniques.com/archives/2000/09/lagon/ -Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 29, 2000 9:16 AM To: Francesco Pasqualini Cc: [EMAIL PROTECTED] Subject:

Re: multilanguage site

2000-08-29 Thread Stas Bekman
On Tue, 29 Aug 2000, Matt Sergeant wrote: On Tue, 29 Aug 2000, Francesco Pasqualini wrote: can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for applications) Can be usefull XML/XSL whit AxKit ?

Re: multilanguage site

2000-08-29 Thread David Hodgkinson
"Francesco Pasqualini" [EMAIL PROTECTED] writes: can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for applications) Can be usefull XML/XSL whit AxKit ? Is there any example/guideline ? I'm interested

Re: multilanguage site

2000-08-29 Thread Matt Sergeant
On Tue, 29 Aug 2000, Stas Bekman wrote: On Tue, 29 Aug 2000, Matt Sergeant wrote: On Tue, 29 Aug 2000, Francesco Pasqualini wrote: can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for

Installing mod_perl

2000-08-29 Thread Marco Marchi
Hi all, I'm a newcomer to this mailing list. I have installed mod_perl (rel. 1.24) on my machine (Linux, kernel rel. 2.2.13). Apache is already configured and running (rel. 1.3.9). But the plug-in (i.e. mod_perl) is not running: I mean, running httpd the machine gives the following error

Re: HTML Template Comparison Sheet ETA

2000-08-29 Thread Drew Taylor
Nelson Correa de Toledo Ferraz wrote: Hi Drew, I'm the one who volunteered, and then I went on vacation for a 2 weeks. I have decided I will have a bare minimum draft done within a week. And then, as Matt suggested, people can just send suggestions/corrections/additions and the

Apache::Status Memory Usage metrics

2000-08-29 Thread Lyle D. Brooks
This is my first time posting to this list, so forgive me if this question has been asked before (I did not see it in the archives or in the mod_perl guide). Apache::Status seems like a nice module, but I don't understand what the Memory usage section is telling me. For a given package, I have

Re: Installing mod_perl

2000-08-29 Thread Justin Wheeler
It appears your Apache wasn't compiled with support for loading modules. You either need to recompile apache with mod_perl statically linked in, or recompile apache with dso support. -- Regards, Justin Wheeler [EMAIL PROTECTED] On Tue, 29 Aug 2000, Marco Marchi wrote: Hi all, I'm a

[OT]starting a long running script

2000-08-29 Thread martin langhoff
hi, i need to start a long-running script from either mod_perl or mod_cgi, and I'm facing all the well-known issues: the apache child waits, until it waits no longer (maybe because the browser itself chose to close the TCP connection, maybe because of an internal timeout), and then the

Re: Apache::Status Memory Usage metrics

2000-08-29 Thread Matt Sergeant
On Tue, 29 Aug 2000, Lyle D. Brooks wrote: This is my first time posting to this list, so forgive me if this question has been asked before (I did not see it in the archives or in the mod_perl guide). Apache::Status seems like a nice module, but I don't understand what the Memory usage

Re: [OT]starting a long running script

2000-08-29 Thread Stas Bekman
On Tue, 29 Aug 2000, martin langhoff wrote: hi, i need to start a long-running script from either mod_perl or mod_cgi, and I'm facing all the well-known issues: the apache child waits, until it waits no longer (maybe because the browser itself chose to close the TCP connection,

Re: [OT]starting a long running script

2000-08-29 Thread T.J. Mather
The easiest way to do this (IMHO) is to use the register_cleanup method in mod_perl. This gets executed at the very end of the request cycle after the TCP connection gets closed. See page 367 of the Eagle book for details... Basically you want to do this: $r = Apache-request;

[ANNOUNCE] Apache-Dispatch-0.06

2000-08-29 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.06.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.06.tar.gz size: 7452 bytes md5: 1546415d4d9aa380567b961d395827d6 DESCRIPTION Apache::Dispatch translates $r-uri into a class and

Re: [OT]starting a long running script

2000-08-29 Thread Stas Bekman
On Tue, 29 Aug 2000, T.J. Mather wrote: The easiest way to do this (IMHO) is to use the register_cleanup method in mod_perl. This gets executed at the very end of the request cycle after the TCP connection gets closed. See page 367 of the Eagle book for details... Basically you want to

DeIistalling mod_perl, sorry :-)

2000-08-29 Thread Christian Holz
Hi there! I tried to deinstall mod_perl but could'nt find out how to. There's no make deinstall option. When i builded a new apache, even after cleaning everything in the apache install dir mod_perl was still compiled into apache. ???!!! THX!!! Chris

Re: DeIistalling mod_perl, sorry :-)

2000-08-29 Thread Stas Bekman
On Tue, 29 Aug 2000, Christian Holz wrote: Hi there! I tried to deinstall mod_perl but could'nt find out how to. There's no make deinstall option. When i builded a new apache, even after cleaning everything in the apache install dir mod_perl was still compiled into apache. ???!!! cd

semi/pseudo mod_perl question

2000-08-29 Thread Roderick A. Anderson
Not strickly mod_perl so I've put on my flame retardent suit. I've seen several references to Apache::ASP (and mod_perl) but haven't been able to figure out quite what it does/provides. The Apache::ASP pages says something to the effect 'Active Server Pages using perl'. My question is can I

Re: mod_perl as DSO

2000-08-29 Thread Stas Bekman
I guess people sometimes confuse my email address with [EMAIL PROTECTED] Bouncing it to the right direction. yOn Tue, 29 Aug 2000, Kairam, Raj wrote: I am trying to build mod_perl-1.24 in to apache_1.3.12 as a DSO on a HP-UX 11.0 (32 bit) machine which has HP's ansi C compiler. The command

Dissappearing Lexicals

2000-08-29 Thread David E. Wheeler
Hi All, I've encounted a strange problem with our mod_perl installation. I have a library for handling DBI stuff, and store the $dbh in a package-level lexical. The $dbh is not populated until the first time a DBI call is made - which is during a request and therefore always after Apache forks.

Can't Locate Apache::File

2000-08-29 Thread David E. Wheeler
Hi All, I've just installed the latest version of Lincoln Stein's Apache::MP3 (nice job, Doc!), which offers support for caching MP3 ICY info. It uses Apache::File to do so. This the first time I've used Apache::File on this server, but was still surprised to find that it failed to load: [Wed

RE: Can't Locate Apache::File

2000-08-29 Thread Geoffrey Young
did you build mod_perl with EVERYTHING=1 or PERL_FILE_API=1? HTH --Geoff -Original Message- From: David E. Wheeler [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 29, 2000 1:56 PM To: [EMAIL PROTECTED] Subject: Can't Locate Apache::File Hi All, I've just installed the

Re: PerlAuthenHandler invalid command

2000-08-29 Thread Frank Plunkett
I figured it out. It was the dreaded permissions on the include directory. thanks for the advise all. Frank -Original Message- From: Frank Plunkett [mailto:[EMAIL PROTECTED]] Sent: Monday, August 28, 2000 3:42 PM To: [EMAIL PROTECTED] Subject: Re: PerlAuthenHandler invalid

Fw: PerlAuthenHandler invalid command

2000-08-29 Thread Frank Plunkett
I figured it out. It was permission problems on the include directory. thanks for the advise all. Frank -Original Message- From: Geoffrey Young [EMAIL PROTECTED] To: 'Frank Plunkett' [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, August 29, 2000 7:38 AM Subject: RE:

Fw: PerlAuthenHandler invalid command

2000-08-29 Thread Frank Plunkett
I figured it out. It was permission problems on the include directory. thanks for the advise all. Frank Re: PerlAuthenHandler invalid command Geoff I did build with perl Makefile.PL PERL_AUTHEN=1 That was the first thing I thought also. Frank ok, sorry I didn't read far enough

Fw: PerlAuthenHandler invalid command

2000-08-29 Thread Frank Plunkett
I figured it out. It was permission problems onthe include directory. Thanks for the advise all. Frank

PerlAuthenHandler invalid command

2000-08-29 Thread Frank Plunkett
PerlAuthenHandler invalid command I figured it out. It was permission problems on the include directory. Thanks for the advise all. Frank

Re: multilanguage site

2000-08-29 Thread Joshua Chamas
Francesco Pasqualini wrote: can someone suggest me the best way to build a multilanguage web site (english, french, ..). I'm using Apache + mod_perl + Apache::asp (for applications) Can be usefull XML/XSL whit AxKit ? Is there any example/guideline ? The approach used by Paul at

Mulriple PDC Authentication

2000-08-29 Thread Sambit Nanda
Hi Group I am using Apache 1.3.11 + Mod ssl + open SSL + Mode Perl + mod _php like that on my web server soalris 2.7 for Sparc. I am also using Mod AuthenSmb for Authentication of my web server with NT Account. and all working fine . Till now i am using Single NT PDC for Authentication of

Re: CGI.pm problem

2000-08-29 Thread Rick Myers
On Aug 29, 2000 at 16:11:39 +0400, Alexei V. Barantsev twiddled the keys to say: Dear mod_perl'ers! I have found strange difference between object and func modes of CGI library. More precisely - I have a problem with Vars function. #use CGI qw(:standard :cgi-lib);

RE: Mulriple PDC Authentication

2000-08-29 Thread Sambit Nanda
No i am not agree to this i do not know what u r thinking about or what is your plan to proceed about this probelm solution but it is sure it did not work for me i have tested it already This can not be a perfect solution i think .. what u think ? Any way thanks a lot for answer ..

cvs commit: modperl apache-modlist.html

2000-08-29 Thread dougm
dougm 00/08/29 21:06:02 Modified:.apache-modlist.html Log: update Revision ChangesPath 1.72 +3 -1 modperl/apache-modlist.html Index: apache-modlist.html === RCS file: