Re: [users@httpd] apache2 or mod_perl2 oddball error

2011-06-17 Thread William Bulley
According to Torsten F?rtsch torsten.foert...@gmx.net on Thu, 06/16/11 at 11:16: Try Perl use Apache2::Const -compile=qw/:common/; /Perl What you try to do is use q{Apache2::Const -compile = ':common'}; You can also write PerlModule Apache2::Const It complies the same

[users@httpd] apache2 or mod_perl2 oddball error

2011-06-16 Thread William Bulley
I'm not sure this is the best place to ask about this problem, and this is my first posting to this mailing list. I have already asked the freebsd-questions mailing list about this, but have received no replies as of this writing. I'm running FreeBSD 8.2-STABLE #0: Thu Jun 9 09:25:05 EDT 2011

Re: [users@httpd] apache2 or mod_perl2 oddball error

2011-06-16 Thread Torsten Förtsch
On Thursday, June 16, 2011 16:56:03 William Bulley wrote: The only reference to the Apache2::Const module is in an Apache config include file: PerlModule Apache2::Const -compile = ':common' Try Perl use Apache2::Const -compile=qw/:common/; /Perl What you try to do is use

Re: [users@httpd] apache2 or mod_perl2 oddball error

2011-06-16 Thread William Bulley
According to Torsten F?rtsch torsten.foert...@gmx.net on Thu, 06/16/11 at 11:16: Try Perl use Apache2::Const -compile=qw/:common/; /Perl What you try to do is use q{Apache2::Const -compile = ':common'}; You can also write PerlModule Apache2::Const It complies