Tekil Mesaj gösterimi
Alt 23 Nisan 2014, 16:53   #1
Çevrimdışı
M
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
IF Ticaret Sayısı: (0)
IF Ticaret Yüzdesi:(%)
vBulletin 5 Kurulumu




Öncelikle, upload klasörü ana dizindeki config.php.bkp dosyasının uzantısından .bkp kısmını siliyor ve config.php olarak kaydediyoruz. Bu dosyada değişiklik yapmıyoruz, 5.0.5 sürümden önceki sürümlerde(5.0.0,0.1,0.2,0.3, vs.) bir kaç değişiklik yapılıyordu, bu sürümde değişiklik yapmaya gerek yok.

Bundan sonra /Core/includes/ dosyasına giriyoruz ve config.php.new dosyasını açıyoruz. Bu dosyada daha önceki sürümlerdeki gibi bildiğiniz config dosyası var.Artı olarak 1-2 adet ek olarak düzenleyeceğimiz yer var.

Kod:   Kodu kopyalamak için üzerine çift tıklayın!
<?php /*======================================================================*\ || #################################################################### || || # vBulletin Core Configuration # || || # ---------------------------------------------------------------- # || || # All PHP code in this file is 2000-2012 vBulletin Solutions Inc. # || || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || #
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.

Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
NOTE REGARDING THE VARIABLES IN THIS FILE ****** | +------------------------------------------------------------------------+ | If you get any errors while attempting to connect to MySQL, you will | | need to email your webhost because we cannot tell you the correct | | values for the variables in this file. | | | | When making changes to the file, the edit should always be to the | | right of the = sign between the single quotes | | Default: $config['admincpdir'] = 'admincp'; | | Example: $config['admincpdir'] = 'myadmin'; GOOD! | | Example: $config['myadmin'] = 'admincp'; BAD! | \*----------------------------------------------------------------------*/ // ****** DATABASE TYPE ****** // This is the type of the database server on which your vBulletin database // will be located. Valid options are mysql and mysqli, for slave support add // _slave to the end of the database class. // Try to use mysqli if you are using PHP 5 and MySQL 4.1+ // WARNING: As of PHP 5.5.0 mysql library support is depricated. So if you are using PHP >= 5.5.0 use mysqli $config['Database']['dbtype'] = 'mysqli'; // ****** DATABASE NAME ****** // This is the name of the database where your vBulletin will be located. // This must be created by your webhost. $config['Database']['dbname'] = 'veritabanı adı'; // ****** TABLE PREFIX ****** // Prefix that your vBulletin tables have in the database. $config['Database']['tableprefix'] = ''; // ****** TECHNICAL EMAIL ADDRESS ****** // If any database errors occur, they will be emailed to the address specified here. // Leave this blank to not send any emails when there is a database error. $config['Database']['technicalemail'] = 'teknik admin maili yada herhangi bir mail adresi, hata raporları için.'; // ****** MASTER DATABASE SERVER NAME AND PORT ****** // This is the hostname or IP address and port of the database server. // If you are unsure of what to put here, leave the default values. // // Note: If you are using IIS 7+ and MySQL is on the same machine, you // need to use 127.0.0.1 instead of localhost $config['MasterServer']['servername'] = 'localhost'; $config['MasterServer']['port'] = 3306; // ****** MASTER DATABASE USERNAME & PASSWORD ****** // This is the username and password you use to access MySQL. // These must be obtained through your webhost. $config['MasterServer']['username'] = 'db kullanıcı adı'; $config['MasterServer']['password'] = 'db parolası'; // ****** MASTER DATABASE PERSISTENT CONNECTIONS ****** // This option allows you to turn persistent connections to MySQL on or off. // The difference in performance is negligible for all but the largest boards. // If you are unsure what this should be, leave it off. (0 = off; 1 = on) $config['MasterServer']['usepconnect'] = 0; //FastDS settings //$config['fastDS'] = true; //Use to disable fastDS completely //$config['fastDSType'] = 'APC'; //Use to disable fastDS completely. At this time APC is the only option. //$config['fastDSPrefix'] = ''; //prefix, to prevent collisions. Defaults to database prefix. //Note that if you use the same cache type for this and fast or large cache, and the same prefix, you // may have conflicts. //$config['fastDSLimit'] = 6000000; //Limit the amount of memory consumed, in bytes // ****** SLAVE DATABASE CONFIGURATION ****** // If you have multiple database backends, this is the information for your slave // server. If you are not 100% sure you need to fill in this information, // do not change any of the values here. $config['SlaveServer']['servername'] = ''; $config['SlaveServer']['port'] = 3306; $config['SlaveServer']['username'] = ''; $config['SlaveServer']['password'] = ''; $config['SlaveServer']['usepconnect'] = 0; // ****** PATH TO ADMIN & MODERATOR CONTROL PANELS ****** // This setting allows you to change the name of the folders that the admin and // moderator control panels reside in. You may wish to do this for security purposes. // Please note that if you change the name of the directory here, you will still need // to manually change the name of the directory on the server. $config['Misc']['admincpdir'] = 'admincp'; $config['Misc']['modcpdir'] = 'modcp'; // Prefix that all vBulletin cookies will have // Keep this short and only use numbers and letters, i.e. 1-9 and a-Z $config['Misc']['cookieprefix'] = 'bb'; // ******** FULL PATH TO FORUMS DIRECTORY ****** // On a few systems it may be necessary to input the full path to your forums directory // for vBulletin to function normally. You can ignore this setting unless vBulletin // tells you to fill this in. Do not include a trailing slash! // Example Unix: // $config['Misc']['forumpath'] = '/home/users/public_html/forums'; // Example Win32: // $config['Misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3'; $config['Misc']['forumpath'] = 'Buraya forum dosyaların bulunduğu yolu belirtiyoruz. Eğer kurulum direk siteye yapılacaksa /home/users/public_html, forum klasörü oluşturulduysa /home/users/public_html/forum şeklinde. Localhost kurulum yapılıyorsa bilgisayarınızda localhostun kurulu olduğu dizin örnek; C:\program files\easyphp\
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
veya C:\program files\easyphp\
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
gibi.
' // ******** FRONTEND (SITE) URL ****** // On a few systems it may be necessary to input the base url. // This should be the same setting as $config['baseurl'] in the frontend config file // You do not need to fill this in unless instructed by vBulletin Support. // Do not include a trailing slash. // Example: $config['Misc']['baseurl'] = '
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
color="Red">$config['Misc']['baseurl'] = 'Buraya forumu kurduğunuz site adı ana dizinse
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
forum klasörü oluşturduysanız
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
yazıyoruz';

Yukarda örnek kodlama mevcut, düzenlenmesi gereken yerleri kırmızı bold olarak belirttim. Artı olarak yapılacak başka birşey yok.

Örnek localhost da kurdum, hiç bir sorun almadım.


Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.


Admin paneli;


Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.


Anlatım bana aittir.Takıldığınız bir yer olursa pm atabilirsiniz.

 
Alıntı ile Cevapla

IRCForumlari.NET Reklamlar
sohbet odaları reklam ver Benimmekan Mobil Sohbet