2011-04-05 10 views

Respuesta

5

This site pasa por un proceso de instalación muy completo. Dice cómo instalar XDebug y cómo integrarlo con Eclipse. La única falla, sin embargo, es la configuración de php.ini. Si usa el que le da, XDebug no se cargará correctamente. Sugeriría esto:

[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" 
Cuestiones relacionadas