php Programming Glossary: xdebug.org
How to track execution time of each line / block of lines / methods in PHP? http://stackoverflow.com/questions/17651854/how-to-track-execution-time-of-each-line-block-of-lines-methods-in-php this question This is what you are looking for http xdebug.org docs profiler . You can set up netbeans to attach to php process..
Remote debugging won't stop at breakpoints http://stackoverflow.com/questions/2359712/remote-debugging-wont-stop-at-breakpoints response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug command breakpoint_set transaction_id 895 state.. response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug command feature_get transaction_id 885 feature_name..
XDebug, how to disable remote debugging for single .php file? http://stackoverflow.com/questions/2570680/xdebug-how-to-disable-remote-debugging-for-single-php-file set xdebug.remote_autostart 0 See documentation http xdebug.org docs remote Important You should change this value through php.ini...
Xdebug successfully connects to DBGP clients, but won't stop at breakpoints http://stackoverflow.com/questions/3288840/xdebug-successfully-connects-to-dbgp-clients-but-wont-stop-at-breakpoints 17 init xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug fileuri file mnt hgfs htdocs mycompany index.php.. engine author CDATA Derick Rethans author url CDATA http xdebug.org url copyright CDATA Copyright c 2002 2010 by Derick Rethans.. response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug command status transaction_id macgdbp status starting..
Xdebug ignores breakpoints http://stackoverflow.com/questions/3422433/xdebug-ignores-breakpoints response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug command breakpoint_set transaction_id 260 id 48060002.. response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug command breakpoint_set transaction_id 333 id 48080005..
xampp 1.7.4 + winxp + eclipse http://stackoverflow.com/questions/6416951/xampp-1-7-4-winxp-eclipse 30 init xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug fileuri file C xampp htdocs test test.php language.. engine author CDATA Derick Rethans author url CDATA http xdebug.org url copyright CDATA Copyright c 2002 2010 by Derick Rethans.. response xmlns urn debugger_protocol_v1 xmlns xdebug http xdebug.org dbgp xdebug status stopping reason ok response Log closed at..
How to debug PHP with netbeans and Xdebug http://stackoverflow.com/questions/693074/how-to-debug-php-with-netbeans-and-xdebug about how to install xdebug from both the vendor http xdebug.org and the netbeans web site. http www.netbeans.org kb docs php..
How to benchmark efficiency of PHP script http://stackoverflow.com/questions/8291366/how-to-benchmark-efficiency-of-php-script the micro premature optimisation route to hell 3 1 http xdebug.org docs profiler 2 http phpadvent.org 2010 profiling with xhgui..
Solution for “Fatal error: Maximum function nesting level of '100' reached, aborting!” in PHP http://stackoverflow.com/questions/8656089/solution-for-fatal-error-maximum-function-nesting-level-of-100-reached-abor the value of xdebug.max_nesting_level in your php.ini http xdebug.org docs all_settings#max_nesting_level share improve this answer..
|