
mod_rewrite problem: $1 and $2 not substituted into target url
--001485f7c300dbaa55047e14ac36
Content-Type: text/plain; charset=ISO-8859-1
Good morning Apache list,
I have a strange mod_rewrite problem, and I'm not sure how to solve it. I
have a RewriteRule that works correctly on one apache daemon, but doesn't
work when copied and pasted to the httpd.conf file of a second apache
daemon.
To state this differently, on the second apache daemon, mod_rewrite is
correctly matching the URL based on the regex, but it is not substituting
the back-references into the target URL.
The rule looks like this:
RewriteRule /products/(.*)/(.*)\.html$ /perl/
detail.pl?url_name=$1&model_nbr=$2
On the first server this successfully matches this request:
http://www.mydomain.com/products/whirlpool/1234567.html, and does an
internal redirect to /perl/detail.pl?url_name=whirlpool&model_nbr=1234567
On the 2nd (malfunctioning) server, it doesn't work -- although mod_rewrite
correctly matches the request to the rule, it doesn't substitute the values
inside the parentheses to $1 and $2 in the output URL. Here's what gets
written to the output of the RewriteLog on the 2nd server:
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(2) init rewrite engine with requested uri /products/whirlpool/1234567.html
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(3) applying pattern '/products/(.*)/(.*)\.html$' to uri
'/products/whirlpool/1234567.html'
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(2) *rewrite /products/whirlpool/1234567.**html -> /perl/
detail.pl?url_name=&model_nbr=*
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(3) *split uri=/perl/detail.pl?url_name=&model_nbr= -> uri=/perl/detail.pl,
args=url_name=&model_nbr=*
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(2) local path result: /perl/detail.pl
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(2) prefixed with document_root to /www/perl/mydomain/htdocs/perl/detail.pl
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [
www.mydomain.com/sid#9094fec][rid#90a8b3c/initial<http://www.mydomain.com/sid#9094fec][rid%2390a8b3c/initial>]
(1) go-ahead with /www/perl/mydomain/htdocs/perl/detail.pl [OK]
Note the bolded sections of the log -- the values stored in $1 and $2 are
not substituted into the final URL. On the first server, these do get
substituted AND they get written to the rewrite_log.
Here's the relevant section of the httpd.conf file for the malfunctioning
Apache daemon:
RewriteEngine On
RewriteLog /var/log/apache-perl/rewrite_log.log
RewriteLogLevel 3
RewriteRule /products/(.*)/(.*)\.html$ /perl/
detail.pl?url_name=$1&model_nbr=$2
I thought it was possible that there were conflicts with other rules, so I
removed all the other RewriteRules and made sure that there were no
..htaccess files that applied to this request. I also tried hard-coding the
url_name param to "whirlpool", on the theory that mod_rewrite might be happy
with 1 substitution param, but no dice. In this case it still declined to
substitute "1234567" for $1. This httpd.conf file has no other virtual
hosts which might be causing a conflict.
Any suggestions as to what might be going on?
Thanks,
Chris
--001485f7c300dbaa55047e14ac36
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Good morning Apache list,<br><br>I have a strange mod_rewrite problem, and =
I'm not sure how to solve it.=A0 I have a RewriteRule that works correc=
tly on one apache daemon, but doesn't work when copied and pasted to th=
e httpd.conf file of a second apache daemon.=A0 <br>
<br>To state this differently, on the second apache daemon, mod_rewrite is =
correctly matching the URL based on the regex, but it is not substituting t=
he back-references into the target URL.<br><br>The rule looks like this: <b=
r>
<br>RewriteRule /products/(.*)/(.*)\.html$ /perl/<a href=3D"http://detail.p=
l?url_name=3D$1&model_nbr=3D$2" target=3D"_blank">detail.pl?url_name=3D=
$1&model_nbr=3D$2</a><br>
<br>On the first server this successfully matches this request:<br><br><a h=
ref=3D"http://www.mydomain.com/products/whirlpool/1234567.ht ml" target=3D"_=
blank">http://www.mydomain.com/products/whirlpool/1234567.ht ml</a>, and doe=
s an internal redirect to /perl/<a href=3D"http://detail.pl?url_name=3Dwhir=
lpool&model_nbr=3D1234567" target=3D"_blank">detail.pl?url_name=3Dwhirl=
pool&model_nbr=3D1234567</a><br>
<br>On the 2nd (malfunctioning) server, it doesn't work -- although mod=
_rewrite correctly matches the request to the rule, it doesn't substitu=
te the values inside the parentheses to $1 and $2 in the output URL.=A0 Her=
e's what gets written to the output of the RewriteLog on the 2nd server=
:<br>
<br>192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.myd=
omain.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomai=
n.com/sid#9094fec][rid#90a8b3c/initial</a>] (2) init rewrite engine with re=
quested uri /products/whirlpool/1234567.html<br>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (3) applying pattern '/products=
/(.*)/(.*)\.html$' to uri '/products/whirlpool/1234567.html'<br=
>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (2) <b>rewrite /products/whirlpool/=
1234567.</b><b>html -> /perl/<a href=3D"http://detail.pl?url_name=3D&=
;model_nbr=3D" target=3D"_blank">detail.pl?url_name=3D&model_nbr=3D</a>=
</b><br>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (3) <b>split uri=3D/perl/<a href=3D=
"http://detail.pl?url_name=3D&model_nbr=3D" target=3D"_blank">detail.pl=
?url_name=3D&model_nbr=3D</a> -> uri=3D/perl/<a href=3D"http://detai=
l.pl" target=3D"_blank">detail.pl</a>, args=3Durl_name=3D&model_nbr=3D<=
/b><br>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (2) local path result: /perl/<a hre=
f=3D"http://detail.pl" target=3D"_blank">detail.pl</a><br>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (2) prefixed with document_root to =
/www/perl/mydomain/htdocs/perl/<a href=3D"http://detail.pl" target=3D"_blan=
k">detail.pl</a><br>
192.168.1.3 - - [26/Jan/2010:10:17:06 -0600] [<a href=3D"http://www.mydomai=
n.com/sid#9094fec][rid%2390a8b3c/initial" target=3D"_blank">www.mydomain.co=
m/sid#9094fec][rid#90a8b3c/initial</a>] (1) go-ahead with /www/perl/mydomai=
n/htdocs/perl/<a href=3D"http://detail.pl" target=3D"_blank">detail.pl</a> =
[OK]<br>
<br>Note the bolded sections of the log -- the values stored in $1 and $2 a=
re not substituted into the final URL.=A0 On the first server, these do get=
substituted AND they get written to the rewrite_log.<br><br>Here's the=
relevant section of the httpd.conf file for the malfunctioning Apache daem=
on:<br>
<br>RewriteEngine On<br><br>RewriteLog /var/log/apache-perl/rewrite_log.log=
<br>RewriteLogLevel 3<br><br>RewriteRule /products/(.*)/(.*)\.html$
/perl/<a href=3D"http://detail.pl?url_name=3D$1&model_nbr=3D$2" target=
=3D"_blank">detail.pl?url_name=3D$1&model_nbr=3D$2</a><br><br>I thought=
it was possible that there were conflicts with other rules, so I removed a=
ll the other RewriteRules and made sure that there were no .htaccess files =
that applied to this request.=A0 I also tried hard-coding the url_name para=
m to "whirlpool", on the theory that mod_rewrite might be happy w=
ith 1 substitution param, but no dice.=A0 In this case it still declined to=
substitute "1234567" for $1.=A0 This httpd.conf file has no othe=
r virtual hosts which might be causing a conflict.<br>
<br>Any suggestions as to what might be going on?<br><br>Thanks,<br>Chris<b=
r>
--001485f7c300dbaa55047e14ac36--
Re: mod_rewrite problem: $1 and $2 not substituted into
On Tue, Jan 26, 2010 at 6:32 PM, Chris Brooks <madbury [at] gmail.com> wrote:
> Any suggestions as to what might be going on?
You are not using any <perl> sections by chance, are you?
Krist
--
krist.vanbesien [at] gmail.com
krist [at] vanbesien.org
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: mod_rewrite problem: $1 and $2 not substituted into
--001485f453f0b02abb047e245fe5
Content-Type: text/plain; charset=ISO-8859-1
Good morning Krist,
Thank you very much for your reply.
No, I don't have any <perl> blocks in the httpd.conf, although this is a
mod_perl enabled apache daemon.
Thanks,
Chris
On Wed, Jan 27, 2010 at 5:16 AM, Krist van Besien <krist.vanbesien [at] gmail.com
> wrote:
> On Tue, Jan 26, 2010 at 6:32 PM, Chris Brooks <madbury [at] gmail.com> wrote:
>
>
> > Any suggestions as to what might be going on?
>
> You are not using any <perl> sections by chance, are you?
>
> Krist
>
> --
> krist.vanbesien [at] gmail.com
> krist [at] vanbesien.org
> Bremgarten b. Bern, Switzerland
> --
> A: It reverses the normal flow of conversation.
> Q: What's wrong with top-posting?
> A: Top-posting.
> Q: What's the biggest scourge on plain text email discussions?
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>
--001485f453f0b02abb047e245fe5
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Good morning Krist,<br><br>Thank you very much for your reply.<br><br>No, I=
don't have any <perl> blocks in the httpd.conf, although this is=
a mod_perl enabled apache daemon.<br><br>Thanks,<br>Chris<br><br><div clas=
s=3D"gmail_quote">
On Wed, Jan 27, 2010 at 5:16 AM, Krist van Besien <span dir=3D"ltr"><<a =
href=3D"mailto:krist.vanbesien [at] gmail.com">krist.vanbesien [at] gm ail.com</a>>=
</span> wrote:<br><blockquote class=3D"gmail_quote" style=3D"border-left: 1=
px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"=
>
<div class=3D"im">On Tue, Jan 26, 2010 at 6:32 PM, Chris Brooks <<a href=
=3D"mailto:madbury [at] gmail.com">madbury [at] gmail.com</a>> wrote:<br>
<br>
<br>
> Any suggestions as to what might be going on?<br>
<br>
</div>You are not using any <perl> sections by chance, are you?<br>
<br>
Krist<br>
<br>
--<br>
<a href=3D"mailto:krist.vanbesien [at] gmail.com">krist.vanbesien [at] gmail.com</a><=
br>
<a href=3D"mailto:krist [at] vanbesien.org">krist [at] vanbesien.org</a><br>
Bremgarten b. Bern, Switzerland<br>
--<br>
A: It reverses the normal flow of conversation.<br>
Q: What's wrong with top-posting?<br>
A: Top-posting.<br>
Q: What's the biggest scourge on plain text email discussions?<br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</blockquote></div><br>
--001485f453f0b02abb047e245fe5--
Re: mod_rewrite problem: $1 and $2 not substituted into
On Tue, Jan 26, 2010 at 12:32 PM, Chris Brooks <madbury [at] gmail.com> wrote:
> Good morning Apache list,
>
> I have a strange mod_rewrite problem, and I'm not sure how to solve it.=
=A0 I
> have a RewriteRule that works correctly on one apache daemon, but doesn't
> work when copied and pasted to the httpd.conf file of a second apache
> daemon.
>
What are the versions involved?
--
Eric Covener
covener [at] gmail.com
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: mod_rewrite problem: $1 and $2 not substituted into
--001485f7c30000cfd4047e2585b9
Content-Type: text/plain; charset=ISO-8859-1
Hi Eric,
Thanks for the note. Both apache and mod_perl are up-to-date:
[root [at] data2 ~]# /usr/local/apache-perl/bin/httpd -v
Server version: Apache/1.3.41 (Unix)
Server built: Sep 2 2009 15:34:13
[root [at] data2 ~]# perl -Mmod_perl -le 'print mod_perl->VERSION'
1.31
Thanks,
Chris
On Wed, Jan 27, 2010 at 7:53 AM, Eric Covener <covener [at] gmail.com> wrote:
> On Tue, Jan 26, 2010 at 12:32 PM, Chris Brooks <madbury [at] gmail.com> wrote:
> > Good morning Apache list,
> >
> > I have a strange mod_rewrite problem, and I'm not sure how to solve it.
> I
> > have a RewriteRule that works correctly on one apache daemon, but doesn't
> > work when copied and pasted to the httpd.conf file of a second apache
> > daemon.
> >
>
> What are the versions involved?
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>
--001485f7c30000cfd4047e2585b9
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Hi Eric,<br><br>Thanks for the note.=A0 Both apache and mod_perl are up-to-=
date:<br><br>[root [at] data2 ~]# /usr/local/apache-perl/bin/httpd -v<br>Server =
version: Apache/1.3.41 (Unix)<br>Server built:=A0=A0 Sep=A0 2 2009 15:34:13=
<br><br>
[root [at] data2 ~]# perl -Mmod_perl -le 'print mod_perl->VERSION'<br=
>1.31<br><br>Thanks,<br>Chris<br><br><div class=3D"gmail_quote">On Wed, Jan=
27, 2010 at 7:53 AM, Eric Covener <span dir=3D"ltr"><<a href=3D"mailto:=
covener [at] gmail.com">covener [at] gmail.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class=3D"im"=
>On Tue, Jan 26, 2010 at 12:32 PM, Chris Brooks <<a href=3D"mailto:madbu=
ry [at] gmail.com">madbury [at] gmail.com</a>> wrote:<br>
> Good morning Apache list,<br>
><br>
> I have a strange mod_rewrite problem, and I'm not sure how to solv=
e it.=A0 I<br>
> have a RewriteRule that works correctly on one apache daemon, but does=
n't<br>
> work when copied and pasted to the httpd.conf file of a second apache<=
br>
> daemon.<br>
><br>
<br>
</div>What are the versions involved?<br>
<font color=3D"#888888"><br>
--<br>
Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a><br>
</font><div><div></div><div class=3D"h5"><br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br>
--001485f7c30000cfd4047e2585b9--
Re: mod_rewrite problem: $1 and $2 not substituted into
On Wed, Jan 27, 2010 at 8:38 AM, Chris Brooks <madbury [at] gmail.com> wrote:
> Hi Eric,
>
> Thanks for the note.=A0 Both apache and mod_perl are up-to-date:
>
> [root [at] data2 ~]# /usr/local/apache-perl/bin/httpd -v
> Server version: Apache/1.3.41 (Unix)
> Server built:=A0=A0 Sep=A0 2 2009 15:34:13
Both systems are 1.3?
--
Eric Covener
covener [at] gmail.com
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: mod_rewrite problem: $1 and $2 not substituted into
--001485f45450c3b396047e25b432
Content-Type: text/plain; charset=ISO-8859-1
Hi Eric,
Yes, both are 1.3.
I don't have Apache2.pm -- the mod_perl2 module -- installed.
[root [at] data2 ~]# perl -MApache2 -le 'print mod_perl->VERSION'
Can't locate Apache2.pm in [at] INC ( [at] INC contains: /www/perl/
/usr/local/lib/perl5/5.8.7/i686-linux /usr/local/lib/perl5/5.8.7
/usr/local/lib/perl5/site_perl/5.8.7/i686-linux
/usr/local/lib/perl5/site_perl/5.8.7 /usr/local/lib/perl5/site_perl .).
Thank you for taking the time to help!
Chris
On Wed, Jan 27, 2010 at 8:43 AM, Eric Covener <covener [at] gmail.com> wrote:
> On Wed, Jan 27, 2010 at 8:38 AM, Chris Brooks <madbury [at] gmail.com> wrote:
> > Hi Eric,
> >
> > Thanks for the note. Both apache and mod_perl are up-to-date:
> >
> > [root [at] data2 ~]# /usr/local/apache-perl/bin/httpd -v
> > Server version: Apache/1.3.41 (Unix)
> > Server built: Sep 2 2009 15:34:13
>
> Both systems are 1.3?
>
> --
> Eric Covener
> covener [at] gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>
--001485f45450c3b396047e25b432
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Hi Eric,<br><br>Yes, both are 1.3.<br><br>I don't have Apache2.pm -- th=
e mod_perl2 module -- installed.<br><br>[root [at] data2 ~]# perl -MApache2 -le =
'print mod_perl->VERSION'<br>Can't locate Apache2.pm in [at] INC=
( [at] INC contains: /www/perl/ /usr/local/lib/perl5/5.8.7/i686-linux /usr/loca=
l/lib/perl5/5.8.7 /usr/local/lib/perl5/site_perl/5.8.7/i686-linux /usr/loca=
l/lib/perl5/site_perl/5.8.7 /usr/local/lib/perl5/site_perl .).<br>
<br>Thank you for taking the time to help!<br>Chris<br><br><div class=3D"gm=
ail_quote">On Wed, Jan 27, 2010 at 8:43 AM, Eric Covener <span dir=3D"ltr">=
<<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a>></span> w=
rote:<br>
<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class=3D"im"=
>On Wed, Jan 27, 2010 at 8:38 AM, Chris Brooks <<a href=3D"mailto:madbur=
y [at] gmail.com">madbury [at] gmail.com</a>> wrote:<br>
> Hi Eric,<br>
><br>
> Thanks for the note.=A0 Both apache and mod_perl are up-to-date:<br>
><br>
> [root [at] data2 ~]# /usr/local/apache-perl/bin/httpd -v<br>
> Server version: Apache/1.3.41 (Unix)<br>
> Server built:=A0=A0 Sep=A0 2 2009 15:34:13<br>
<br>
</div>Both systems are 1.3?<br>
<font color=3D"#888888"><br>
--<br>
</font><div><div></div><div class=3D"h5">Eric Covener<br>
<a href=3D"mailto:covener [at] gmail.com">covener [at] gmail.com</a><br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g">users-unsubscribe [at] httpd.apache.org</a><br>
=A0 " =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe=
[at] httpd.apache.org">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org">users-help [at] httpd.apache.org</a><br>
<br>
</div></div></blockquote></div><br>
--001485f45450c3b396047e25b432--