Warning: session_start(): open(/var/lib/php/sessions/sess_nvg7oeos175vkju3pp0u286p2f, 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
!7
concept LetMeIn {
long clientID;
S where;
S botName;
S botHome;
S rationale;
S otherComments;
}
p { db(); }
html {
if (eqic(uri, "/let-me-in")) {
long clientID = getLong clientID(params);
if (clientID == 0) ret "Need clientID";
cset(uniq LetMeIn(+clientID),
paramsFromMap(params, 'where, 'botName, 'botHome, 'rationale, 'otherComments));
ret "OK, your wish was registered, " + clientID + ". Please stay tuned";
}
ret "huh?";
}