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 [2009/11/25 19:16] – billh | docs:mac:builds:xdebug [2014/02/21 16:06] (current) – billh | ||
---|---|---|---|
Line 19: | 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 | ||
+ | * 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:< | * 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 | // make sure the web server can write to this directory, or the | ||
Line 40: | Line 47: | ||
xdebug.show_mem_delta = On | xdebug.show_mem_delta = On | ||
</ | </ | ||
- | | + | |
+ | ===== Debugging ===== | ||
+ | | ||
+ | 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 gotchas ===== | ||
Line 47: | Line 60: | ||
ini_set(" | ini_set(" | ||
</ | </ | ||
- | |||