genc-hane

Mk portal kurulumu

Anasayfa 

İletişim

Programlar

Resimler

Videolar

Msn Messenger

Ziyaretçi Defteri

Site Map

Arşiv


 
Evet arkadaşlar şimdi sizlere elimden geldiği kadarıyla mkportalı ve kurulumunu anlatacağım

Mkportal ücretsiz olup belli başlı forumlara entegre edilebilir. Bunlar hangileridir

SMF
PHPBB
IPB
VBULLETIN

Şimdi sıra geldi hangi versiyonun hangi foruma uygun olduğuna

Mk portal 1.0

Smf 1.0.7 Ve Altı
IPB 2.0.4 Ve Altı
vBulletin 3.0.7 Ve Altı
PhpBB 2.0.17 Ve Altı


MK Portal 1.1

Smf 1.1 RC2 Ve Üstü
IPB 2.10 Ve Üstü
vBulletin 3.5.0 Ve Üstü
PhpBB 2.0.07 Ve Üstü

Mk portalı nereden download edebileceğinize gelince

Mkportal 1.1.1 için tıklayınız : http://d.turboupload.com/d/1457921/M..._M111.zip.html

Download bittikten sonra zipi klasöre çıkartın ve ftp nize atın yalnız burada dikkat edilmesi gereken bir nokta var portalın ve forumun stabil çalışması için önceden forumun yüklenmiş olması gerekir.

ftp de klasör durumunuzun şu şekilde olması gerekmektedir

/forum (daha önce kurmus olduğunuz forum dizin)
/mkportal (mkportal dosyalarını attığınız dizin)
/index.php (mkportalın içersinde bulunan index.php dosyası)

Yani site adresleriniz su sekilde olmalıdır

http://www.siteninadı.com/forum
http://www.siteninadı.com/mkportal
http://www.siteninadı.com/index.php (ziyaretçilerin ilk olarak karsılasacağı sayfa)



Bu Resim Otomatik Olarak Kücültülmüstür Orjinal boyutunu görmek için buraya tıklayın www.tampaylas.net
This image has been resized. Click this bar to view the full image. The original image is sized 739x492 and weights 35KB.





ardından aşağıdaki dosyalara yazma iznini (chmod 777) vermeniz gerekmekte

mkportal/conf_mk.php
mkportal/cache/tmp_block
mkportal/cache
mkportal/blog
mkportal/blog/images
mkportal/templates/*
mkportal/lang/*
mkportal/modules/downloads/file
mkportal/modules/gallery/album
mkportal/modules/reviews/images

daha sonra tarayıcınıza http://www.siteninadı.com/mkportal/mk_install.php adresini yazıp kuruluma başlayabilirisiniz.

Bu Resim Otomatik Olarak Kücültülmüstür Orjinal boyutunu görmek için buraya tıklayın www.tampaylas.net
This image has been resized. Click this bar to view the full image. The original image is sized 731x384 and weights 47KB.


Bu Resim Otomatik Olarak Kücültülmüstür Orjinal boyutunu görmek için buraya tıklayın www.tampaylas.net
This image has been resized. Click this bar to view the full image. The original image is sized 724x586 and weights 75KB.


Bu Resim Otomatik Olarak Kücültülmüstür Orjinal boyutunu görmek için buraya tıklayın www.tampaylas.net
This image has been resized. Click this bar to view the full image. The original image is sized 748x468 and weights 52KB.


This image has been resized. Click this bar to view the full image. The original image is sized 702x292 and weights 39KB.







Not: Kurulum bittikten sonra mk_install.php dosyasını ve upgrades klasörünü sunucunuzdan silin.

Mkportal 1.1.1 türkçe yama için tıklayınız : http://d.turboupload.com/d/1457913/Turkish.rar.html

dosyanın içinden çıkan Turkish klasörünü
/mkportal/lang/ içine atıyoruz. ( Klasör halinde)

admin panelinize giriyorsunuz ve ayarlar bölümünden turkish i seçiyorsunuz.

forumu içeri alma işlemi ise şöyle

Portal KP >> Açılan İlk Sayfada En Altta "Forum Sayfası Görünümü" ayarlasından forum görünümünü içerde olarak ayarlıyorsunuz

daha sonra

Ipb 2.1.x için

Yedek al / aç : forum_dizini/sources/classes/class_display.php

Bul {Find}

Kod:
function do_output($output_array)
{
global $Debug;
Altına ekle{add below}

Kod:
//added from MKportal
define ( 'IN_MKP', 1 );
$MK_PATH = "../";
require $MK_PATH."mkportal/conf_mk.php";
//end added
yine aynı dosyada bul:
Kod:
$output_array['MEMBER_BAR'] = $this->ipsclass->compiled_templates['skin_global']->member_bar($msg_data);
Bununla değiştir {replace all}

Kod:
//Mkportal edited
if(!$FORUM_VIEW) {
$output_array['MEMBER_BAR'] = $this->ipsclass->compiled_templates['skin_global']->member_bar($msg_data);
}
//end edited
aynı dosyada bul: Kod:
if ( $this->ipsclass->vars['ipb_img_url'] )
{
$this->ipsclass->skin['_wrapper'] = preg_replace( "#imgs+?src=["']style_(images|avatars|emoticons)(.+?)["'](.+?)?".">#is", "img src="".$this->ipsclass->vars['ipb_img_url']."style_12"3>", $this->ipsclass->skin['_wrapper'] );
}

Altına ekle {add below}

Kod:
//added from MKportal
if($FORUM_VIEW == 1) {
require_once $MK_PATH."mkportal/include/IPB/ipb_out.php";
$this->ipsclass->skin['_wrapper'] = mkportal_board_out($this->ipsclass->skin['_wrapper']);
}
//end added
kaydedip eskisiyle değiştirerek upload ediniz
---------------------------------------------------------------------------------------------------

SMF için

yedek al ve aç

forum_dizini/Sources/Subs.php

bul {find}

Kod:
// For session check verfication.... don't switch browsers...
$_SESSION['USER_AGENT'] = $_SERVER['HTTP_USER_AGENT'];
Altına ekle {add below}

Kod:
//added from MKportal
if ($header !== false && in_array('main', $context['template_layers'])) {
define ( 'IN_MKP', 1 );
require_once "../mkportal/include/SMF/smf_out.php";
mkportal_board_out();
}
//end added
Kaydedin ve eskisiyle değiştirerek upload edin

---------------------------------------------------------------------------------------------------

VBulletin için

Yedek al ve aç ;

forum_dizini/includes/functions.php

Bul {find}

Kod:
if (!is_demo_mode())
{
($hook = vBulletinHook::fetch_hook('global_complete')) ? eval($hook) : false;
}
Altına ekle {add below}

Kod:
//added from MKportal
define ( 'IN_MKP', 1 );
require_once "../mkportal/include/VB/vb_out.php";
$output = mkportal_board_out($output);
//end added
Kaydedin ve eskisiyle değiştirerek upload edin.

------------------------------------------------------------------------------------------------

Php BB için

Yedek al ve aç ;

forum_dizini/login.php

Bul {find}

Kod:
redirect(append_sid($url, true));


Bununla değiştir {Replace all}


Kod:
//$template->assign_block_vars('switch_enable_pm_popup', array());
kaydet ve upload et

Yedek al ve aç ;

forum_dizini/includes/page_tail.php

Bul {find}

Kod:
$template->pparse('overall_footer');
Altına ekle {add below}

Kod:
//added from MKportal
global $Checkmkout, $ForumOut;
define ( 'IN_MKP', 1 );
$MK_PATH = "../";
require $MK_PATH."mkportal/conf_mk.php";
if($FORUM_VIEW == 1 && !$Checkmkout) {
require_once $MK_PATH."mkportal/include/PHPBB/php_out.php";
mkportal_board_out();
}
if($FORUM_VIEW == 1 && $Checkmkout) {
echo $ForumOut;
}
//end added
kaydet ve upload et.

Yedek al ve aç ;

forum_dizini/includes/template.php

Bul {find}

Kod:
eval($this->compiled_code[$handle]);
Bununla değiştir {replace all}

Kod:
// modificato da mkportal
global $ForumOut, $Checkmkout, $gen_simple_header;

if ($handle == "smiliesbody" || $handle == "reviewbody" || $_GET['mode'] == "searchuser" || $gen_simple_header) {
$Checkmkout = 1;
}
$MK_PATH = "./";
if (defined('IN_ADMIN')) {
$MK_PATH = "../";
}
require $MK_PATH."../mkportal/conf_mk.php";


if ( !defined('IN_ADMIN') && $FORUM_VIEW == 1) {
ob_start();
eval($this->compiled_code[$handle]);
$ForumOut .= ob_get_contents();
ob_end_clean();
} else {
eval($this->compiled_code[$handle]);

}

// fine modificato
kaydet ve upload et.

herkese kolay gelsin :

alıntıdır!!!! 
 








 
Bu web sitesi ücretsiz olarak Bedava-Sitem.com ile oluşturulmuştur. Siz de kendi web sitenizi kurmak ister misiniz?
Ücretsiz kaydol