APR

2005-08-17 Thread Paul Harrison
Hi All, I thought the APR module was use for  ==> to load mod_perl2 outside of Apache(command line). I'm lost when I see modules like ==> use APR::Table () inside of Apache(not the command line) Please Explain, thxs     Cure

RE: APR

2005-08-17 Thread Paul Harrison
Yes, thx you Cure -Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 17, 2005 12:04 PM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: APR Paul Harrison wrote: > Hi All, I thought the APR module was use for ==> to load mod

Mime Type

2005-09-13 Thread Paul Harrison
Is there a way I can change the mine type in apache so when a user clicks on a mp3 link it would pop_up the save window instead of playing it ? Maybe trick the browser into thinking the mp3 file is a zip file so it will pop_up a save as window, so the user can save it to their desktop.  

RE: Mime Type

2005-09-13 Thread Paul Harrison
So what's the best mime-type then to use ? Paul -Original Message- From: Tom Schindl [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 11:32 AM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: Mime Type -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As already

Mod_perl2

2005-09-14 Thread Paul Harrison
In mod_perl 1.29 version, I preload the following modules at startup à use Apache::Request (); use Apache::Cookie ();     It works perfect…   I’m currently learning how to use mod_perl2-2.0.1, when I try to preload the following modules at startup à   use Apache2::Request (); use

RE: Mod_perl2

2005-09-14 Thread Paul Harrison
Same compiler, yes In installed it from FreeBSD ports tree PORTNAME= libapreq2 PORTVERSION=2.05 CATEGORIES= www perl5 devel Cure -Original Message- From: Frank Wiles [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 4:19 PM To: Paul Harrison Cc: modperl

RE: Mod_perl2

2005-09-14 Thread Paul Harrison
lto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 4:37 PM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: Mod_perl2 On Wed, 14 Sep 2005 16:29:51 -0500 "Paul Harrison" <[EMAIL PROTECTED]> wrote: > Same compiler, yes > > In installed it from F

RE: Mod_perl2

2005-09-14 Thread Paul Harrison
Message- From: Frank Wiles [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 5:08 PM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: Mod_perl2 On Wed, 14 Sep 2005 16:56:16 -0500 "Paul Harrison" <[EMAIL PROTECTED]> wrote: > I tried installing libapr

Apache-DBI

2005-11-08 Thread Paul Harrison
p5-DBD-mysql50-3.0002 p5-DBI-1.48 p5-Apache-DBI-0.94_1   I upgraded the database server from the "4" version to "5", so I updated the Perl database Drivers -> DBD,DBI, and Apache-DBI.   Once I updated the software, I get the following text in the Apache error log -->   [Tue Nov  8 1

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
I'm currently running mp1, so I'm lost here. Cure -Original Message- From: Enno [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 9:51 AM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: Apache-DBI you need Apache::DBI 0.96 or higher for mp2 compatibil

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
--Original Message- From: Christopher H. Laco [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 9:51 AM To: Paul Harrison Cc: modperl@perl.apache.org Subject: Re: Apache-DBI Paul Harrison wrote: > p5-DBD-mysql50-3.0002 > > p5-DBI-1.48 > > p5-Apache-DBI-0.94_1 > >

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
I will try that thxs. On my other box, I have mp2 and p5-Apache-DBI-0.94_1 works just fine. But then again, I don't preload the connections on server startup. Cure -Original Message- From: Enno [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 10:17 AM To: Paul Harris

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
if (defined $ENV{MOD_PERL_API_VERSION} and $ENV{MOD_PERL_API_VERSION} == 2) { <-- that fixed the error. Thxs Cure -Original Message- From: Paul Harrison [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 10:22 AM To: 'Enno' Cc: [EMAIL PROTECTED]; modperl@pe

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
p5-Apache-DBI-0.94_1 <-- I got it from the ports-tree FreeBSD Cure -Original Message- From: Philip M. Gollucci [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 10:33 AM To: Paul Harrison Cc: 'Enno'; [EMAIL PROTECTED]; modperl@perl.apache.org Subject: Re: Apa

RE: Apache-DBI

2005-11-08 Thread Paul Harrison
Thx u so much Cure -Original Message- From: Philip M. Gollucci [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 10:40 AM To: Paul Harrison Cc: 'Enno'; [EMAIL PROTECTED]; modperl@perl.apache.org Subject: Re: Apache-DBI Paul Harrison wrote: > p5-Apache-DBI-0.94_1

ModPerl

2005-12-30 Thread Paul Harrison
How come in ModPerl 2, we don’t have to send the http headers and print versus $r->print()  compared to ModPerl1 ?       ## ModPerl 2  sub handler {   my $r = shift;   $r->content_type('text/plain');   print "mod_perl 2.0 rocks!\n";   return Apache2::Const::OK;   }

APR

2006-01-03 Thread Paul Harrison
Apache2 namespace are wrappers of the APR namespace.  Where can I find information about APR namespace, that will allow me to invoke the same methods that Apache2 namespace allows ?     Example:    use Apache2::RequestRec ();  # set supported by the handler HTTP methods  $allowed =

Apache DBI

2006-01-15 Thread Paul Harrison
I installed Apache::DBI - 0.98 on FreeBSD 5.4 with mod_perl 1.   Apache::DBI logs an entry in apache error log file every time it create(s) a new connection or using an existing connection to the database server. Is this normal with this version?  And how do I turn that feature off?  

Apache::DBI

2006-01-15 Thread Paul Harrison
  I installed Apache::DBI - 0.98 on FreeBSD 5.4 with mod_perl 1.   Apache::DBI logs an entry in apache error log file every time it create(s) a new connection or using an existing connection to the database server. Is this normal with this version?  And how do I turn that feature off?

RE: Apache::DBI

2006-01-16 Thread Paul Harrison
It's a default clean install. I'll try $Apache::DBI::DEBUG=0 to see if that works. Thxs Cure -Original Message- From: Martin Moss [mailto:[EMAIL PROTECTED] Sent: Monday, January 16, 2006 5:00 AM To: Paul Harrison; modperl@perl.apache.org Subject: Re: Apache::DBI Not sur

RE: Apache::DBI

2006-01-16 Thread Paul Harrison
It fixed it. Thxs Cure -Original Message- From: Paul Harrison [mailto:[EMAIL PROTECTED] Sent: Monday, January 16, 2006 7:58 AM To: 'Martin Moss'; 'modperl@perl.apache.org' Subject: RE: Apache::DBI It's a default clean install. I'll try $Apache::DBI:

Mod_Perl

2006-04-14 Thread Paul Harrison
Hi, I’m currently using apache-2.0.55_4(Version 2 of Apache web server with prefork MPM.) & mod_perl2-2.0.2,3(Embeds a Perl interpreter in the Apache2 server)   Should I be using the module ModPerl::RegistryLoader or ModPerl::RegistryLoaderPreFork ? & Should I be using the module ModPer