Closed (fixed)
Project:
Activity Stream
Version:
6.x-2.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
9 Nov 2009 at 17:04 UTC
Updated:
10 Aug 2010 at 14:42 UTC
With Simplepie.module installed, errors may occur when trying to invoke Simplepie
Fatal error: Call to undefined function simplepie_require() in sites/all/modules/activitystream/activitystream_feed/activitystream_feed.module on line 13
This is due to module ordering. If Activity Stream runs before Simplepie, the call will fail. If it runs after Simplepie, no errors occur.
Updating to the latest -dev release (remember to run update.php after any module update) will solve this. You may also just run the DB update that the latest -dev release adds:
UPDATE {system} SET weight = 100 WHERE name = 'activitystream';
Comments
Comment #2
iGetcha commentedFor those that don't code like us, you can also do this on the frontend with the Utility module http://drupal.org/project/util
Comment #3
socialnicheguru commentedI had to increase the weight of activitystream_feed to 100 also