Nodes have no author since module/drupal upgrade
canadrian@elect... - May 20, 2006 - 18:32
| Project: | Aggregator2 |
| Version: | HEAD |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
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...

#1
Fixed 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?
#2
A 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...
#3
Sorry, had to post a followup to fix the title.