Warning: session_start(): open(/var/lib/php/sessions/sess_47s31k2fhff540dj2sng0nqhb0, 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
// appends a new line with computer id and signature static S signWithComputerIDAndDate(S s) { S computerID = getComputerID(); s = rtrim(s) + "\n\n" + "-" + computerID() + ", " + localDateWithMilliseconds() + " (" + localTimeZone().getDisplayName(false, TimeZone.SHORT) + ")"; s = fromLines(toLines(s)); print("Signing text: " + l(s) + " - " + quote(s)): S signed = s + "sig: " + getMySignatureForText(s); signed = fromLines(toLines(signed)); ret signed; }