Closed (fixed)
Project:
Feeds
Version:
6.x-1.0-beta2
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jul 2010 at 19:20 UTC
Updated:
8 May 2011 at 15:28 UTC
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
Comment #1
vacilando commentedThis was caused by another problem. Sorry. Closing the issue.
Comment #2
paoloteo commentedI'm getting the same issue, do you have any hints on this ?
What was he killer for you ?
Thank you
Paolo
Comment #3
vacilando commentedPerhaps Modal Frames. Or jQuery Update. Not sure anymore, sorry.
Comment #4
dave kopecekI'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.
Comment #5
feedbackloop commentedPHP 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?
Comment #6
feedbackloop commentedOK, 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!
Comment #7
dave kopecekYes !!! 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.