Xdebug profiler is not working?

六眼飞鱼酱① 提交于 2019-12-01 02:33:28

First of all, you need to make sure that the user under which your webserver runs at actually has write permissions to the directory that you specified— and it needs to exist. It is also possible that Xdebug doesn't like spaces in paths, Although that should work just fine, I would try setting:

xdebug.profiler_output_dir = "D:/Web Development Projects/Profiler"

As the \ + char might be an escape sequence.

The problem solved !

The problem generated because of the log file name.

I just changed it to:

xdebug.profiler_output_name = "callgrind.out.%t-%s"

and working properly !

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!