php - XDebug with eclipse luna freezes at 57 % -


i have problem xdebug running on eclipse.

this php.ini xdebug configuration:

[xdebug]  zend_extension = "c:\xampp\php\ext\php_xdebug-2.2.6-5.6-vc11.dll"  xdebug.remote_enable = on  xdebug.remote_host = "localhost:8080"  xdebug.remote_port=9000  xdebug.remote_handler = dbgp  xdebug.idekey=eclipse_dbgp  xdebug.remote_log=/tmp/xdebug.log 

the run configuration works fine, when try debug, shows:

launcing <debug configurazion name> : (57%) 

and in internal web browser shows me empty page.

how can salve issue???

thanks in avance

yes, solved in way:

first changed file windows>system32>drivers>etc>hosts , added line

127.0.0.1 local.test.it 

secondly, changed configuration of server configuration @ windows>preferences>php>debug. go server settings area , click "php servers">new , following changes: name: server name

debugger: xdebug

base url: local.test.it:your_port.

now works fine.

i hope helpful someone...


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -