views:

21

answers:

1

I have a PHP script that is sending a series of http requests to another php script on another server. I have Xdebug installed on both servers and I'm using NetBeans as my debug client. The problem I am having is that NetBeans can't have 2 debug sessions at the same time and you can't spawn 2 NetBeans processes on the same machine. Am I going to have to run Eclipse and NetBeans at the same time?(YUCK!) Or is there a better way?

+1  A: 

I would get another machine, install Netbeans on it, and connect each server to its own debugger. This will help you understand what's happening much better.

Alternate approach: install a virtual machine inside your box, put Netbeans there.

Alex
I am using VMs for development. Thanks for the advice.
Rook