I want error messages outputed by xdebug to show up as links in the browser so I can open them quickly using TextMate.
I added the following line to my php.ini file, restarted apache and added a few syntax errors to one of my php scripts but the file name is not showing up as a link. Xdebug is otherwise working fine on my system.
xdebug.file_link_format="txmt://open/?url=file://%f&line=%l"
Are there additional configurations that I need to set up to make this work?
Edit: Here are all the xdebug related configuration settings in my php.ini:
[xdebug]
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_autostart=1
xdebug.file_link_format="txmt://open/?url=file://%f&line=%l"