I develop my PHP application using Windows, but the code I'm writing actually resides on a Linux VM that's set up similarly to our production environment. I've used another PHP IDE (my own, actually) with XDebug successfully in the past, so I know it's set up correctly. SE just doesn't see any connection attempts from my VM.
I see that it says "Listening for Xdebug connection on 127.0.0.1:9000". The connection is actually coming from 192.168.1.7 over port 9000. Is there any way to change what IP address it listens to for debugger connections?
Here's the relevant portion of my php.ini:
[XDebug]
zend_extension="/usr/lib/php/modules/xdebug.so"
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = 192.168.1.6
xdebug.remote_port = 9000
xdebug.remote_mode = req
xdebug.idekey=slickedit
Xdebug is version 2.0.5.
Ben Dilts