Xdebug 2.4 для PHP Linux 32 bit
[ Скачать с сервера (385.8 Kb) · Скачать удаленно (259.3kB) ]02.10.2019, 15:55

Список версий PHP и Xdebug https://xdebug.org/download

Загрузки с PECL

Транслировано для CentOs 7 32 bit.

Инструкция по трансляции:
1. Unpack the tarball: tar -xzf xdebug-2.4.x.tgz.  Note that you do not need to unpack the tarball inside the PHP source code tree. Xdebug is compiled separately, all by itself, as stated above.
2. cd xdebug-2.4.x
3. Run phpize: phpize   (or ``/path/to/phpize`` if phpize is not in your path).
4. ./configure --enable-xdebug (or: ../configure --enable-xdebug --with-php-config=/path/to/php-config`` if ``php-config`` is not in your
   path)
5. Run: make
6. cp modules/xdebug.so /usr/lib/php/modules
7. add the following line to php.ini: zend_extension="/usr/lib/pjp/modules/xdebug.so"

Записать в каталог /usr/lib/php/modules

Записать в каталог /etc/php.d файл xdebug.ini

zend_extension=/usr/lib/php/modules/xdebug.so
; see http://xdebug.org/docs/all_settings
xdebug.remote_log="/var/tmp/xdebug.log"
xdebug.default_enable = 1
xdebug.auto_trace = 0
xdebug.collect_includes = 1
xdebug.dump.REQUEST = *
xdebug.dump.SESSION = *
xdebug.dump.SERVER = REMOTE_ADDR,REQUEST_METHOD
xdebug.dump_globals = 1
xdebug.dump_once = 1
xdebug.dump_undefined = 1
xdebug.extended_info = 1
xdebug.idekey = "PHPSTORM"
xdebug.max_nesting_level = 256
xdebug.overload_var_dump = 1
xdebug.remote_autostart = 0
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = ""
xdebug.remote_connect_back = 1
xdebug.remote_log = "none"
xdebug.remote_mode = "req"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "/var/tmp"
xdebug.var_display_max_children = 256
xdebug.var_display_max_depth = 16
;xdebug.collect_params = 4
;xdebug.collect_return = 1
;xdebug.collect_assignments = 1
;xdebug.collect_vars = 1
;xdebug.dump.COOKIE =
;xdebug.dump.FILES =
;xdebug.dump.GET =
;xdebug.dump.POST =
;xdebug.file_link_format = ""
;xdebug.var_display_max_data = 1024
;xdebug.profiler_append = 1
;xdebug.profiler_enable = 0
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir="/var/tmp"
;xdebug.profiler_output_name = "cachegrind.out.%H%R"
;xdebug.remote_cookie_expire_time = 3600
;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_name = "trace.%H%R"

Категория: ПО | Добавил: ae999
Просмотров: 278 | Загрузок: 660