Warning: session_start(): open(/var/lib/php/sessions/sess_4phtk9b05vqpq1goflc2e7gmqo, 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_completeDBOfStefansChatLines() {
L msgs = stefansChat_readArchive();
for (ChatMsg msg : msgs) {
if (msg.nr == 0) { print("Skipping 0 id"); continue; }
S x = "Chat line " + msg.nr;
print("Have text for " + x + ": " + msg.text);
post(x, "is", quote(msg.text));
post(x, "is", "a chat line");
post(x, "was", msg.botMark ? "sent by bot" : "sent by human");
post(x, "was posted at time", dateWithSecondsGMT(msg.time));
}
}