installer.php giriyorum gerekli alanları dolduruyorum ve şu hatayı alıyorum;
DROP TABLE IF EXISTS phpbb_phpBBSecurity
Successfully Completed. CREATE TABLE `phpbb_phpBBSecurity` ( `ban_id` mediumint( NOT NULL auto_increment, `ban_ip` varchar(15) NOT NULL default '', `ban_reason` varchar(50) NOT NULL default '0', `ban_date` int(10) NOT NULL default '0', `ban_attempts` int(10) NOT NULL default '0', `ban_link` text NOT NULL, PRIMARY KEY (`ban_id`) ) TYPE=MyISAM PACK_KEYS=0 AUTO_INCREMENT=1;
Successfully Completed. INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_login_limit', '3');
Error: Duplicate entry 'phpBBSecurity_login_limit' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_notify_admin', '1');
Error: Duplicate entry 'phpBBSecurity_notify_admin' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_notify_admin_id', '2');
Error: Duplicate entry 'phpBBSecurity_notify_admin_id' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_auto_ban', '1');
Error: Duplicate entry 'phpBBSecurity_auto_ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_allowed_sessions', '50');
Error: Duplicate entry 'phpBBSecurity_allowed_sessions' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('admins_allowed', '2');
Error: Duplicate entry 'admins_allowed' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('mods_allowed', '0');
Error: Duplicate entry 'mods_allowed' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('block_unwanted', '1');
Error: Duplicate entry 'block_unwanted' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_DDoS_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_DDoS_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Encoded_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_Encoded_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Union_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_Union_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Clike_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_Clike_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_SQL_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_SQL_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_File_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_File_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Perl_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_Perl_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_total_attempts', '0');
Error: Duplicate entry 'phpBBSecurity_total_attempts' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Cback_Ban', '1');
Error: Duplicate entry 'phpBBSecurity_Cback_Ban' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_Allow_Change', '0');
Error: Duplicate entry 'phpBBSecurity_Allow_Change' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_notify_admin_pm', '1');
Error: Duplicate entry 'phpBBSecurity_notify_admin_pm' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_notify_admin_em', '1');
Error: Duplicate entry 'phpBBSecurity_notify_admin_em' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_DDoS_level', '1');
Error: Duplicate entry 'phpBBSecurity_DDoS_level' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_per_page', '100');
Error: Duplicate entry 'phpBBSecurity_per_page' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_allowed_admins', '');
Error: Duplicate entry 'phpBBSecurity_allowed_admins' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_disallowed_agents', '');
Error: Duplicate entry 'phpBBSecurity_disallowed_agents' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_disallowed_referers', '');
Error: Duplicate entry 'phpBBSecurity_disallowed_referers' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_last_backup_date', '19');
Error: Duplicate entry 'phpBBSecurity_last_backup_date' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_backup_time', '18');
Error: Duplicate entry 'phpBBSecurity_backup_time' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_backup_on', '1');
Error: Duplicate entry 'phpBBSecurity_backup_on' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_backup_folder', 'backup');
Error: Duplicate entry 'phpBBSecurity_backup_folder' for key 1
INSERT INTO phpbb_config (config_name, config_value) VALUES ('phpBBSecurity_backup_filename', 'backup');
Error: Duplicate entry 'phpBBSecurity_backup_filename' for key 1
ALTER TABLE phpbb_users ADD phpBBSecurity_answer TEXT NOT NULL;
Error: Duplicate column name 'phpBBSecurity_answer'
ALTER TABLE phpbb_users ADD phpBBSecurity_question TEXT NOT NULL;
Error: Duplicate column name 'phpBBSecurity_question'
ALTER TABLE phpbb_users ADD phpBBSecurity_login_tries smallint(5) NOT NULL default '0';
Error: Duplicate column name 'phpBBSecurity_login_tries'
ALTER TABLE phpbb_users ADD phpBBSecurity_pm_sent smallint(1) NOT NULL default '0';
Error: Duplicate column name 'phpBBSecurity_pm_sent'
Install complete. Please open phpbb_security.php that was provided with the download. Find the below & change it as posted below. Basically you are changing the return lines in each of the functions to reflect your new fields you just created. If you skip this step, your board WILL NOT function properly.
FIND function phpBBSecurity_AdminConfigName() { return 'phpBBSecurity_max_admins'; }
REPLACE WITH function phpBBSecurity_AdminConfigName() { return 'admins_allowed'; }
FIND function phpBBSecurity_ModConfigName() { return 'phpBBSecurity_max_mods'; }
REPLACE WITH function phpBBSecurity_ModConfigName() { return 'mods_allowed'; }
FIND function phpBBSecurity_UseSpecial() { return 'phpBBSecurity_use_max'; }
REPLACE WITH function phpBBSecurity_UseSpecial() { return 'block_unwanted'; }
CLOSE & SAVE
I have set your board to allow 2 admins & no mods. You need to goto the ACP -> General Admin -> Configuration & scroll down to phpBB Security :: Special Fields. And set the numbers correctly so your admins & mods can view the site.
NOW DELETE THIS FILE.
BU HATAYI ALMAMAK İÇİN NE YAPMALIYIM?
(phpBB Security 1.0.2) LÜTFEN YARDIM
O hataların sebebi daha öncedende veritabanına phpBB Security MOD'unu kurmanız ve veritabanından silmemenizden kaynaklanıyor.
Hata almanız kötü değildir daha önce veritabanınızda o tabloların var olduğunu belirtiyor.Kuruluma normal şekilde devam edebilirsiniz.
Hata almanız kötü değildir daha önce veritabanınızda o tabloların var olduğunu belirtiyor.Kuruluma normal şekilde devam edebilirsiniz.

phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi
Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Daha önce yazdığım phpBB Security kurulumu makalesini okuyun...

phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi
Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
.htaccess için şifre oluşturacaksınız ve o şifreleri kullanacaksınız phpBB Security Kurulumunu anlattığım yerde yazdım zaten?

phpBB Eklenti Kurulumu | Kurallar | phpBB3 İzinleri | Otel Rehberi
Kurallarımız gereği lütfen özel mesaj ile yardım istemeyiniz, cevap vermiyoruz.
Kimler çevrimiçi
Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 2 misafir