How can I add a feed to the FeedZcollector database using MySQL?
1) First you need a MySQL client that enables you to execute SQL scripts, for example SQLyog is a good client.
2) Then there are two possibilities:
a) Run an SQL script:
Example script:
Insert into Feeds `FeedURL` values (‘http://www.zxz.nl/weblog/atom.xml’)
b) Insert a feed manually:
Open the table ‘Feeds’ and fill a value (a valid webfeed) in the field ‘FeedURL’, for example ‘http://www.zxz.nl/weblog/atom.xml’
3) When enabled, FeedZcollector immediately starts grabbing the feed. Within a few seconds the table ‘Items’ should be filled with the items of the feed.