Doodles
Doodles copied to clipboard
Index access issue after install package
Hi,
I followed all the tutorial with success and everything worked perfectly except after the install of the doodles package. I add the following error trying to access the CMP in the manager :
Could not find action file at: /www/core/components/doodles/controllers/index.php
So I changed the following line in doodles/_build/data/porperties/transport.menu.php :
$action->fromArray(array(
'id' => 1,
'namespace' => 'doodles',
'parent' => 0,
'controller' => 'controllers/index',
...
To :
$action->fromArray(array(
'id' => 1,
'namespace' => 'doodles',
'parent' => 0,
'controller' => 'index',
...
After uninstall and re-install the newly build package, it worked fine.
@splittingred could please let us know if this normal or if it comes from somewhere else ?