]> git.donarmstrong.com Git - infobot.git/blob - doc/FAQ
Initial revision
[infobot.git] / doc / FAQ
1 Q: The bot exits after I run 'factstats testing' or 'kernel' or anything
2    that uses fork(). Is this a bug in the bot?
3
4 A: No, this is not a bug in the bot but rather Net::IRC.  A cheap hack is
5    to edit /usr/lib/perl5/Net/IRC/Connection.pm, search for DESTROY, and
6    comment out '$self->quit();'
7 A: Apply the patches in the patches/ directory.
8
9
10 Q: I notice that, in the bot logs, the bot attempts to close all current
11    DCC CHAT connections whenever a forked process ends. Why is this?
12
13 A: Yet another bug in Net::IRC. Currently, DCC CHAT connections are not
14    closed because there is an endless-loop bug when it is done.
15
16
17 Q: I executed 'scripts/setup_user.pl' but it said 'connection refused to
18    localhost'
19
20 A: Looks like a bug in the installation of mysqld. You need to reload or
21    restart the daemon.
22         reload => 'mysqladmin -u root -p reload'
23         restart => '/etc/init.d/mysql stop; /etc/init.d/mysql start'