DebugKit's toolbar not working

2009-03-31 Thread Steven
I installed debug_kit version 1.0 into app\plugins\debug_kit, my debug level is set to 2, and I have put: var $components = array('DebugKit.Toolbar'); In the relevant controller. However DebugKit is displaying all its output at the bottom of the page between my content, and the SQL output. I

Re: DebugKit's toolbar not working

2009-03-31 Thread Sam Sherlock
Try clearing the browsers cache - I think I to had this issue, just would show top right after clearing cache of ff it started. My projects all have jquery in them, but I believe that debugkit has contains everything it requires (loading jquery via google api - not conclusive on that I expect

Re: DebugKit's toolbar not working

2009-03-31 Thread Brendon Kozlowski
If clearing your cache does not help, your CSS may be interfering with DebugKit's own CSS. On Mar 31, 10:23 am, Sam Sherlock sam.sherl...@gmail.com wrote: Try clearing the browsers cache - I think I to had this issue, just would show top right after clearing cache of ff it started.   My

Re: DebugKit's toolbar not working

2009-03-31 Thread mark_story
DebugKit does not use any jQuery. If you are not getting the toolbar to display, you should check the following. 1. Your HTML output, is the toolbar source there. 2. Your Html output, is the CSS/JS for the toolbar there? 3. If you set $this-view in action or beforeRender you will not see the

Re: DebugKit's toolbar not working

2009-03-31 Thread Steven
After reading your posts I could see that the css and toolbar were loading. I tried installing a it on a fresh cakephp app, to ensure it wasnt a CSS clash, and notices that cakephp had no styling... Then I realised that this issue boiled down to mod_rewrite not being on! Thanks for the replies,