Wednesday 17 May 2006 11:59:34 pm
The RewriteRule I use in my Apache configuration is : <b>RewriteRule (.*).php $1.php?DBGSESSID=1@clienthost:10001 [QSA]</b> It's rewrite all php URLs and update the query string (QSA option) with the Php DBG parameters. So if you configure the Eclipse PHP Debugger in remote mode (on port 10001), your code stops at breakpoints, and you will get all eclipse debugging capabilities !! ;-) But it doesn't work in php CLI mode... :-(
|