tags:

views:

218

answers:

1

Hi Guys,

I have a CakePHP error and I having a hard time to trace the problem. Hope you can help me. Here is the error message:

Missing Database Table
Error: Database table cake_errors for model CakeError was not found.
Notice: If you want to customize this error message, create app/views/errors/missing_table.ctp

Am I missing something here?

Thanks in Advance.

Cheers, Mark

A: 

Its hard to tell why exactly without seeing the code firsthand, one trick i have used with theese kinds of errors though is making "app/views/errors/missing_table.ctp" as inserting the following code

<?php pr( Debugger::trace() ); ?>

This will will help workout what you called to cause this issue in the first place.

Shard
My officemate figured out the problem. He just added a cake_error table in the database and just worked. Problem solved. Thanks for your suggestions :)
marknt15