[Catalyst] Migrating from Catalyst::Log::Log4perl to Log::Log4perl::Catalyst

2012-04-04 Thread Bill Moseley
This may be more of a log4perl question. I have a custom plugin I've been using for a very long time that used Catalyst::Log::log4perl. It added a few features. - added a number of config options to enable logging warns and errors via log4perl (trapping __DIE__ and __WARN__). -

Re: [Catalyst] install_driver(mysql) failed:

2012-04-04 Thread Robyn Jonahs
I installed a DMG of mysql from the mysql site. I am thinking to upgrade MySQL to the current version and try to deal with the location when I do that. I will try to locate the install_name. They have tar balls along with the dmg's so I could try to build it. Thanks for the help. It is all

[Catalyst] Error loading data from schema

2012-04-04 Thread Kenneth S Mclane
I am getting the following error: Caught exception in dbms::Controller::AccountView-list Can't call method all on an undefined value at /tmp/catalyst/dbms/script/../lib/dbms/Controller/AccountView.pm line 7. this is the referenced sub: sub list : Local { my ($self, $c) = @_;

Re: [Catalyst] Error loading data from schema

2012-04-04 Thread Francisco Obispo
The error is because $c-model('dbms::ACCOUNT_VIEW') is not defined. Did you create the view after creating the model? if so, try re-running the create script so it can pick up the changes. Also, to avoid fatal errors, you should attempt to load the model first, and then send to the template a

Re: [Catalyst] Error loading data from schema

2012-04-04 Thread Kenneth S Mclane
From: Francisco Obispo fobi...@isc.org To: The elegant MVC web framework catalyst@lists.scsys.co.uk Date: 04/04/2012 09:47 AM Subject: Re: [Catalyst] Error loading data from schema The error is because $c-model('dbms::ACCOUNT_VIEW') is not defined. Did you create the view after creating the

Re: [Catalyst] Error loading data from schema

2012-04-04 Thread Eden Cardim
Kenneth == Kenneth S Mclane ksmcl...@us.ibm.com writes: Kenneth I am getting the following error: Caught exception in Kenneth dbms::Controller::AccountView-list Can't call method all on Kenneth an undefined value at Kenneth

Re: [Catalyst] Error loading data from schema

2012-04-04 Thread Kenneth S Mclane
From: Eden Cardim edencar...@gmail.com To: The elegant MVC web framework catalyst@lists.scsys.co.uk Date: 04/04/2012 11:13 AM Subject: Re: [Catalyst] Error loading data from schema Kenneth == Kenneth S Mclane ksmcl...@us.ibm.com writes: Kenneth I am getting the following error: Caught

Re: [Catalyst] Error loading data from schema

2012-04-04 Thread Eden Cardim
| dbms::Model::ORANGES::AccountView | class| Kenneth Strange, I do not see it listed, yet it got created and works Kenneth when I call the /index. You probably want $c-model('ORANGES::AccountView'); -- Eden Cardim Need help with your