Configure CakePHP in Ubuntu

Configure CakePHP on Linux/Ubuntu is a bit tricky as you have to on the mod-rewrite and set the AllowOverride property from None to All. 1. mod_rewrite is a part of Apache server that can rewrite requested urls on the fly. To enable mod_rewrite in Ubuntu, you just need to write this command in terminal: [sourcecode language=’php’] sudo a2enmod rewrite [/sourcecode] 2.Open and edit the default file from this directory...

Read More