Fatal error: require_once() [function.require]: Failed opening required 'sites/all/modules/notifications/notifications.node.inc' (include_path='...\sites\all\modules\notifications_extra\notifications_extra\notifications_feed\notifications_feed.module on line 17

Comments

reinis.berzins’s picture

As soon as I enabled any version of Feed Subscriptions submodule (oldest or newest) - my entire site turned into WSOD.
So I opened this file notifications_extra\notifications_feed\notifications_feed.module in the text editor, and on line 16 changed the old path (compatible with notifications 6.x-2.x releases):
require_once drupal_get_path('module', 'notifications') .'/notifications.node.inc';
to a new path (compatible with notifications 6.x-4.x releases):
require_once drupal_get_path('module', 'notifications') .'/includes/node.inc';
So far the problem seems to have gone away.