martomo / SublimeTextXdebug

Xdebug debugger client for Sublime Text
MIT License
564 stars 89 forks source link

Only breakpoints on index.php work #124

Open ekosynth opened 9 years ago

ekosynth commented 9 years ago

Windows 7 Professional / Sublime 3065 / XAMPP v3.2.1 Installed from Package Control Debugging locally in browser Xdebug v2.2.5

I can only get breakpoints to work on my index.php. Any other page just loads without stopping.

Another (possibly related) issue is I see this warning when I try to stop debugging. Any ideas please?

image

*Project/settings file and Xdebug configuration from the .ini from my config:**

.sublime-project file: { "folders": [ { "follow_symlinks": true, "path": "." } ], "settings": { "xdebug": { "url": "http://127.0.0.1/MassiveAttack/index.php", "super_globals": true, "close_on_stop": true } } }

Xdebug.sublime-settings file: { "break_on_exception": [], "url": "http://127.0.0.1/MassiveAttack/index.php", "super_globals": true, "close_on_stop": true, "launch_browser": true, }

php.ini file xdebug settings:

[XDebug] zend_extension = "C:\xampp\php\ext\php_xdebug.dll" xdebug.profiler_append = 0 xdebug.profiler_enable = 0 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "C:\xampp\tmp" xdebug.profiler_output_name = "xdebug_profile.%p" xdebug.remote_enable = 1 ; xdebug.remote_autostart = 1 xdebug.remote_host = "127.0.0.1" xdebug.remote_handler = "dbgp" ;I added this xdebug.remote_port = 9000 xdebug.trace_output_dir = "C:\xampp\tmp"

Only console info is when I try to restart the Debugging session: error: Please restart Xdebug debugging session. Disconnected from Xdebug debugger engine. [WinError 10053] An established connection was aborted by the software in your host machine