Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-25 Thread Carl Johnstone
Perl use lib qw(/.../bylines); # This block only matters when the app is outside the default Perl areas /Perl Is that really what you have? ... probably is right, and you are missing the lib of the end of the path? We use: Perl use lib qw(/path/to/CatProject/lib/); /Perl Carl

[Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread Randy J. Ray
I am baffled by both of these, and I don't (usually) baffle that easily. First, the background: - Latest Catalyst, C::E::Apache, and all related modules - Using SQLite from within DBIC for model storage My application runs fine from the test-server scripts that catalyst.plauto-generated. When I

Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread John Goulah
On 5/24/07, Randy J. Ray [EMAIL PROTECTED] wrote: Subroutine Bylines::Model::DB::class redefined at /usr/lib/perl5/site_perl/5.8.5/DBIx/Class/Schema.pm line 415. Subroutine Bylines::Model::DB::source redefined at /usr/lib/perl5/site_perl/5.8.5/DBIx/Class/Schema.pm line 415. Subroutine

Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread Randy J. Ray
On 5/24/07, John Goulah [EMAIL PROTECTED] wrote: the above error eems to indicate a problem on line 259. probably should setup like this:

Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread John Goulah
On 5/24/07, Randy J. Ray [EMAIL PROTECTED] wrote: On 5/24/07, John Goulah [EMAIL PROTECTED] wrote: the above error eems to indicate a problem on line 259. probably should setup like this: http://search.cpan.org/~agrundma/Catalyst-Engine-Apache-1.11/lib/Catalyst/Engine/Apache/MP13.pm

Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread Matt S Trout
On Thu, May 24, 2007 at 07:17:29PM -0700, Randy J. Ray wrote: Perl use lib qw(/.../bylines); # This block only matters when the app is outside the default Perl areas /Perl PerlModule Bylines# This is line 259 Location /bylines SetHandler perl-script PerlHandler Bylines

Re: [Catalyst] Two Strange Catalyst/Apache Issues

2007-05-24 Thread Perrin Harkins
On 5/24/07, Randy J. Ray [EMAIL PROTECTED] wrote: PerlModule Bylines# This is line 259 This recommended way to do this in mod_perl is actually to make a separate startup.pl file that loads your modules, not to list them in httpd.conf. Then you call it with PerlRequire. You can find