Re: loading plugin in cake 1.3 bootstrap

2015-10-23 Thread Dario Savella
Never mind. Just in case someone is not daring enough to try, it is done in the same way by adding: public $components = array( 'DebugKit.Toolbar' ); to AppController or the specific one where it is needed. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twit

Re: loading plugin in cake 1.3 bootstrap

2015-10-23 Thread Dario Savella
I realize this is ancient history, but I cannot find in the docs/books how to enable DebugKit in CakePHP 1.3. (I am doing support on an old app that seems to have been stripped of all the "unused" files). GitHub docs for DebugKit refer to lighthouse.com, but there does not seem to be anything

Re: loading plugin in cake 1.3 bootstrap

2013-09-24 Thread Bernabe Garro
Hi Chris, did you load the plugin ?? i have the same problem right now On Thursday, January 17, 2013 3:46:59 PM UTC-6, Chris wrote: > > Than why it's not loading when I add in app_controller.php helpers. I > assume it can't find Recaptcha plugin and/or helper within... > var $helpers = array

Re: loading plugin in cake 1.3 bootstrap

2013-01-17 Thread Chris
Than why it's not loading when I add in app_controller.php helpers. I assume it can't find Recaptcha plugin and/or helper within... var $helpers = array('Html', 'Form', 'Recaptcha.Recaptcha'); the whole site is stop working. How can I do this...? On Thursday, January 17, 2013 6:37:10 AM UT

Re: loading plugin in cake 1.3 bootstrap

2013-01-17 Thread AD7six
CakePlugin doesn't exist until 2.0. In 1.3 you don't need to load plugins yourself as they are loaded automatically. I recommend starting here: http://book.cakephp.org/1.3/en/search.html?q=plugins&check_keywords=yes&area=default AD On Thursday, 17 January 2013 10:17:14 UTC+1, Chris wrote: > >

Re: loading plugin in cake 1.3 bootstrap

2013-01-17 Thread Chris
hi AD7six,... I have also tried: App::build(array( 'plugins' => array('Facebook', 'Recaptcha'), )); and I don't think its reading Plugins,... when I add , 'Facebook.Facebook', 'Recaptcha.Recaptcha' into var $helpers = array( the site is stop working,... On Thursday, January 17, 2013

Re: loading plugin in cake 1.3 bootstrap

2013-01-17 Thread Chris
hi AD7six,... how r u,... I'm on 1.3 version On Thursday, January 17, 2013 1:08:34 AM UTC-8, AD7six wrote: > > Evidently you are using syntax from a different version of CakePHP to the > one you have installed. > > What version of Cake are you using? > > AD > > On Thursday, 17 January 2013 08:

Re: loading plugin in cake 1.3 bootstrap

2013-01-17 Thread AD7six
Evidently you are using syntax from a different version of CakePHP to the one you have installed. What version of Cake are you using? AD On Thursday, 17 January 2013 08:38:12 UTC+1, Chris wrote: > > anyone,...?? > > > On Wednesday, January 16, 2013 6:12:55 AM UTC-8, Chris wrote: >> >> hi guys,.

Re: loading plugin in cake 1.3 bootstrap

2013-01-16 Thread Chris
anyone,...?? On Wednesday, January 16, 2013 6:12:55 AM UTC-8, Chris wrote: > > hi guys,... can someone help please,... > I'm having a problem loading plugin from bootstrap > > CakePlugin::load('Facebook'); > > I have also tried: > CakePlugin::load(array('Facebook' => array('bootstrap' => true))