xdebug - Eclipse PDT - Unable to begin PHP Debugging - Stuck at 78% -


i can not seem php debugger tool in eclipse launch debugging session.

settings have used configure debugging below.

additionally have changed ports xdebug 19000 , zend debugger 30000

php.ini

; xdebug extension  zend_extension=c:/wamp/bin/php/php5.5.12/zend_ext/php_xdebug-2.2.5-5.5-vc11-x86_64.dll  [xdebug] xdebug.remote_enable=on xdebug.remote_host="localhost" xdebug.remote_port=19000 xdebug.remote_handler="dbgp" 

1) clicked on run -> debug configurations -> server tab run configurations server setting

2) clicked on run -> debug configurations -> debugger setting run configurations debugger setting

3) clicked on window -> preferences -> clicked on php filter expand on left of window -> installed debuggers -> xdebug

window preferences php filter xdebugger setting

4) clicked on window -> preferences -> clicked on php filter expand on left of window -> installed debuggers -> xdebug

run configurations xdebug dbgp debugger setting

5) clicked on run -> debug configurations -> server debugger drop down -> zend debugger settings

zend debugger settings

thank both zulus , axxis comments!

here steps achieve resolution.

1) go http://xdebug.org/wizard.php

2) construct following phpinfo in webserver script , run directly in browser.

<?php     phpinfo(); ?> 

3) highlight entire page or press (ctrl + a) contents of html page (not page html source code) page referenced in step 1.

4) final screen shot shows file download (pointed big arrow) , path (enclosed rectangle).

phpinfo

xdebug phpinfo dump

xdebug phpinfo result

the problem solved placing downloaded php_xdebug-2.3.2-5.5-vc11-x86_64.dll file 1) , not 2).

1) c:\wamp\bin\php\php5.5.12\ext

2) c:\wamp\bin\php\php5.5.12\zend_ext


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -