2011-04-05 4 views

답변

5

This site 매우 철저한 설치 과정을 거칩니다. XDebug를 설치하는 방법과 Eclipse에 XDebug를 통합하는 방법이 나와 있습니다. 그러나, php.ini 설정 만 빠져 있습니다. XDebug를 사용하면 XDebug가 제대로로드되지 않습니다. 나는 이것을 제안 할 것이다 :

[XDebug] 
;; Only Zend OR (!) XDebug 
; Modify the filename below to reflect the .dll version of your xdebug 
zend_extension="C:\xampp\php\ext\php_xdebug-2.1.1-5.3-vc9.dll" 
xdebug.remote_enable=1 
xdebug.remote_host=localhost ; if debugging on remote server, 
         ; put client IP here 
xdebug.remote_port=9000 
xdebug.remote_handler="dbgp" 
xdebug.profiler_enable=1 
xdebug.profiler_output_dir="C:\xampp\tmp" 
xdebug.profiler_enable_trigger = 0 
xdebug.profiler_output_name = "xdebug_profile.%R::%u" 
xdebug.trace_output_dir = "C:\xampp\tmp" 
관련 문제