Error when saving editing text
Permalink
Hi all,
I get an error when I try to save a text I just edited. I can login into the cms (concrete 8.1.0) (even though mostly I have to type my username and password twice). I can go to the dashboard, sitemap and all but after I edited a text and I click save I get the following error:
Also after closing this error I can't acces the dashboard anymore, anyone had this problem before? The error log says it has something to with the following file:
concrete/controllers/backend/user_interface/page.php on line 29 which says the following:
I get an error when I try to save a text I just edited. I can login into the cms (concrete 8.1.0) (even though mostly I have to type my username and password twice). I can go to the dashboard, sitemap and all but after I edited a text and I click save I get the following error:
$cID = $request->request->get('cID'); } if ($cID) { $page = ConcretePage::getByID($cID); } if (is_object($page) && !$page->isError()) { $this->setPageObject($page); $request->setCurrentPage($this->page); } else { throw new \Exception(t('Access Denied')); } } public function setPageObject(ConcretePage $c) { $this->page = $c; $this->permissions = new Permissions($this->page); $this->set('c', $this->page); $this->set('cp', $this->permissions); }
Also after closing this error I can't acces the dashboard anymore, anyone had this problem before? The error log says it has something to with the following file:
concrete/controllers/backend/user_interface/page.php on line 29 which says the following:
if (is_object($page) && !$page->isError()) { $this->setPageObject($page); $request->setCurrentPage($this->page); } else { throw new \Exception(t('Access Denied')); }