码迷,mamicode.com
首页 > Web开发 > 详细

netbeans调试配置

时间:2015-01-19 12:23:37      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

apache端口8050,xdebug端口9000
1.把项目放到apache的htdocs下(一定要放在htdocs上,要么调试的时候xdebug会一直卡在“等待连接中”)
2.把php_xdebug-2.1.2-5.2-vc6.dll拷贝到php安装目录下的ext目录下
3.配置php.ini
zend_extension_ts="D:/php-5.2.17/ext/php_xdebug-2.1.2-5.2-vc6.dll"
[xdebug]
xdebug.remote_enable=on
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir="D:/tmp"
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
4.netbeans中
1)常规->选择流程其
2)php->调试输入会话ID(会话ID可在phpinfo中查看“xdebug.idekey”)
 
启动调试后可以看到http://localhost:8050/项目名称/index.php

netbeans调试配置

标签:

原文地址:http://www.cnblogs.com/biboxie/p/4233355.html

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