I am working on one web application. The project located on my linux box i.e. server. We are remotely accessing this machine from windows.

I am using xdebug for debugging alongwith Eclipse PDT. xdebug is installed on my server. Below configuration are set in php.ini file ( which is located on server ) :

xdebug.remote_enable=1
xdebug.remote_host=10.88.36.1
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.remote_log = /tmp/xdebug.log

After doing the above configuration setting in php.ini for xdebug, its allowing only one host this time ( i.e. 10.88.36.1)

Here my question is I wanted to allow for multiple hosts. I know in zend debugger there is one configuration parameter present which does this i.e.

zend_debugger.allow_hosts=10.88.36.28, 10.88.36.1

Whether this parameter present in xdebug ? so that i can able to allow multiple hosts to have access to server remotely.

Thanks,

-Pravin

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

http://derickrethans.nl/debugging-with-multiple-users.html set up a DGP proxy..

link|improve this answer
Thanks....provided info helps me lot... – user52534 Sep 1 '10 at 8:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.