Cakephp not working on Ubuntu – Error 404 not found
If you are facing problems with Cakephp not working on Ubuntu after all googling and doing all other things, please try this one:
Open Places->Computer->File System->etc->apache2->sites-available
In this folder open file name ‘default‘
In this file search for
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride none
Order allow,deny
allow from all
</Directory>
and replace it with
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
You will find your cakephp working very fine now.
Hope this will help.
Thanks



