Page 1 of 1

IIS debugging

PostPosted: November 25th, 2013, 2:34 pm
by mors3
Hi guys,

The project I'm working on has some complicated routes as well as needing (irritatingly) both http AND https.

In a standard PHP + IIS implementation I can get this working locally, but I cannot get PHP Tools debugger to route through it. Is there some workaround I can use for this?

Re: IIS debugging

PostPosted: November 25th, 2013, 4:17 pm
by Miloslav Beno
Hi there,

I'm not sure if I quite understand the situation. But I guess you have some complicated URL rewrite rules and it's hard to initialize XDebug session?

The easiest way in this case would be turn on xdebug.remote_autostart = 1. That would try to initiate debugging session each time you access the page. And if VS is listening (you've hit F5) it would just debug as you'd expect.

Thanks,