I've seen all other topics on this subject and incorporated all recommendations, but still it doesn't work. I'm trying to debug my NetBeans project using xDebug that I've installed on remote server. I have all required settings configured properly but still can't get xDebug to stop at a breakpoint (information from phpinfo()):
xdebug.remote_enable On
xdebug.remote_handler dbgp
xdebug.remote_host 62.216.43.2
xdebug.remote_port 9000
xdebug.remote_connect_back On
The ports are equal both on remote server and in Netbeans - 9000.
I've checked "break at first line" flag and made sure that xdebug.idekey is netbeans-xdebug in phpinfo(). After I run debugger it opens the following: after run the debugger will open this url http://my.ip.address.here/inreado.com/?XDEBUG_SESSION_START=netbeans-xdebug The project is set up to run as http://my.ip.address.here/inreado.com.
I presume that the problem could be with remote_host setting or project URL:
My IP address inside local area network is 192.168.0.188, where and my external IP is 62.216.43.2. Either of them as remote_host value yields no result.
Or maybe the problem is with the URL as it's not proper DNS name.
Thanks for any help in advance!