hiho@ll
i actually "configure"d and "make" the current free dbg version (2.15.1)
copied dbg.so in my php extension dir on my suse sles10 box, changed php.ini to
[debugger]
debugger.enabled=on
debugger.profiler_enabled=on
debugger.hosts_allow=ALL
debugger.ports=29998
debugger.JIT_enabled = true
debugger.JIT_host = 127.0.0.1
debugger.JIT_port = 29998
[Zend]
zend_extension=/usr/lib64/php5/extensions/dbg.so
btw: i don't have zend platform or extensionmanager,... running (only the above Zend config line)
restart apache and checked phpinfo, which says:
This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
with DBG v2.15.1, (C) 2000,2006, by Dmitri Dmitrienko
what i want to do:
in my browser i enter the url to the host like this
http://myhost_local/test.php?DBGSESSID=234234@127.0.0.1:29998
this should start dbg and connect to 29998 on the susebox (i have my own server running there (and this will be my IDE

))
checking if my server is running on 29998 using telnet succeded without problems
the problem is:
dbg doesn't connect or give any error message which can help
in syslog i don't get any error messages regarding this
so any help on this would be great
intuitively i say it's a config problem in my php.ini (maybe some debugger.allow stuff?)
but why i don't get an error message (in apache log?)
i read topics here in the forum but i doesn't seem to get it up
thx@ll