Warning: session_start(): open(/var/lib/php/sessions/sess_f0eft6io3u6e00j53ar850ga30, 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 byte[] loadBinaryPageSilently(String url) ctex { return loadBinaryPageSilently(openConnection(new URL(url))); } static byte[] loadBinaryPageSilently(URLConnection con) ctex { setHeaders(con); ret loadBinaryPageSilently_noHeaders(con); } static byte[] loadBinaryPageSilently_noHeaders(URLConnection con) ctex { new ByteArrayOutputStream buf; InputStream inputStream = con.getInputStream(); long len = 0; try { len = con.getContentLength/*Long*/(); } catch (Throwable e) { printStackTrace(e); } int n = 0; while (true) { int ch = inputStream.read(); if (ch < 0) break; buf.write(ch); } inputStream.close(); ret buf.toByteArray(); }