xdebug无法收集跟踪输出

时间:2015-12-22 15:34:51

标签: xdebug

我正在使用xdebug来分析我的网站效果。

这是我的php.ini配置信息:

zend_extension              = "C:\xampp\php\ext\php_xdebug.dll";

xdebug.remote_enable        = true;

xdebug.remote_host          = 127.0.0.1;

xdebug.remote_port         = 9000 ;

xdebug.profiler_enable      = on;

xdebug.trace_output_dir     = "C:\xdebug\trace";

xdebug.profiler_output_dir  = "C:\xdebug\profiler";

xdebug.auto_trace           = On;

xdebug.show_exception_trace = On;

xdebug.remote_autostart     = On;

xdebug.collect_vars         = On;

xdebug.collect_return       = On;

xdebug.collect_params       = On;

xdebug.show_local_vars      = On;

xdebug.default_enable       = On;

xdebug.remote_handler       = dbgp;

xdebug.max_nesting_level    = 10000;

在这种情况下,我可以链接phpstrom 9.0来调试我的PHP应用程序。

但是当我想在本地文件中收集跟踪数据时,apache会向浏览器返回http 502错误,我不知道为什么会这样。

0 个答案:

没有答案