Sha256: 178eb162f61c3c013e750b588d055ce4fe1ce6e7f7204aaec93953c9ae7fd0ec
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so ; General config ;Dumps local variables on exception xdebug.show_local_vars=On ;Dump server variables ;xdebug.dump.SERVER=* ;Dump global variables ;xdebug.dump_globals=On ;xdebug.collect_params=4; ; Tracing ;xdebug.auto_trace=On ;xdebug.trace_output_dir= /opt/local/php_traces/ xdebug.trace_output_dir=/tmp xdebug.show_mem_delta=On xdebug.collect_return=On ; Profiler ;xdebug.profiler_enable=1 xdebug.profiler_enable_trigger = on ;xdebug.profiler_output_dir=/opt/local/php_traces xdebug.profiler_output_dir=/tmp ; Set the filenames generated by xdebug to use REQUEST_URI instead of the apache process number ; so all requests to the same page end up in the same file. xdebug.profiler_output_name = cachegrind.out.%R ; Settle for this since Macport's php 5.2 version has a bug that prevents %R from working. xdebug.profiler_output_name = cachegrind.out.%s_%t ; Set xdebug to append data to files instead of overwriting, this means you can view aggregate ; function calls over multiple requests. xdebug.profiler_append = TRUE ; Debugging. You might need to specify your host with some additional options xdebug.remote_enable=1 xdebug.remote_autostart = 1 xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
megalodon-0.1.1 | cookbooks/php/templates/default/mods/xdebug.ini.erb |
megalodon-0.1.0 | cookbooks/php/templates/default/mods/xdebug.ini.erb |