Last active
February 18, 2016 04:55
-
-
Save vansosnin/81b5fe721f0a2b7c7ba4 to your computer and use it in GitHub Desktop.
PHP config xdebug PHPStorm + OpenServer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Xdebug] | |
zend_extension="%sprogdir%/modules/php/%phpdriver%/ext/php_xdebug.dll" | |
;xdebug.default_enable = 1 | |
xdebug.auto_trace = 0 | |
xdebug.collect_includes = 1 | |
;xdebug.collect_params = 4 | |
;xdebug.collect_return = 1 | |
;xdebug.collect_assignments = 1 | |
;xdebug.collect_vars = 1 | |
xdebug.dump.REQUEST = * | |
xdebug.dump.SESSION = * | |
xdebug.dump.SERVER = REMOTE_ADDR,REQUEST_METHOD | |
;xdebug.dump.COOKIE = | |
;xdebug.dump.FILES = | |
;xdebug.dump.GET = | |
;xdebug.dump.POST = | |
xdebug.dump_globals = 1 | |
xdebug.dump_once = 1 | |
xdebug.dump_undefined = 1 | |
xdebug.extended_info = 1 | |
;xdebug.file_link_format = "" | |
xdebug.idekey = "PHPSTORM" | |
;xdebug.manual_url = "http://www.php.net" | |
xdebug.max_nesting_level = 256 | |
xdebug.overload_var_dump = 1 | |
;xdebug.profiler_append = 1 | |
xdebug.profiler_enable = 0 | |
xdebug.profiler_enable_trigger = 0 | |
xdebug.profiler_output_dir="%sprogdir%/userdata/temp/xdebug/" | |
xdebug.profiler_output_name = "cachegrind.out.%H%R" | |
;on/off debug | |
xdebug.remote_autostart = on | |
xdebug.remote_enable = on | |
xdebug.remote_handler = "dbgp" | |
xdebug.remote_host = "localhost" | |
;xdebug.remote_log = "none" | |
xdebug.remote_mode = "req" | |
xdebug.remote_port = 9001 | |
;xdebug.scream = 1 | |
;xdebug.show_exception_trace = 0 | |
;xdebug.show_local_vars = 1 | |
;xdebug.show_mem_delta = 1 | |
;xdebug.trace_format = 1 | |
;xdebug.trace_options = 1 | |
xdebug.trace_output_dir = "%sprogdir%/userdata/temp/xdebug/" | |
;xdebug.trace_output_name = "trace.%H%R" | |
xdebug.var_display_max_children = 256 | |
;xdebug.var_display_max_data = 1024 | |
xdebug.var_display_max_depth = 16 | |
;xdebug.default_enable = 1 | |
;xdebug.remote_autostart = 1 | |
;xdebug.remote_enable = 1 | |
;xdebug.remote_mode = "req" | |
;xdebug.remote_port = 9001 | |
;xdebug.idekey = "PHPSTORM" | |
;xdebug.profiler_append = on | |
;xdebug.profiler_enable = on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment