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
!7 concept User { S name; SecretValue password = new(aGlobalID()); S contact; // e.g. mail address } extend AuthedDialogID { new Ref user; // who is logged in } cmodule GazelleExamples > DynNewBot2 { void start { botName = heading = "Gazelle Examples"; adminName = heading + " Admin"; super.start(); indexConceptFieldCI(User, "name"); } L crudClasses(bool masterAuthed) { L l = super.crudClasses(masterAuthed); if (masterAuthed) ret listPlus(l, User.class); ret l; } }