Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorserave
     
    Im working with WAMP2.0, Akelos 0.8
    I already created the database, but when i enter the dabases name with the user and the password, and press continue this is what i get:
    Warning: Cannot modify header information - headers already sent by (output started at C:\dev\akelos\lib\AkActionController.php:1703) in C:\dev\akelos\lib\AkResponse.php on line 109

    Need help,
    thanks
    • CommentAuthorKaste
     

    I really would like to know what was echoed before this warning. What is your setting of allow_call_time_pass_reference in your php.ini.

    • CommentAuthorserave
     
    allow_call_time_pass_reference is off,
    I just fill the database configuration information, according to the databases created previously. this where the scripts
    mysql> CREATE DATABASE booklink;
    mysql> CREATE DATABASE booklink_dev;
    mysql> CREATE DATABASE booklink_tests;

    mysql> GRANT ALL ON booklink.* TO bermi@localhost IDENTIFIED BY "pass";
    mysql> GRANT ALL ON booklink_dev.* TO bermi@localhost IDENTIFIED BY "pass";
    mysql> GRANT ALL ON booklink_tests.* TO bermi@localhost IDENTIFIED BY "pass";

    mysql> FLUSH PRIVILEGES;
    mysql> exit
    • CommentAuthorKaste
     

    allow_call_time_pass_reference must be on.

    • CommentAuthorKaste
     

    And you have to set the privileges to your username/password. not bermi's.

    • CommentAuthorserave
     
    the privileges must be given to the user i created for the database or for which user?

    thanks.

    PS: i already tried turning allow_call_tieme_pass_reference on and it didn't work
    • CommentAuthorKaste
     

    yes, the user you then use in your config/config.php

    the allow_call_time_pass_reference was a blind shot. generally the warning doesn't do any harm and the application should work. Of interest only is what the output before that warning was.