Merhabalar bir php destekli küçük bir script kullanıyorum.Fakat biri chatte yetkisi olmadan giriş yapıyor ve isterse trafiğide göçertebiliyor.

Ben baktım nasıl yapıyor sürekli araştırıyorum fakat bazı değişikler çerçevesinde bişey yapamadım malesef ve bu kişiler hala chati işgal etmekte.İyi bir php bilgisi sahip kişiler yardımcı olursa veya önerilerde bulunursa çok sevinirim.


# CHANGUONDYU 10/2009 #

date_default_timezone_set('Asia/Ho_Chi_Minh'); // change your location for true time
#read this page to set true timezone http://www.php.net/manual/en/timezones.php

############ SETTINGS ########
/*
false = NO
true = YES
*/

// Security
$config['check_domain_reffer'] = false; // Check reffer url
$config['check_chatbox_key'] = false; // check ChatboxKey

$config['forumlink'] = 'haxballturkiye.com,haxballturkiye.com'; //Forum url
$config['chatboxkey'] = 'your_chatbox_key'; // ChatboxKey

$config['password_tools'] = "şifre kısmı"; // Password for tools.php
$config['managegroup'] = "3,4"; // Managed Group 3=Smod, 4=Admin

// POST
$config['checkflood'] = true; // Check Flood, spam
$config['strip_slash'] = true; // Strip Slash ?
$config['max_message_len'] = 255; // Max message character
$config['remove_badword'] = true; // Check bad word ?

// Message
$config['autorefresh'] = 10; // Auto refresh time (in second)
$config['maxmessage'] = 30; // Number of message show on chatbox
$config['archive_messageperpage'] = 50; // Number of message per page on Archive popup
$config['removelink'] = false; // Remove link
$config['linkmask'] = true; // Mask link [link]

$config['use_me'] = true; // Use /me command ?
$command['me'] = '/me';

// Time Setting
$config['showtime'] = true; // Show/Hide Time
$config['timeformat'] = "h:i A"; // Time format
$config['dateformat'] = "d-m"; // date format


############ PHRASE ###############
$phrase['prune'] = "chatbox silinen";
$phrase['archive'] = "Arşiv";
$phrase['today'] = "Bugün";
$phrase['yesterday'] = "Dün";
$phrase['linkmask'] = "[Link]";
$phrase['linkremoved'] = "[Link kaldırıldı]";
$phrase['bannotice'] = "Yasaklandın.";
$phrase['notice'] = "Not: ";

$phrase['banned'] = "Yasaklı kullanıcının id";
$phrase['unbanned'] = "unbanned user whose ID";
$phrase['banned_name'] = "yasaklı";
$phrase['unbanned_name'] = "unbanned";

$phrase['load'] = "Yükleniyor... ";
$phrase['accessdenied'] = "Access Denied (Invaild ChatboxKey or URL)";
$phrase['pruneusernotice'] = "tarafından tüm mesajları silinen";
$phrase['nomessagefound'] = 'Bu kullanıcının hiçbir mesajı';
$phrase['checkflood'] = 'Flood ?';
$phrase['reason'] = 'Neden';

######## Command ####
$command['prune'] = '/prune';
$command['ban'] = '/ban';
$command['notice'] = '/notice';
$command['unban'] = '/unban';

######## File name ########
$fcbfile['message'] = 'fcb_message.txt';
$fcbfile['notice'] = 'fcb_notice.txt';
$fcbfile['smilie'] = 'fcb_smilies.txt';
$fcbfile['badword'] = 'fcb_badword.txt';

// datastore file
$fcbfile['ds_smilie'] = 'ds_smilies.txt';
$fcbfile['ds_banned'] = 'ds_banned.txt';
$fcbfile['ds_lastshout'] = 'ds_lastshout.txt';
$fcbfile['ds_notice'] = 'ds_notice.txt';

############# NOT SETTINGS - Don't change ##########################
$config['cbforumlink'] = explode(',' , $config['forumlink']);
$config['cbforumlink'] = $config['cbforumlink'][0];
?>