Warning: session_start(): open(/var/lib/php/sessions/sess_risf00j1sl7lio3ng7c0ue47n5, 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
// timeout on client side static long smartBot_autoComplete_defaultHardTimeout = 5000; static int smartBot_autoComplete_defaultMaxEntries = 10; static L smartBot_autoComplete(S s) { ret smartBot_autoComplete_defaultHardTimeout; } static L smartBot_autoComplete(S s, long hardTimeout) { L l = jsonDecodeList(loadPageWithTimeout("http://smartbot.botcompany.de/autocomplete/" + urlencode(s) + "?n=" + smartBot_autoComplete_defaultMaxEntries, hardTimeout)); new L out; for (Map map : l) { S follow = getString(map, "follow"); if (nempty(follow)) continue with out.add(s + follow); S whole = getString(map, "whole"); if (nempty(whole)) out.add(whole); } ret out; }