Closed geoidesic closed 9 years ago
After composer install and bootstrap.php and AppController additions, I just get this error:
Fatal error: Unsupported operand types in /htdocs/lib/Cake/Core/CakePlugin.php on line 77
The reason seems to be that the $config argument is receiving a string value of "BoostCake" instead of an array.
Actually there were two problems:
I was doing this (which is wrong):
CakePlugin::load('AclExtras','BoostCake);
... this is what works:
CakePlugin::load('AclExtras'); CakePlugin::load('BoostCake');
After composer install and bootstrap.php and AppController additions, I just get this error:
The reason seems to be that the $config argument is receiving a string value of "BoostCake" instead of an array.