Just installed v2.8, and ran a simple test project that just calls phpinfo(). Program executes, but I'm unable to debug with DBG and don't understand why since it was working before.

.INI settings are:

extension=php_dbg.dll

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[DBG]
debugger.enabled = true
debugger.profiler_enabled = true
debugger.JIT_host = 127.0.0.1
debugger.JIT_port = 7870
debugger.enable_session_cookie = true

Could really use some help getting the debugger working.

Clyde

juanc says:

When using the built-in engine you can only use XDebug since DBG does not support PHP 5.3, at least their open source version which they stopped updating a long time ago.

cwford says:

Thanks, Juan,

Downloaded latest XDebug for PHP 5.3, here's my INI now:

[XDebug]
zend_extension_ts="C:\Program Files\PHP\ext\php_xdebug-2.0.5-5.3-vc6.dll"
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.idekey = vsphp
xdebug.remote_port = 7870

Configured VS PHP for XDebug but still can't hit a breakpoint.

Clyde