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

    can anybody help me about booklink tutorial. Everything is fine until I came to part when i should open the links http://localhost/booklink/author, http://localhost/booklink/books. The message displayed is:

    "Object not found!

    The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

    If you think this is a server error, please contact the webmaster.

    Error 404
    localhost
    10/04/08 19:32:04
    Apache/2.2.9 (Win32) DAV/2 mod_ssl/2.2.9 OpenSSL/0.9.8h mod_autoindex_color PHP/5.2.6 "

    I am using xampp for working environment.
    Any suggestion what should I do... because it gets very frustrating :). Thanks!
    • CommentAuthorarnoschn
     
    Hi,

    please show me your version of:

    Alias /booklink "/path/to_your/booklink/public"

    <Directory "/path/to_your/booklink/public">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>


    Which should be inside your httpd.conf from xampp somewhere.

    If you added it, did you restart xampp?
    • CommentAuthorenser
     
    Yes... you are right I didn't add that :).
    Now I add in httpd.conf:

    Alias /booklink "C:\xampp\htdocs\booklink\public"

    <Directory "C:\xampp\htdocs\booklink\public">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    and it works fine...I think :).
    Thanks a lot arnoschn!!!