Reputation: 2241
I'm using Vista and need to debug PHP, XDebug crashes in Vista, I tried several suggestions but nothing works.
Are there there any other alternative to XDebug that works on Vista and with Eclipse PDT. Easy to install is a plus :-)
Edit: also I have Ubuntu in other PC, so any debugger for Ubuntu will work too. In the package list is a XDebug version but it's very outdated.
Upvotes: 7
Views: 6265
Reputation: 3988
How does it crash? Is it when you are trying to open the cachegrind files? I did find Kcachegrind (on KDE) to be much more stable to Wincachegrind.. But thats only if its the profiling that crashes..
Personally, I'd be using Ubuntu on the other machine or on a virtual machine to develop and debug.
Upvotes: 0
Reputation: 8749
I always liked Zend Studio for debugging amongst other things.
You can also download the zend debugger individually as an eclipse plugin from http://www.zend.com/en/community/pdt
Upvotes: 2
Reputation: 35169
You can, in Ubuntu always get the latest stable Xdebug with:
sudo pecl install Xdebug
You may also need to install the build-essential
on Ubuntu if you've not already done it.
sudo apt-get install build-essential
Upvotes: 0