Arsip

Posts Tagged ‘php’

Install Xdebug PHP Version 5.5.xx

Cara Install Xdebug di PHP Version 5.5.xx

1. Point to : https://xdebug.org/download.php, ke bagian Xdebug 2.5.5

2. Pilih yang PHP 5.5 VC11 TS (32 bit) (karena laptop masih 32 bit), download taro di C:\xampp\php\ext

3. Open the file C:\xampp\php\php.ini with Notepad++ / editor lain

4. Disable output buffering: output_buffering = Off

5. dibagian [XDebug] masih di php.ini set :

zend_extension = “C:\xampp\php\ext\php_xdebug-2.5.5-5.5-vc11.dll”
xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = “C:\xampp\tmp”
;xdebug.profiler_output_name = “cachegrind.out.%t-%s”
;xdebug.remote_enable = 0
xdebug.remote_enable = 1
xdebug.remote_handler = “dbgp”
xdebug.remote_host = “127.0.0.1”
xdebug.trace_output_dir = “C:\xampp\tmp”
;zend_extension=”C:\xampp\php\ext\ZendLoader.dll”
;zend_extension=”C:\xampp\php\ext\opcache.dll”

6. Stop/Start Apache

Kategori:php Tag:,