我试图安装ZendDeveloperTools
模块ZF2
beta5的。 下面是我沿袭至今的步骤:
-Successfully安装ZendSkeletonApplication
。
-Downloaded模块放到我的./vendor
目录。
使能的在模块./config/application.config.php
:
<?php
return array(
'modules' => array(
'Application',
'ZendDeveloperTools', // Added this line
),
'module_listener_options' => array(
'config_glob_paths' => array(
'config/autoload/{,*.}{global,local}.php',
),
'module_paths' => array(
'./module',
'./vendor',
),
),
);
-copied ./vendor/ZendDeveloperTools/config/zenddevelopertools.local.php.dist
到./config/autoload/zenddevelopertools.local.php
。
-Edited zenddevelopertools.local.php
如下:
<?php
return array(
'zdt' => array(
'profiler' => array(
'enabled' => true,
'strict' => true,
'verbose' => true,
'flush_early' => false,
'cache_dir' => 'data/cache',
'collectors' => array(),
'verbose_listeners' => array('application' => array(
'ZDT_TimeCollectorListener' => true,
'ZDT_MemoryCollectorListener' => true,
))
),
'toolbar' => array(
'enabled' => true,
'auto_hide' => false,
'position' => 'bottom',
'version_check' => false,
'entries' => array(),
),
),
);
-增加了define('REQUEST_MICROTIME', microtime(true));
在我./public/index.php
-Replaced我./composer.json
与中提供的一个ZendDeveloperTools
模块。
-Removed的,
在线路29将其造成的问题(不应该存在)的端部:
-Ran作曲家更新:
$ php composer.phar update
Updating dependencies
- Updating zendframework/zendframework (dev-master)
Checking out 9f4dd7f13c8e34362340072d0e2d13efe15e4b1f
Writing lock file
Generating autoload files
-增加error_reporting(E_ALL); ini_set('display_errors', '1');
error_reporting(E_ALL); ini_set('display_errors', '1');
到./public/index.php
捕捉到潜在的错误
当我进入我的应用程序,我没有得到任何错误(我得到的骨架应用程序主页),但在Zend开发者工具栏不显示
我缺少的利用,并显示了Zend开发者工具栏?