Closed (fixed)
Project:
Feedparser
Version:
5.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Jul 2007 at 21:34 UTC
Updated:
17 Jul 2007 at 10:15 UTC
I could not add a feed since the browser just froze. I tracked it down to the database table "aggregator_feed". Here, it couldn't insert an entry if image was not given. The setting for field "image" seems to be conflicting. On the one hand it is checked "Not Null". On the other hand no default value can be given for type "blob/text". This might be a mysql thing.
I fixed it by removing the "Not Null" criteria.
If anyone else has the same problem, this might be the place to fix in feedmanager.install:
case 'mysqli':
:
:
db_query("CREATE TABLE IF NOT EXISTS {aggregator_feed} (
:
:
- image longtext NOT NULL,
+ image longtext,
Comments
Comment #1
buddaUpdated install file in CVS.
Comment #2
(not verified) commented