Reputation: 957
My OS is Mac Mountain lion.
My PhpStorm version is 5.0.4.
Here is my php xdebug info:
I can debug PhpScript Run Type in PhpStorm,It works fine.So I think xdebug configure well.
But after I try follow the "Zero Configure Debug"(Which with Webapplication Run Type),Phpstorm can not connect with the incoming connection.
Here is my step:
lsof -i4TCP:9000
.
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
webide 288 wangfeng 69u IPv6 0xa83881cdce30c579 0t0 TCP *:cslistener (LISTEN)
Open Chrome's Developer Tool,Select Cookies.
XDEBUG_SESSION 19869 localhost / Wed, 30 Jan 2013 05:27:17 GMT 19
Additional:
Does it cause ipv6?
Hopes help!I have try everything,extensions bookmarklets,not work at all.
Upvotes: 11
Views: 12192
Reputation: 3189
It's possible that port 9000 is being used by some other process.
xdebug.remote_port=9001
or another unused port of your choosing.Upvotes: 14