page1_1 QuickStart guide - MySQL (under construction)

How to create a MySQL FeedZcollector database?
1) You need a MySQL client that enables you to execute SQL scripts, for example SQLyog.
2) Connect to the appropriate database server1
3) Run the script FeedZcollector.sql (residing in the folder c:/Program Files/FeedZcollector/) once.
This script creates a database named FeedZcollector on the database server.

How to add a feed to the MySQL database?
1) You need a MySQL client that enables you to execute SQL scripts, for example SQLyog.
2) Then there are two possibilities:
a) Run an SQL script:
Example script:
Insert into Feeds `FeedURL` values (‘http://www.scripting.com/rss.xml’)
or
b) Insert a feed manually:
Open the table ‘Feeds’ and fill a value (a valid webfeed) in the field ‘FeedURL’, for example ‘http://www.scripting.com/rss.xml’

» QuickStart guide Index
» QuickStart guide - General