cvs commit: modperl-2.0/t/filter/TestFilter api.pm

2001-06-23 Thread dougm
dougm 01/06/23 10:47:32 Modified:t/filter/TestFilter api.pm Log: TestFilter::api needs to untie *STDOUT; else tests run after it fail Revision ChangesPath 1.4 +6 -0 modperl-2.0/t/filter/TestFilter/api.pm Index: api.pm

Configuring httpd.conf to recognize mod_perl

2001-06-23 Thread Francisco Castellon
Hi guys: I installed ActivePerl and ran the *.ppd file to install mod_perl. i got these errors though: -- Writing D:\serv\lang\site\lib\auto\mod_perl\.packlistCannot find file 'perl' (or one of

server tokens

2001-06-23 Thread brian moseley
is there any way to access the server tokens in mp 1.24? i'd like to use them at server startup time.

Re: server tokens

2001-06-23 Thread Matt Sergeant
On Sat, 23 Jun 2001, brian moseley wrote: is there any way to access the server tokens in mp 1.24? i'd like to use them at server startup time. You have to use XS. AxKit does it this way. I'd paste the code here but it's a bit all over the place, so you'd be easier to just download it. --

Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-23 Thread Joachim Zobel
At 12:35 22.06.2001 -0400, you wrote: 1. SSI with XBitHack full plays the 304 game for me. Every time the catalog database is updated, its SSI frame gets a touch. Thats it. Simple. Efficient. Most of the perl templating systems would be just as good on these points, Including

Re: Configuring httpd.conf to recognize mod_perl

2001-06-23 Thread Randy Kobes
On Sat, 23 Jun 2001, Francisco Castellon wrote: Hi guys: I installed ActivePerl and ran the *.ppd file to install mod_perl. i got these errors though: -- Writing

Re: server tokens

2001-06-23 Thread brian moseley
On Fri, 22 Jun 2001, Matt Sergeant wrote: On Sat, 23 Jun 2001, brian moseley wrote: is there any way to access the server tokens in mp 1.24? i'd like to use them at server startup time. You have to use XS. AxKit does it this way. I'd paste the code here but it's a bit all over the

Segmentation Fault (11)

2001-06-23 Thread Douglas C. Heestand
I am getting the following messages in my back-end apache install logfile (the one that handles perl scripts using mod_perl and PerlRun)... [17:03:49 2001] [notice] child pid 15064 exit signal Segmentation Fault (11) [17:04:27 2001] [notice] child pid 17127 exit signal Segmentation Fault (11)

which perl?

2001-06-23 Thread Todd Goldenbaum
Hi, I am running Apache/1.3.14 (Unix) mod_perl/1.25 on a redhat 7 system. Since the perl binary that came with the redhat distribution was version 5.6.0, I assumed that is the version that got built into mod perl (statically linked). But I just discovered using perl's $] variable, that it's

Re: which perl?

2001-06-23 Thread Steven Lembark
I am running Apache/1.3.14 (Unix) mod_perl/1.25 on a redhat 7 system. Since the perl binary that came with the redhat distribution was version 5.6.0, I assumed that is the version that got built into mod perl (statically linked). But I just discovered using perl's $] variable, that it's

Re: which perl?

2001-06-23 Thread Todd Goldenbaum
On Sat, 23 Jun 2001, Steven Lembark wrote: I am running Apache/1.3.14 (Unix) mod_perl/1.25 on a redhat 7 system. Since the perl binary that came with the redhat distribution was version 5.6.0, I assumed that is the version that got built into mod perl (statically linked). But I just

Re: which perl?

2001-06-23 Thread Chris Reinhardt
On Sat, 23 Jun 2001, Todd Goldenbaum wrote: Hi, I am running Apache/1.3.14 (Unix) mod_perl/1.25 on a redhat 7 system. Since the perl binary that came with the redhat distribution was version 5.6.0, I assumed that is the version that got built into mod perl (statically linked). But I just

Directory Restrictions

2001-06-23 Thread Brooklyn Linux Solutions CEO
Hello I've been working on a mod_perl implimentation which does the following. New users gain access to a directory, but can not get access to two directories underneath it. After logging in and receiving a cookie, they are automatically shunted to one of the two low directories. I've had

Re: Segmentation Fault (11)

2001-06-23 Thread Stas Bekman
On Sat, 23 Jun 2001, Douglas C. Heestand wrote: I am getting the following messages in my back-end apache install logfile (the one that handles perl scripts using mod_perl and PerlRun)... [17:03:49 2001] [notice] child pid 15064 exit signal Segmentation Fault (11) [17:04:27 2001] [notice]

SSI Lost with Mod Perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
I've seemed to have lost my ability to use SSI whenI use the content handlers with Mod_perl. Is there anyway I can fix this? Ruben

Re: SSI Lost with Mod Perl?

2001-06-23 Thread Perrin Harkins
I've seemed to have lost my ability to use SSI whenI use the content handlers with Mod_perl. Is there anyway I can fix this? Can you be more specific about what you're trying to do? You can still use mod_include with mod_perl installed, and you can use Apache::SSI either alone or as a

Re: which perl?

2001-06-23 Thread Todd Goldenbaum
On Sat, 23 Jun 2001, Chris Reinhardt wrote: On Sat, 23 Jun 2001, Todd Goldenbaum wrote: Hi, I am running Apache/1.3.14 (Unix) mod_perl/1.25 on a redhat 7 system. Since the perl binary that came with the redhat distribution was version 5.6.0, I assumed that is the version that got

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade which was more or less forced on me by cpan. It kind of ticks me off those guys who install modules on CPAN which upgrade by damn perl. NET::FTP of libnet is a big culprit of this.

Re: which perl?

2001-06-23 Thread Stas Bekman
It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade Rebuild mod_perl or add the 5.6.1 paths to @INC in startup.pl via use lib: http://perl.apache.org/guide/install.html#Should_I_Rebuild_mod_perl_if_I_h which was more or less forced

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade I got sick of the problem and linked 5.6.1 into 5.6.0 Ruben

Re: SSI Lost with Mod Perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
Will it work by default or do I need to chain it somehow? Ruben I've seemed to have lost my ability to use SSI whenI use the content handlers with Mod_perl. Is there anyway I can fix this? Can you be more specific about what you're trying to do? You can still use mod_include

Re: which perl?

2001-06-23 Thread Stas Bekman
On Sun, 24 Jun 2001, Brooklyn Linux Solutions CEO wrote: It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade I got sick of the problem and linked 5.6.1 into 5.6.0 You could achieve the same with: startup.pl: --- use

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
use lib qw(/usr/lib/perl5/5.6.1 /usr/lib/perl5/site_perl/5.6.1); note that lib.pm takes care of adding the arch lib paths (i686-linux on my machine) and removing dups. Really I asked this question and didn't get much of an answer from folks other than they THOUGHT it was built in the

Re: which perl?

2001-06-23 Thread Stas Bekman
use lib qw(/usr/lib/perl5/5.6.1 /usr/lib/perl5/site_perl/5.6.1); note that lib.pm takes care of adding the arch lib paths (i686-linux on my machine) and removing dups. Really I asked this question and didn't get much of an answer from folks other than they THOUGHT it was built in the