Configuration parameter in xdebug for allowing multiple hosts on remote machine

jazzvirdee184

New Member
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 ) :\[code\]xdebug.remote_enable=1xdebug.remote_host=10.88.36.1xdebug.remote_port=9000xdebug.remote_handler="dbgp"xdebug.remote_log = /tmp/xdebug.log\[/code\]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. \[code\]zend_debugger.allow_hosts=10.88.36.28, 10.88.36.1\[/code\]Whether this parameter present in xdebug ? so that i can able to allow multiple hosts to have access to server remotely.Thanks,-Pravin
 
Back
Top