$Revision: 1.14 $
Copy the file config.php.default to config.php, and add your local configuration information (note: most of these settings are further documented in the config.php.default file).
Database settings:
REBLOG_DSNmysql://username:password@hostname/database.
create, drop and alter privileges on the Reblog database so that tables may be created.
After installation, normal use requires select, insert, update and delete privileges.REBLOG_*_TABLEOther settings:
REBLOG_TIMEZONEREBLOG_USE_KEYBOARDREBLOG_AUTH_TYPERF or MT or WP).
See ACCOUNTS.html for more info, but if you just want one
user you can leave the default RF and forget about it.REBLOG_HTTPAUTH_NAME, REBLOG_HTTPAUTH_PASS
REBLOG_AUTHOR_NAMEREBLOG_FEED_TITLEREBLOG_FEED_DESCRIPTIONREBLOG_LINK_NEW_WINDOWSREBLOG_HOWMANYREBLOG_KEEP_DAYSREBLOG_KEEP_UNREADREBLOG_KEEP_DAYS days.REBLOG_GUID_PREFIXREBLOG_ADMIN_FEEDSREBLOG_UPDATE_FEEDSREBLOG_POST_NEWUpload the entire tree to wherever on your server you want Reblog to live.
Create a directory called cache inside your Reblog directory, and make it world-writeable (chmod a+rwX cache).
Load the page http://{your server}/{wherever you put Reblog}/install.php. The installer will first check that it can connect to your DB, and then attempt to create your database tables.
Play around and figure out how it works. It's pretty straightforward. Or see the Users' Guide.
Optionally setup a cron job to perform feed updates on your behalf. Add a call to GET, wget or curl to your crontab, and have it request http://{your server}/{wherever you put Reblog}/update-quiet.php.
Example:
# Update all feeds once per hour
0 * * * * /usr/bin/curl -I "http://example.com/reblog/update-quiet.php"