Reputation: 14426
We have a very large enterprise Web application developed using Mojave (MVC) framework in PHP. Continuous development is still going on. There is an extensive use of AJAX throughout the system. Debugging an issue is a nightmare currently.
I am wondering if this environment would help in debugging. Or are there any better tools?
Local Development environment: WAMP Windows 64 Eclipse PDT with XDebug (Recently installed) MySQL.
Can we debug Ajax-heavy PHP web applications using XDebug? Can I setup this project in Eclipse? (Import? Or just open the webroot of the application?)? Are there any other better tools?
Upvotes: 1
Views: 1110
Reputation: 36784
Xdebug doesn't support javascript itself, but you can use the browser extensions (that I've just pointed to in your other question) to start a debugging session when you want it (ie, an ajax-ui action): http://xdebug.org/docs/remote#browser-extensions
cheers, Derick
Upvotes: 1