我曾尝试使用 cakephp Debugkit 工具栏cakephp 2.1.3
...但它不能正常工作..
我已经在它上面实现了调试套件,cakephp 1.3
它工作正常..
我下载了调试工具包cakephp 2.1.3
。我重新检查了那个..
我如何实施它?
app/plugin/DebugKit ///this is my path for debugkit
我检查了我的调试模式是 2..
Configure::write('debug', 2);
我如何在 Appcontroller 中加载我的调试工具包..'
public $components = array('DebugKit.Toolbar');
它显示错误
Parse error: syntax error, unexpected T_FUNCTION in /var/www/guest1/cakephp-2.1.3/app/Plugin/debug_kit/Controller/Component/ToolbarComponent.php on line 165
我从不同的来源下载调试工具包,但结果相同。
谢谢 !
它在这个函数和行中显示错误
public function implementedEvents() {
$before = function ($name) {
return function () use ($name) {
DebugTimer::start($name, __d('debug_kit', $name));
};
};
$after = function ($name) {
return function () use ($name) {
DebugTimer::stop($name);
};
};
我最后在 bootstrap.php 中加载了文件
CakePlugin::loadAll();
错误:-
Error: DebugKit.ToolbarComponent could not be found.
Error: Create the class ToolbarComponent below in file: /var/www/guest1/cakephp-2.1.3/app/Plugin/DebugKit/Controller/Component/ToolbarComponent.php