I've switched from Eclipse to PHPStorm and everything is working fine but only the debugging with XDebug ans SoapUI is still not working.
XDebug is installed. I used to add a GET parameter ?XDEBUG_SESSION_START=ECLIPSE_DBGP
on the end of the wsdl url in SoapUI and Eclipse stopped at the first breakpoint properly.
When I close Eclipse, start PHPStorm and click to start listening for debug connections nothing happens.
I use ?XDEBUG_SESSION_START=PHPSTORM_DBGP
. Only a Chrome-Plugin is able to start debugging in PHPStorm, but I need to debug with SoapUI too.
Can anyone help me with this issue?
Thank you very much in advance for any help!
xdebug.remote_autostart = 1
. Other than that -- collect xdebug logs xdebug.org/docs/all_settings#remote_log and provide your xdebug configuration (from php.ini as well as fromphpinfo()
output) – LazyOne