Şablon okuma fonksiyonu tam olarak neresi bilmiyorum kafama göre koydum fakat calismadı farklı yerlere koydum hata verdi
bahsettiğiniz ftp klasöründeki sohbet.php di sanırım. dediklerinizide yaptım chat kodlarının &password=$password olarak yaptım ama olmuyor

<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'sohbet');
define('CSRF_PROTECTION', true);
// change this depending on your filename
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array('sohbet',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vBulletin forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');
// ################################################## #####################
// ######################## START MAIN SCRIPT ############################
// ################################################## #####################
$navbits = construct_navbits(array('' => 'Kameralı ve Sesli Sohbet Odaları'));
$navbar = render_navbar_template($navbits);
// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle = 'Kameralı ve Sesli Sohbet Odaları';
// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
require_once(DIR . '/includes/functions_login.php');
$password = md5(md5($vbulletin->userinfo['password']));
$templater = vB_Template::create('sohbet');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
print_output($templater->render());
?>