Hi
I'm using the PHP Debugger as part of VS_php, if that counts towards anything.
But anyway, I needed to test a bunch of scripts outside my default browser (which the IDE launches with the Debugger Session ID and Clienthost GET vars). Since these won't have the same session IDs, I thought I could get the debugger to fire for all page requests by setting
debugger.enable_session_cookie |
in php.ini to false.
Here's the rest of my php.ini:
[DBG]
debugger.enabled = true
debugger.JIT_enabled = true
debugger.fail_silently = false
debugger.profiler_enabled = true
debugger.JIT_host = 192.168.0.23
debugger.JIT_port = 1234
debugger.enable_session_cookie = false
|
But it turns out to not work at all now.
Is there any way to get the PHP Debugger to break regardless on who the client is? I'm wanting to test my scripts that get called by another web-application (which is out of my control) so I need to get PHP DBG to hold on breakpoints I've set.
Thanks