Warning: session_start(): open(/var/lib/php/sessions/sess_51mlh017drls3b2ebmlrhs953e, 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 } concept UserCreatedObject { new Ref creator; S repoName; // unique by user, for URL } concept UserPost { S text; } concept PostReference { new Ref post; new Ref referenced; S as; } cmodule GazelleExamples > DynNewBot2 { void start { botName = heading = "Gazelle Examples"; adminName = heading + " Admin"; set enableUsers; super.start(); indexConceptFieldCI(User, "name"); } L crudClasses(bool masterAuthed) { L l = super.crudClasses(masterAuthed); if (masterAuthed) ret listPlus(l, User.class, UserCreatedObject.class); ret l; } }