Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorsuthern
     

    I just tried to change some permissions in the Admin plugin

    admin/permissions/manage/
    

    and got this error

    Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 65 bytes) in /web/akelos/lib/AkActiveRecord/AkAssociations/AkHasAndBelongsToMany.php on line 220

    Is there an option somewhere that I can turn on/off, or allocate more? It's running on Ubuntu Server with 512mb of allocated memory.

    •  
      CommentAuthorbermi
     

    Well, that's just 16MB. You can fix it by adding this to your permission_controller.php file

    @ini_set('memory_limit', -1);
    

    Or increasing available memory in your php.ini file.

    • CommentAuthorsuthern
     

    Thanks! I apologize about bugging ya with little questions like this. :-)