Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorpweil
     
    I've installed the admin plugin and run admin_scaffold. What are the next steps? The brief description in the wiki is not clear about this. It says "After installing you can visit http://yourhost.com/admin (by default admin)". When I go to this url (on my machine it's http://localhost/inventory/admin), I get this error:

    Fatal error: Controller Admin can't handle action index in /Users/pweil/akelos/lib/AkActionController.php on line 2821

    Some guidance, please? Thank you.
    • CommentAuthorsuthern
     

    Did you watch carefully as it installed? Did the last line say "Smart Rollback Occurred"? if so, then it did not properly install.

    • CommentAuthorpweil
     
    Yes it did. The install seemed to go smoothly -- no errors were reported.
    •  
      CommentAuthorbermi
     

    The admin plugin installer ignores your application is on not on the host root, so you will need to manually modify in config/routes.php the line

     $Map->connect('/admin/:controller/:action/:id', array('controller' => 'dashboard', 'action' => 'index', 'module' => 'admin'));
    

    to

    $Map->connect('/inventory/admin/:controller/:action/:id', array('controller' => 'dashboard', 'action' => 'index', 'module' => 'admin'));
    

    Hope it helps.

    • CommentAuthorpweil
     
    ok,thank you. I've done a successful install now (after a number of retries). Now when I look at the users listing page, I get a warning about permissions:

    --->Please change file/dir permissions or enable FTP file handling by setting the following on your config/development.php file

    I now have permissions of 777 on config, and every file inside config, and I still get the warning. What permissions do I need (I am not using FTP)?