码迷,mamicode.com
首页 > 其他好文 > 详细

Xdebug在测试环境

时间:2014-12-09 19:06:38      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   on   log   amp   size   php   

在测试环境(php5、nginx)上装xdebug,但是用wincachegrind打开log是空的。
操作步骤:

1.tar?-xvf?解压xdebug的tar包,解压出了xdebug-2.2.4、package.xml。
2.进入xdebug,执行phpize
3.不报错的话?执行./configure?--enable-xdebug
4.make?&&?make?install

5.将xdebug目录下module里xdebug.so复制到了/usr/lib/php5/xdebug/xdebug.so
6.vi?/etc/php5/fpm/php.ini,后面加入?
[Xdebug]
zend_extension?="/usr/lib/php5/xdebug/xdebug.so"
xdebug.profiler_enable=on
xdebug.trace_output_dir="/tmp/xdebug"
xdebug.profiler_output_dir="/tmp/xdebug"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
7.建立log输出目录?mkdir?-p?/tmp/xdebug
8.给log输出目录赋权限?chmod?777?/tmp/xdebug
9.重启nginx

Xdebug在测试环境

标签:style   io   ar   sp   on   log   amp   size   php   

原文地址:http://www.cnblogs.com/stay-sober/p/4153758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!