Warning: session_start(): open(/var/lib/php/sessions/sess_d8a8qlb4m4fvdkvor69hv1vfl2, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static void ai_completeDBOfSmartBotsChatLines() {
L msgs = smartBotsChat_readArchive();
for (ChatMsg msg : msgs) {
if (msg.nr == 0) { print("Skipping 0 id"); continue; }
S x = "Smart Bot's Chat line " + msg.nr;
print("Have text for " + x + ": " + msg.text);
post(x, "is", quote(msg.text));
post(x, "is", "a Smart Bot's chat line");
post(x, "was", msg.botMark ? "sent by bot" : "sent by human");
post(x, "was posted at time", dateWithSecondsGMT(msg.time));
}
}