[APTANA] aptana studio3 xdebug 설치
1) php.ini 수정
;#13.03.18 XDebug 설정 implicit_flush = Off
implicit_flush = On
implicit_flush = On
2) dll 다운로드
1. http://xdebug.org/download.php 에서 dll 다운로드
-> php_xdebug-2.2.1-5.2-vc9-nts.dll
2 .복사
3. php.ini 수정
->
[XDebug]
;; Only Zend OR (!) XDebug
zend_extension="C:\PHP(x86)\ext\php_xdebug-2.2.1-5.2-vc9-nts.dll" //경로 설정 확인 할 것
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=10000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\Windows\Temp"
;; Only Zend OR (!) XDebug
zend_extension="C:\PHP(x86)\ext\php_xdebug-2.2.1-5.2-vc9-nts.dll" //경로 설정 확인 할 것
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=10000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\Windows\Temp"
댓글