Doodles icon indicating copy to clipboard operation
Doodles copied to clipboard

Index access issue after install package

Open OlivierCuyp opened this issue 13 years ago • 0 comments

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 ?

OlivierCuyp avatar May 14 '12 14:05 OlivierCuyp