1. Intră în phpMyAdmin, apasă pe căsuţa pe care scrie SQL aflată în partea stângă a paginii, sus, acum îţi apare altă căsuţă în care va trebui să pui codul:
Cod: Selectaţi tot
CREATE TABLE `phpbb_reputations` (
`rep_id` mediumint(Cool NOT NULL auto_increment,
`rep_from` mediumint(Cool NOT NULL,
`rep_to` mediumint(Cool NOT NULL,
`rep_time` int(11) NOT NULL,
`rep_post_id` mediumint(Cool NOT NULL,
`rep_point` int(11) NOT NULL,
`rep_comment` mediumtext NOT NULL,
`bbcode_uid` varchar(Cool NOT NULL,
`bbcode_bitfield` varchar(255) NOT NULL,
`enable_bbcode` tinyint(1) unsigned NOT NULL,
`enable_smilies` tinyint(1) unsigned NOT NULL,
`enable_urls` tinyint(1) unsigned NOT NULL,
PRIMARY KEY (`rep_id`)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;
ALTER TABLE `phpbb_users` ADD `user_reputation` INT( 11 ) NOT NULL ;
ALTER TABLE `phpbb_users` ADD `user_hide_reputation` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0';
ALTER TABLE `phpbb_groups` ADD `group_reputation_power` TINYINT( 4 ) NOT NULL DEFAULT '0';
INSERT INTO `phpbb_acl_options` (`auth_option`, `is_global`, `is_local`, `founder_only`) VALUES
('u_rp_give', 1, 0, 0),
('u_rp_view', 1, 0, 0),
('u_rp_disable', 1, 0, 0),
('u_rp_ignore', 1, 0, 0);
INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES
('rp_block_per_points', '50'),
('rp_comment_max_chars', '255'),
('rp_display', '2'),
('rp_enable', '0'),
('rp_max_blocks', '10'),
('rp_max_power', '5'),
('rp_membership_days', '365'),
('rp_min_posts', '100'),
('rp_recent_points', '5'),
('rp_reg_bonus', '5'),
('rp_time_limitation', '12'),
('rp_total_posts', '500'),
('rp_user_spread', '10');
Din câte observ nu este corect, phpBB citeşte codul ca şi emoticon.
2. Mergi în Panoul Administratorului, în tab-ul Styles, jos o să ai Şabloane, Teme şi Imagini, apasă pe Şabloane şi dă click pe Reîmprospătare, apoi te va întreba dacă eşti de acord şi alegi Da.