I am running a symfony2 webapp, and Im trying to use XDebug with Sublime Text 3, using this package but I am running with the problem that I need to manually write XDEBUG_SESSION_START in the URL for it to work. Is there a way that Symfony could add this automatically, so I dont lose it in page transitions?
php.ini
[xdebug]
zend_extension = "c:\Program Files (x86)\PHP5\ext\php_xdebug-2.2.2-5.3-vc9.dll"
xdebug.remote_enable = 1
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = req
xdebug.remote_connect_back = 1
xdebug.profiler_enable = 1;