Hi.
I’m having some trouble when updating a channel entry for a client’s site. Specifically, I’m receiving the following error.
Fatal error: require_once(): Failed opening required 'Zend/Registry.php' (include_path='.:/usr/share…admin/expressionengine/third_party/url/library/') in /var/...expressionengine/third_party/url/library/Zend/Validate/Abstract.php on line 381This error is presenting itself from this block of code in /admin/expressionengine/controllers/cp/content_publish.php around line 200
if ($this->form_validation->run() === TRUE)
{
if ($this->_save($channel_id, $entry_id) === TRUE)
{
// under normal circumstances _save will redirect
// if we get here, a hook triggered end_script
return;
}
// used in _setup_layout_styles
// @todo handle generic api errors
$this->errors = $this->api_channel_entries->errors;
}Also, not sure how relevant this is, but I have the following plugins enabled for this channel:
- Entry Access (http://cl.ly/3v3X1H3R222N)
- Better Workflow (http://cl.ly/1n0T1k46211M)
Last, it is worth mentioning that these entries are coming from a Cron job pulling from a third-party. The data (in the database) looks identical to channel entries that are working, but there seems to be the occasional hiccup with these channel entries.
Any help would be greatly appreciated.