Well I think the error is pretty straight forward. It seems like you have a controller that is trying to use a database table (pages) which does not exist. Have you created a custom model Page with a PagesController? If so I would recommend naming it something else (or at least change your routing) as CakePHP has a default pages controller that it may conflict with.. If you are trying to add functionality to the default PagesController. Make sure that you don't have a model file named page.php with class Page in it. The defualt pages controller doesn't need it, and if it may be confusing cake into thinking that you are using it with a database table.
If you want to change your debug settings, they can be found in /app/ config/core.php Dave On Jan 25, 6:02 am, Virtim <[EMAIL PROTECTED]> wrote: > Hey guys. > > I just upgraded to 1.2 beta and i see the debug messages have > changed. > In the earlier versions of Cakephp they were very detailed ( file, > line number, etc ) and now all I get is sometihng like: > > Missing Database Table > > Error: Database table pages for model Page was not found. > > Notice: If you want to customize this error message, create app\views > \errors\missing_table.ctp > > That's it! > > Got any idea if you can change the debuging level, or something? > Or this is just the new version of debug message and that's that? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
