cannot add pages anymore
Permalink
when I try to add a new page, I am not able to click the page type, it just doesn't work. Now I always get this:
Fatal error: Call to a member function getPackageID() on a non-object in /var/www/vhosts/emina-rock.com/httpdocs/updates/concrete5.4.2.2/concrete/models/page.php on line 2196
what can I do
Fatal error: Call to a member function getPackageID() on a non-object in /var/www/vhosts/emina-rock.com/httpdocs/updates/concrete5.4.2.2/concrete/models/page.php on line 2196
what can I do
I found solution to your Error!
Loader::model('page');
$pageNewsParent = Page::getByID(HOME_CID);
$setNewsAt = Page::getByPath('/mynews');
$pageType = CollectionType::getByHandle('left_sidebar');
if(!is_object($setNewsAt) || $setNewsAt->cID==NULL ){
$pageNewsParent->add($pageType, array('cName' => 'my News', 'cHandle' => 'my-news'));
why you are getting this error is
the $pageType you should assign like this,
$pageType = CollectionType::getByHandle('left_sidebar');
then no error is come, and in page list u can find "my news" page.
thank you.