Hello guys, good morning!
XDEBUG Configuration
I’m trying a lot of times make xdebug works in my server (AppServ), but It has failed all times.
The main goal is setting up debugger on NetBeans to test my CakePHP application.
I have downladed a “php_xdebug-2.5.0-5.6-vc11.dll” and put into the folder:
C:\AppServ\php5\ext\php_xdebug-2.5.0-5.6-vc11-x86_64.dll
There was a configuiration into my PHP.ini where I set the xdebug module
zend_extension=“C:\AppServ\php5\ext\php_xdebug-2.5.0-5.6-vc11-x86_64.dll”
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9090 (I tried using 9000, but how my app is working service in 9090 port. I took this way)
xdebug.extended_info=1
xdebug.default_enable = On
xdebug.collect_includes = On
xdebug.collect_params = On
xdebug.collect_return = On
xdebug.collect_vars = On
xdebug.dump_globals = On
Making all this configurations, nothing happend, infortunately!
What I have make wrong in this case? Do you have any advice?
tks a lot!!!