Ok, i'm trying to use the Slywalker plugin for Bootstrap, implemented in Cakephp. Link -> https://github.com/slywalker/cakephp-plugin-boost_cake
I followed the steps as specified. I downloaded the zip file, renamed the folder to "BoostCake" and placed into the plugins folder, enabled the plugin in bootstrap.php file, and it just does not work! It's making me go crazy!
I then tried to put some additional stuff in, like putting this into the composer.json (composer.json which came with the plugin) ->
{ "require": { "slywalker/boost_cake": "*" } }
And i put this in the AppController ->
class AppController extends Controller {
public $helpers = array(
'Session',
'Html' => array('className' => 'BoostCake.BoostCakeHtml'),
'Form' => array('className' => 'BoostCake.BoostCakeForm'),
'Paginator' => array('className' => 'BoostCake.BoostCakePaginator'),
);
public $components = array(
'Auth' => array(
'flash' => array(
'element' => 'alert',
'key' => 'auth',
'params' => array(
'plugin' => 'BoostCake',
'class' => 'alert-error'
)
)
)
);
} My php version is upto date, and i am using Cakephp 2.4.6 Can someone please tell me what the hell is going wrong?! Many thanks in advance!