This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post . Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
G
GE
Post
by GE » Tue Oct 29, 2002 5:18 am
I have my bot running (it is a windrop) and keep getting this error
[10:35] Telnet connection: langhost.com/38700
[10:35] Lost connection while identing [langhost.com/38700]
set protect-telnet 1 and I used .+host
what is the best way to troubleshoot this or am I missing something?
my script on the board passes the info to the bot so I don't understand what is going wrong...
here is a piece of the PHP script to communicate with the bot:
$egg=@fsockopen($data[0],$data[1]);
socket_set_blocking($egg,FALSE);
fputs($egg, "{$data[2]}\n");
fputs($egg, "{$data[3]}\n");
fputs($egg, ".say {$data[4]} $mystring\n");
fputs($egg, ".quit\n");
fread($egg,4096);
fclose($egg);
data0=IP data1=port data2=user data3=pass data4=channel
I used my username on the channel to try and connect..
Thanks in advance
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Tue Oct 29, 2002 5:28 am
The ident timeout is what is says.
When connecting to eggdrop, it will lookup the ident of the user trying to connect. In this case, the web-server must no have idetnd running/installed.
Try reducing the idetn timout value in the config file, as the PHP script may timout before eggdrop gets to timeout.
G
GE
Post
by GE » Wed Oct 30, 2002 12:05 am
thanks bro, that is what I needed.. looks like the PHP timed out before the bot did...
you rock!