Active
Project:
Aggregator2
Version:
master
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
20 May 2006 at 18:32 UTC
Updated:
20 May 2006 at 19:51 UTC
I upgraded my Drupal installtion from 4.6.6 to 4.7.0, and upgraded to the CVS version of aggregator2. However, all the nodes which were created with aggregator2 in the past seem to have lost their authors, and the system doesn't seem to have matched up the old nodes with aggregator2 (you can't edit the content or anything because I guess the nodes don't know what module they belong to?). Is there any way to fis this? I'd prefer if I didn't have to go through and manually edit/fix each post I aggregated before the upgrade...
Comments
Comment #1
canadrian commentedFixed compatability of old nodes with new version of the module by reading the CVS logs. Apparently I had to run the following SQL:
UPDATE node SET type = 'aggregator2_feed' WHERE type = 'aggregator2-feed';
UPDATE node SET type = 'aggregator2_item' WHERE type = 'aggregator2-item';
That sorted out the node associations. But for some reason all the aggregator2 feed items still have no authors. Any ideas? Is there more SQL I need to run?
Comment #2
canadrian commentedA cron run just completed, and aggregator2 syndicated some more content. However, the new feed items have no author either. I have checked the settings, and the author field is set...
Comment #3
canadrian commentedSorry, had to post a followup to fix the title.