Code: Select all
ALTER TABLE phpbb_users ADD user_smartfeed_key varchar(32) default NULL;
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_all_by_default', true);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_apache_htaccess_enabled', false);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_atom_10_value', 'ATOM1.0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_auto_advertise_public_feed', true);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_default_fetch_time_limit', (30 * 24));
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_feed_image_path', 'imageset/site_logo.gif');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_max_items', 0);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_max_size', 0);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_new_post_notifications_only', 0);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_privacy_mode', true);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_public_feed_url_suffix_atom', 'feed_type=ATOM1.0&limit=%s&sort_by=%s&feed_style=%s&');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_public_feed_url_suffix_rss', 'feed_type=RSS2.0&limit=%s&sort_by=%s&feed_style=%s&');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_require_ip_authentication', false);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_rfc1766_lang', 'en-GB');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_rss_10_value', 'RSS1.0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_rss_20_value', 'RSS2.0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_show_sessions', false);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_show_username_in_first_topic_post', true);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_show_username_in_replies', true);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_smartfeed_host', 'phpbbservices.com');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_smartfeed_page_url', 'http://phpbbservices.com/smartfeed/');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_smartfeed_title', 'phpBB Smartfeed');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_smartfeed_title_short', 'Smartfeed');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_suppress_forum_names', false);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_ttl', '60');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_version', '2.2.16');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sf_webmaster','')
I have been working on this. You can demo it here by going to the Smartfeed link:gs2088c wrote:I would like to make a suggestion for enhancement. Would you consider allowing the board Admins to require certain forums to be included mandantorily in the feed? For instance, one board I'm manage has a "board guidelines" forum, and if the guidelines are changed, then the feed can send the changes down to the user. This is just an example.