From: "Matt S Trout" <[EMAIL PROTECTED]>
> Your mod_perl config is loading MyApp.pm twice...
Something is, that's for sure. I can't find anything that would be at fault,
though. grep says that nothing is using or requiring MyApp, and the effected
apache conf (below) only has one PerlModule line.
<VirtualHost 192.168.1.20:80>
ServerName myapp
DocumentRoot /home/rbroom/projects/myapp/MyApp/root
CustomLog /home/rbroom/projects/myapp/logs/access_log combined
ErrorLog /home/rbroom/projects/myapp/logs/error_log
<Directory /home/rbroom/projects/>
AllowOverride All
Options MultiViews Indexes FollowSymlinks
</Directory>
PerlFreshRestart On
<Perl>
use lib '/home/rbroom/projects/myapp/MyApp/lib';
</Perl>
PerlModule MyApp
<Location />
SetHandler perl-script
PerlHandler MyApp
</Location>
<Location /static>
SetHandler default-handler
</Location>
</VirtualHost>
---
Rodney Broom
_______________________________________________
List: [email protected]
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/