Joined: 19 Aug 2005 |
Posts: 2 |
|
|
|
Posted: Sat Aug 20, 2005 8:57 am |
|
|
|
|
|
Sure, here:
victor@neon:~/tmp/dbg$ bin/dbg-cli
ListenerBase::ListenerBase
DBG php debugger, version 2.11.32, Copyright 2001, 2005, Dmitri Dmitrienko, www.nusphere.com
[DBG] parse_args(argc=1, argv=(null))
dbg>file /home/victor/public_html/dms/index.php
Reading symbols from /home/victor/public_html/dms/index.php...done.
dbg>set mode off
[DBG] set mode->0 (off)dbg>
dbg>run
ListenerBase::startsession
ThreadBase::ThreadBase
dbh_create_listen_socket(, 10001)
socket=3
open_dbg_session
open_cgi_session
olddir=/usr/home/victor/tmp/dbg
path=/usr/local/bin
open_cgi_session -> pid=2380 OK
ThreadBase::close()
Program exited.
Session start timeout has expired.
Program is not being run.
dbg>q
ListenerBase::~ListenerBase
ListenerBase::stop
ListenerBase::stopJIT
stopping clients
victor@neon:~/tmp/dbg$
|
At the same time:
victor@neon:~$ netstat -ap tcp
Active Internet connections (including servers)
Proto Recv-Q Send-Q Local Address Foreign Address (state)
tcp4 0 0 *.10001 *.* LISTEN
|
root@neon:~# tcpdump -f -i lo0
<empty>
|
I have no firewall running at this moment. phpinfo() shows:
dbg
DBG php debugger, version 2.11.32, Copyright 2001, 2005, Dmitri Dmitrienko, www.nusphere.com
Version 2.11.32
Linked as a shared library.
Profiler compiled, enabled
Directive Local Value Master Value
debugger.enable_session_cookie On On
debugger.enabled On On
debugger.fail_silently On On
debugger.ignore_nops Off Off
debugger.JIT_enabled Off Off
debugger.JIT_host clienthost clienthost
debugger.JIT_level 3 3
debugger.JIT_port 7869 7869
debugger.profiler_enabled On On
debugger.session_nocache On On
debugger.timeout_seconds 300 300
|
|
|