I'm trying to use XDebug in the following scenario
- Physical Host on Windows 7, with Netbeans 7.1.1
- Virtual guest on Ubuntu, with Apache server and PHP 5.3.10
- the PHP code of my website is on a shared folder on Ubuntu, in /var/www/mysite
- the PHP code is accessible from my Windows host, on \\guestIP\mysite, with R/W permissions
- Website accessible from http://mysite.local.fr, from both host and guest
I created a Netbeans project from my Windows Host, pointing to \\guestIP\mysite. In the project Run configuration, I have the following:
- Run as: Local web server
- Project URL: http://mysite.local.fr
- Index file: index.php (does exist in the project)
In the Advanced Run Configuration:
- I checked "Ask every time" (I also tried using "Do not ask" and starting the browser with the session key myself)
- I tried setting '/var/www/mysite' - \\GuestIP\mysite for the mapping (and tried using nothing as well)
- I haven't touched the proxy settings
I have the following in the php.ini on my Ubuntu VM
xdebug.remote_enable = on
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = /tmp
;xdebug.remote_host=localhost,<HostIP>, mysite.local.fr
xdebug.remote_connect_back=1
xdebug.remote_handler=dbgp
xdebug.idekey="netbeans-xdebug"
xdebug.remote_mode=req
None of this works, Netbeans does not stop at any breakpoint from Windows.
Debugging directly from my VM with Netbeans works fine.
Can someone tell me how to get my debugger to work remotely from Windows? Thanks