I am suddenly getting this error despite running Feeds for many months without any problem:

Fatal error: Class 'FeedsConfigurable' not found in /mnt/data-store/www/sites/all/modules/feeds/includes/FeedsImporter.inc on line 31

I tried many things but eventually had to disable the Feeds module.

Hope there is a quick solution. It took me ages to get the feeds working right, and now they are all broken.

Comments

vacilando’s picture

Status: Active » Closed (fixed)

This was caused by another problem. Sorry. Closing the issue.

paoloteo’s picture

I'm getting the same issue, do you have any hints on this ?
What was he killer for you ?

Thank you
Paolo

vacilando’s picture

Perhaps Modal Frames. Or jQuery Update. Not sure anymore, sorry.

dave kopecek’s picture

I'm getting the same issue. Feeds works on development server, dies if feeds is enabled on production box. (All drupal files are the same, DB moved with backup_migrate, all caches cleared on target machine with drush) Dev server has PHP 5.3.3, production server PHP 5.3.5.

feedbackloop’s picture

PHP 5.3.3 and having the same problem. If you change the "require_once" lines to "include" at the top of FeedsImporter.inc, it works. Anyone know the proper fix and why this might be happening?

feedbackloop’s picture

OK, this is not confirmed yet, but I'm very confident that the fix is to edit your php.ini and make sure apc.include_once_override=0. When set to 1, you get weird behavior with require_once as documented here:

http://pecl.php.net/bugs/bug.php?id=15356

I'll update when I confirm this!

dave kopecek’s picture

Yes !!! Thanks @feedbackloop Have APC on the production box, but not on the dev box. Set apc.include_once_override=0 in php.ini, restarted apache & all is well.

Again, thanks on this one. On a deadline and was really stumped by this.