Hi,
I'm a complete newbie trying to get Drupal up and running. I'm having trouble with the aggregator adding new feeds. I'm running Drupal 4.7.2 on XP with Apache 2.0.55, MySQL 5.0.15 and PHP 5. I have searched the forums and issues database and not found anything similar to what I'm experiencing.
So I added a new category to the news aggregator no problem. Then when I try to add a new feed associated with a category I get two conflicting messages. The first says there was an error, the second says that the feed was successfully added. Here's the error:
user warning: Field 'description' doesn't have a default value query: INSERT INTO aggregator_feed (fid, title, url, refresh, block) VALUES (8, 'Yahoo Tax', 'http://rss.news.yahoo.com/rss/taxes', 172800, 5) in C:\DevTools\ApacheGroup\Apache2\htdocs\drupal\includes\database.mysql.inc on line 120.
So I go take a look in the database & there are no records in the aggregator_feed table. However, there is record in the aggregator_category_feed table. But the "fid" field seems to point to a record that doesn't exist in the aggregator_feed table.
I went into the database and changed the description and image fields to allow null values and that seems to have fixed the problems...at least for now.
Shouldn't this be in a transaction to rollback the insert into the aggregator_category_feed table if the insert into the aggregator_feed fails?