CakePHP DebugKit / Plugins webroot not being found
cakephp, php
Solution
To anyone else having this problem:
It's not a direct solution, but sort of a little hack
copy the contents of `app/Plugin/DebugKit/webroot`
to a new folder `app/webroot/debug_kit`
The problem is that CakePHP is not seeing the Plugins webroot, but this will bypass this problem.
Problem
I've installed CakePHP's debug kit but it's not loading correctly on my pages, its just a mess of text and arrays at the bottom of the page. My browser is saying that it's getting a 404 on: ``` /debug_kit/css/debug_toolbar.css /debug_kit/js/jquery.js /debug_kit/js/js_debug_toolbar.js /debug_kit/img/cake.icon.png ``` ...so it's not finding the webroots for plugins properly. I have directed my browser to these pages and other combinations i could think of (e.g: /debugkit/css... or /debug_kit/webroot...) but nothing is working. From my google searches it seems like a problem that a few people have had but I haven't seen a solution yet. I have removed the 'sql_dump' element from the bottom of the layout page and still nothing. Any ideas? Thanks