Hallo zusammen,
habe im Backend eine neue User-Gruppe und ein paar neue User angelegt. Anschließend habe ich mich ausgeloggt und wollte mich als ein neuer User (Gast) zum testen mal einlogen. Und dann ist es passiert. Komplettabsturz?!
Kann mein Projekt nicht mehr "öffnen". Egeal welche Page ich versuche im Browser darzustellen, bekomme immer diese Fehlermeldung:
---------------
[Notice] Trying to get property of non-object
GET /silverstripe/admin/
Line 243 in C:\xampp\htdocs\silverstripe\sapphire\security\Group.php
Source
234 return $familyIDs;
235 }
236
237 /**
238 * Returns an array of the IDs of this group and all its parents
239 */
240 public function collateAncestorIDs() {
241 $parent = $this;
242 while(isset($parent)) {
243 $items[] = $parent->ID;
244 $parent = $parent->Parent;
245 }
246 return $items;
247 }
248
249 /**
Trace
* Group->collateAncestorIDs()
Line 669 of Member.php
* Member->Groups()
Line 257 of Permission.php
* Permission::groupList(3)
Line 160 of Permission.php
* Permission::checkMember(Member,CMS_ACCESS_CMSMain)
Line 86 of LeftAndMain.php
* LeftAndMain->canView()
Line 123 of LeftAndMain.php
* LeftAndMain->init()
Line 84 of CMSMain.php
* CMSMain->init()
Line 110 of Controller.php
* Controller->handleRequest(HTTPRequest)
Line 277 of Director.php
* Director::handleRequest(HTTPRequest,Session)
Line 121 of Director.php
* Director::direct(/admin/)
Line 118 of main.php
-------------------
Was ist schief gelaufen? Was habe ich falsch gemacht? Wie kann ich das retten?

