I've downloaded zfdebug v1.5 from here: Downloads - zfdebug - Debug toolbar for Zend Framework - Google Project Hosting, added init() function to my bootstrap:
public function init()
{
$options = array(
// 'jquery_path' => 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
'plugins' => array('Variables',
'Html',
'Database' => array('adapter' => array('standard' => $db)),
'File' => array('basePath' => APPLICATION_PATH),
'Memory',
'Time',
'Registry',
'Cache' => array('backend' => $cache->getBackend()),
'Exception')
);
$debug = new ZFDebug_Controller_Plugin_Debug($options);
$frontController->registerPlugin($debug);
}
, and runned my website. The bar doesn't show up though. What can be wrong?
Oh, and just to make sure, what folder should go to library/zend? /zfdebug, or /zfdebug/library/ZFDebug? (none works anyway :P).
Many thanks for help :)


Sign In
Create Account

Back to top









