up vote 1 down vote favorite
share [g+] share [fb]

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"
link|improve this question

Your Xdebug version? – erenon May 18 '10 at 16:42
I have Xdebug v2.0.5 – Rafael Vega May 20 '10 at 18:27
feedback

2 Answers

up vote 1 down vote accepted

I am running snow leopard with xdebug 2.1.0RC1 and can click errors as links that take me to the correct line in textmate so it is possible to have this working.

link|improve this answer
A few days after posting this question I tried with Xdebug 2.1.0beta3 and It didn't work either. 2.1.0RC1 did the trick. – Rafael Vega Jun 28 '10 at 19:44
feedback

i found solution: so just replace the xdebug wich comes with MAMP with the lastest one frome here

http://code.activestate.com/komodo/remotedebugging/

then move the link part above the extension part like

[xdebug] xdebug.file_link_format="txmt://open?url=file://%f&line=%1" zend_extension="/Applications/MAMP/bin/php5.3/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so"

;xdebug.remote_enable=1 ;xdebug.remote_host=localhost ;xdebug.remote_port=9000 ;xdebug.remote_autostart=1

than happy happy ;-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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