xdebug - What are the settings in PHP.ini file to start xdebugger? -


i have below settings in php.ini file xdebug.

[xdebug] ;; zend or (!) xdebug zend_extension_ts ="c:\xampp\php\ext\php_xdebug.dll" xdebug.remote_enable=true xdebug.remote_host=127.0.0.1 xdebug.remote_port=9001 xdebug.remote_handler=dbgp xdebug.profiler_enable=1 xdebug.profiler_output_dir="c:\xampp\tmp" 

you need send cookie called xdebug_profile server. can use browser plugins easy xdebug (firefox) or xdebug helper (chrome).

if want keep debugger active, can add line php.ini:

xdebug.remote_autostart = 1 

https://xdebug.org/docs/remote


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -