Skip to content
Snippets Groups Projects
Commit ebdd59ae authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Improve hints how to activate the debugger

parent 51e7f726
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,8 @@
;zend_extension = <%= Mixlib::ShellOut.new("php -i | grep extension_dir | awk 'NR==1 {print $(NF)}'").run_command.stdout.strip %>/xdebug.so
zend_extension=xdebug.so
; to activate the profiler: Change the variable "xdebug.mode" to "profile" instead of "debug" and use "xdebug.start_with_request" with "trigger"
; To activate the cachegrind profiler: Change the variable "xdebug.mode" to "profile" instead of "debug" and use "xdebug.start_with_request" with "trigger" instead of "default".
; You must restart the PHP FPM afterwards: e.g. "service php7.3-fpm restart".
<% node['xdebug']['directives'].sort_by { |key, val| key }.each do |directive, value| -%>
<%= "xdebug.#{directive} = #{value}" %>
<% end -%>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment