]> git.donarmstrong.com Git - infobot.git/blob - FAQ
* Update Changlog to reflect babelfish fix
[infobot.git] / FAQ
1 # $Id$
2
3 Q: The bot exits after I run 'factstats testing' or 'kernel' or anything
4    that uses fork(). Is this a bug in the bot?
5
6 A: No, this is not a bug in the bot but rather Net::IRC.  A cheap hack is
7    to edit /usr/lib/perl5/Net/IRC/Connection.pm, search for DESTROY, and
8    comment out '$self->quit();'
9
10
11 Q: I notice that, in the bot logs, the bot attempts to close all current
12    DCC CHAT connections whenever a forked process ends. Why is this?
13
14 A: Yet another bug in Net::IRC. Currently, DCC CHAT connections are not
15    closed because there is an endless-loop bug when it is done.
16
17
18 Q: I executed 'scripts/setup_user.pl' but it said 'connection refused to
19    localhost'
20
21 A: Looks like a bug in the installation of mysqld. You need to reload or
22    restart the daemon.
23         reload => 'mysqladmin -u root -p reload'
24         restart => '/etc/init.d/mysql stop; /etc/init.d/mysql start'
25
26 Q: How do I get my bot to automatically ask for OP's from chanserv?
27
28 A: By default, the "chanServCheck" option is off in _default. You can
29    set it on a per channel basis or as default. For example, the following
30    commands will enable asking for OP by default, except on #notmychannel
31
32         chanset _default chanServCheck 1
33         chanset #notmychannel chanServCheck 0
34
35 # vim:ts=4:sw=4:expandtab:tw=80