Warning: session_start(): open(/var/lib/php/sessions/sess_alsslcrkiqdga0icth7orja5su, 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 File oneOfTheFiles(S... paths) {
if (paths != null) for (S path : paths)
if (fileExists(path))
ret newFile(path);
null;
}
static File oneOfTheFiles(File... files) {
ret oneOfTheFiles(asList(files));
}
static File oneOfTheFiles(Iterable files) {
if (files != null) for (File f : files)
if (fileExists(f))
ret f;
null;
}