Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:mac:builds:xdebug [2008/12/19 23:36] – billh | docs:mac:builds:xdebug [2014/02/21 16:06] (current) – billh | ||
---|---|---|---|
Line 5: | Line 5: | ||
* (:!: php will need built WITH cli for command line testing, so don't use %%--disable-cli%% flag) | * (:!: php will need built WITH cli for command line testing, so don't use %%--disable-cli%% flag) | ||
* download source from http:// | * download source from http:// | ||
+ | * :-) make sure to install the xt.vim file and configure your filetypes as per the xdebug documentation, | ||
* view README to see if process has changed | * view README to see if process has changed | ||
* in the root of the extracted files...< | * in the root of the extracted files...< | ||
Line 18: | Line 19: | ||
</ | </ | ||
* edit php.ini (if php was built as shown on this wiki, edit or create php.ini in / | * edit php.ini (if php was built as shown on this wiki, edit or create php.ini in / | ||
- | # set up xdebug | + | ; set up xdebug |
- | zend_extension=/ | + | zend_extension="/ |
- | xdebug.remote_enable=on | + | xdebug.remote_enable=1 |
- | xdebug.remote_handler=dbgp | + | xdebug.trace_enable_triger=1 |
- | xdebug.remote_host=localhost | + | xdebug.trace_output_dir="/ |
- | xdebug.remote_port=9000 | + | xdebug.trace_output_name=" |
+ | xdebug.profiler_enable_triger=1 | ||
+ | xdebug.profiler_output_dir="/ | ||
+ | xdebug.profiler_output_name=" | ||
+ | ;xdebug.remote_handler=dbgp | ||
+ | ;xdebug.remote_host=localhost | ||
+ | ;xdebug.remote_port=9000 | ||
</ | </ | ||
- | * restart apache | + | * restart apache: '' |
* view a phpinfo() page to verify that the xdebug module is loaded | * view a phpinfo() page to verify that the xdebug module is loaded | ||
- | * see NetBeans or other client documentation on how to debug | + | * for typical debugging, you probably want to get helper extensions in Chrome or Firefox which easily set cookies appropriately for debugging, profiling, and tracing; then connect with something like Vdebug for Vim, or with Netbeans |
+ | * for a simple function call dump in php, use one of these lines:< | ||
+ | // make sure the web server can write to this directory, or the | ||
+ | // file won't show up!! | ||
+ | xdebug_start_trace(getcwd() . "/ | ||
+ | xdebug_start_trace(getcwd() . "/ | ||
+ | </ | ||
+ | * other settings for function dumps can be tweaked to show passed parameters, return values, etc...< | ||
+ | ini_set(" | ||
+ | xdebug.collect_includes = On | ||
+ | ini_set(" | ||
+ | xdebug.show_mem_delta = On | ||
+ | </ | ||
+ | |||
+ | ===== Debugging ===== | ||
+ | * to debug from command line, start a debugging listener client such as Netbeans or XDebugClient and run like this:< | ||
+ | php -dxdebug.remote_autostart=On myprogram.php | ||
+ | </ | ||
+ | * Be sure to download Xdebug Helper extension (Chrome), or The easiest Xdebug (Firefox). | ||
+ | * for more information, | ||
+ | |||
+ | ===== xdebug gotchas ===== | ||
+ | xdebug overloads several php functions, so they don't work exactly as they did before. | ||
+ | * var_dump is limited in certain ways by default; one of these items is the maximum children that can be displayed before you get the message "more elements..."; | ||
+ | ini_set(" | ||
+ | </ | ||