Pressplus - this Mod is abandoned, you shouldn't install it until someone takes over the development.
Meanwhile I'd like to knw how to uninstall the SQL changes - maybe anyone can help if I post the initial installation command (this mod didn't came with an installer)
Code: Select all
INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES
('allow_avatar_remote_fb', '1', 1),
('allow_fb_avatar_remote', '1', 1),
('fb2011_admins', '0', 1),
('fb2011_appid', '0', 1),
('fb2011_comment_enable', 'yes', 1),
('fb2011_comment_posts', '2', 1),
('fb2011_comment_width', '450', 1),
('fb2011_fb_show_bday', 'yes', 1),
('fb2011_fb_show_gender', 'yes', 1),
('fb2011_fb_show_location', 'yes', 1),
('fb2011_lang', 'en_US', 1),
('fb2011_like_action', 'like', 1),
('fb2011_like_color', 'light', 1),
('fb2011_like_enable', 'yes', 1),
('fb2011_like_faces', 'false', 1),
('fb2011_like_font', 'tahoma', 1),
('fb2011_like_layout', 'standard', 1),
('fb2011_like_width', '450', 1),
('fb2011_page', '0', 1),
('fb2011_path', 'fb2011/', 0),
('fb2011_secret', '0', 1),
('fb2011_settings', '3', 1);
CREATE TABLE IF NOT EXISTS `phpbb_fb2011_userdata` (
`user_id` int(11) NOT NULL,
`fb2011_user_settings` int(11) NOT NULL,
`fb2011_fb_id` varchar(255) default NULL,
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
REPLACE INTO `phpbb_modules` (`module_id`, `module_enabled`, `module_display`, `module_basename`, `module_class`, `parent_id`, `left_id`, `right_id`, `module_langname`, `module_mode`, `module_auth`) VALUES
(195, 1, 1, 'profile', 'ucp', 173, 18, 19, 'UCP_PROFILE_AVATAR', 'avatar', 'cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_remote_fb || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)');