This morning when I uploaded my site to live I came across one of those cryptic CakePHP messages Error: The requested address “/” was not found on this serverwhich I thought I’d blog about just as a note to self. I knew I had access to everything and my Auth setup was copied from DEV where it was working so I went through my normal routine for identifying the problem.
In my case it turned out to be a number of issues (a missing file and a missing database table) but the process to identify and therefore fix the problem is:
After that, if you’re still having “Error: The requested address “/” was not found on this server” then you’re likely to be missing a database table or an include file, so go into your core.php and set:
Configure::write('debug', 2);
This should reveal any remaining issues.
