vBulletin Config.php Yolunu Değiştirme Nasıl Yapılırincludes
/class_core.php yolunu izleyerek alttaki kodları bulun
nclude(CWD . '/includes/config.php');
if (sizeof($config) == 0)
{
if (file_exists(CWD. '/includes/config.php'))
{
// config.php exists, but does not define $config
die('
Configuration: includes/config.php exists, but is not in the 3.6+ format. Please convert your config file via the new config.php.new.');
}
else
{
die('
Configuration: includes/config.php does not exist. Please fill out the data in config.php.new and rename it to config.php');
}
}
Alttaki kodlarla değiştirininclude(CWD . '/includes/System.php');
if (sizeof($config) == 0)
{
if (file_exists(CWD. '/includes/System.php'))
{
// config.php exists, but does not define $config
die('
Configuration: includes/config.php exists, but is not in the 3.6+ format. Please convert your config file via the new config.php.new.');
}
else
{
die('
Configuration: includes/config.php does not exist. Please fill out the data in config.php.new and rename it to config.php');
}
}
Burada
config.php'yi
System.phpolarak değiştirdik,dosya adınıda değiştirerek kaydedin. Farklı bir ad olarakta ayarlayabilirsiniz.
Sistemde Seo kurulu ise;vbseo.php dosyasını açın: ve alttaki kodu silin
include_once('includes/' . VBSEO_VB_CONFIG);
config_vbseo.php dosyasını açın:define('VBSEO_VB_CONFIG', 'sistem.php');
config.php yi sistem.php olarak değiştirmiştik yukarıda yazılı siz farklı isimle kayıt yaptıysanız o dosya ismini yazınSEO 3.6x sürümleri için,vBulletin SEO/resources/xml/config.xml dosyasını açın alttaki kodu bulun düzenleyin
VBSEO_VB_CONFIG
Linkback:
vBulletin Config.php Yolunu Değiştirme Nasıl Yapılır