Ana Sayfa Reklam alanı
Gruplar  •  Site Yönetimi  •  Özel Mesajlarınız   •  Giriş   •  Kayıt
Reklam alanı
Sohbet ediyorum
Ana Sayfa
Ana Sayfa
Forumlar
Forumlar
Yardım
Yardım
Arama
Arama
Albüm
Albüm
Kurallar
Kurallar
Linkler
Linkler
Makaleler
Makaleler
Oyunlar
Oyunlar
Sohbet
Sohbet
Üyeler
Üyeler
İstatistikler
İstatistikler






phpBB forumunda eZPortal Kurulumu konu başlığının kısa özeti; eZPortal Kurulumunu verdim. Kodu açıp alabilirsiniz. Eklentide de mevcut aynı zamanda ################################################################# ## Title: ezPortal for phpBB 2.0.x ## V...

Bu başlığı gezen kullanıcılar:0 Kayıtlı, 0 Gizli, 0 Misafir ve 0 Bot
Kayıtlı Kullanıcılar: Yok



 
Bu forum kilitlenmiştir, yeni bir başlık açamazsınız, cevap gönderemez ya da mesajları değiştiremezsinizBu başlık kilitlenmiştir, cevap yazamaz ya da mesajları değiştiremezsiniz Digg it Stumble it Submit to Del.icio.us Diigo it Prefound it Reddit it Facebook it Blink it Slashdot it Linkagogo it 
Önceki başlık Arkadaşına GönderYazdırÖzel Mesajlarınız Sonraki başlık
Yazar Mesaj
BLacK
Quick Friend
Quick Friend



Kayıt: 12 Mart 2005
Mesajlar: 71
Tema: Parthenos (33444)
Nerden: orion takım yıldızı 17. bölge ana holografik üst , titan
Yaş: 26

usa.gif

Cinsiyet:Erkek Oğlak Köpek

Puan: 96
Mesaj Tarih: 23 Nisan 2005, 21:16   Mesaj konusu: eZPortal Kurulumu
Alıntıyla Cevap VerSonraki Mesaj



eZPortal Kurulumunu verdim.
Kodu açıp alabilirsiniz.
Eklentide de mevcut aynı zamanda
#################################################################
## Title: ezPortal for phpBB 2.0.x
## Version: 2.1.8b
## Author: Smartor <*******> - http://smartor.is-root.com
## Description: This Mod explains you how to create a portal for phpBB2 as simple as possible
##      This MOD is not exactly a full functional portal system (content management system)
##      but it looks like a portal. You should customize/modify/improve it to fit your fantasy ;)
##      It is very EASY to install and very HANDY to modify
##
## Installation Level:    Easy
## Installation Time:    10 Minutes
##
## Files To Edit: 4
##   login.php
##   includes/page_header.php
##   language/lang_english/lang_main.php
##   templates/subSilver/overall_header.tpl
##
## Included Files: 4
##   home.html
##   fetchposts.php
##   templates/subSilver/portal_body.tpl
##   images/smartorsite_logo.gif
##
#################################################################
##
## Author Note:
##
##   Copyright © Smartor, 2002-2004
##
##   For any concerns please contact me at http://smartor.is-root.com
##
#################################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
##
## Revision History:
##
## v2.1.8b
##   - fixed my mistakes in portal_body.tpl :(
## v2.1.8a
##   - updated instructions for phpBB 2.0.10
##   - fixed some HTML code (small changes)
## v2.1.8
##   - fixed a bug: disappear 'Read Full'
## v2.1.7
##   - removed 'Read Full' link on short announcements
##   - added a new option 'Exceptional Forums' for Recent Topics Block
##   - added poster name and posted time for Recent Topics Block
##   - added scrolling effect for Recent Topics Block
##   - changed the link on Recent Topics Block to the last post
## v2.1.6
##   - solved some small issues: log in/out, stats, date/time, etc.
##   - made phpBB 2.0.4 compatibled
## v2.1.5
##   - improved some HTML code :P
##   - fixed a serious security bug in Change Style Block
## v2.1.4
##   - fixed Shadow Topic bug (for both News and Recent Topics)
##   - added Search Block: it's very cool, included both phpBB Search and Google
## v2.1.3
##   - just update ChatBox Block instruction file
## v2.1.2
##   - due to some users are not familiar with HTML coding, i provide a new bordered template -looks much better in subSilver- for portal (only HTML thing, no new PHP code)
## v2.1.1
##   - added a missing language entry for Recent Topics Block
## v2.1
##   - added some blocks: Moreover.com Newsfeed, Recent Topics
##   - removed some un-needed HTML codes
##   - fixed some bugs
##   - added "I forgot my password" link
##   - fixed some language hardcode
## v2.0.2
##   - fixed some template problems
## v2.0.1
##   - added a lost language entry
## v2.0.0
##   - completed News Feature
## v1.0.4a
##   - fixed a JavaScript problem in this file
## v1.0.4
##   - updated some blocks
## v1.0.3
##   - Fixed some typos
## v1.0.0
##   - Initial Release
##
#################################################################
## Demo/Discussion Forum:     http://smartor.is-root.com
#################################################################


#
#------[ KOPYALA ]-------------------------------------------------------------
#
phpbb_root/images/            ----> forumun bulunduğu ana dizin
phpbb_root/fetchposts.php           ----> forumun bulundugu ana dizin
phpbb_root/portal.php             ----> forumun bulundugu ana dizin
phpbb_root/templates/subSilver/portal_body.tpl  ----> templates/kullanıdıgın template/
#
#------[ AÇ ]-------------------------------------------------------------
#
login.php

#
#------[ BUL ]-------------------------------------------------------------
#
redirect(append_sid("index.$phpEx", true));

#
#------[ BUNUNLA DEĞİŞTİR ]-----------------------------------------------------
#
redirect(append_sid("portal.$phpEx", true));

#
#------[ BUL ]-------------------------------------------------------------
#
$url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx";

#
#------[ BUNUNLA DEĞİŞTİR ]-----------------------------------------------------
#
$url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "portal.$phpEx";

#
#------[ BUL ]-------------------------------------------------------------
#
redirect(append_sid("index.$phpEx", true));

#
#------[ BUNUNLA DEĞİŞTİR ]-----------------------------------------------------
#
redirect(append_sid("portal.$phpEx", true));

#
#------[ BUL ]-------------------------------------------------------------
#
$url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx";

#
#------[ BUNUNLA DEĞİŞTİR ]-----------------------------------------------------
#
$url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "portal.$phpEx";

#
#------[ BUL ]-------------------------------------------------------------
#
redirect(append_sid("index.$phpEx", true));

#
#------[ BUNUNLA DEĞİŞTİR ]-----------------------------------------------------
#
redirect(append_sid("portal.$phpEx", true));


#
#-----[ AÇ ]------------------------------------------
#
includes/page_header.php

#
#-----[ BUL ]----------------------------------------
#
   'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),

#
#-----[ SONRA EKLE ]-----------------------------------
#
   // ezPortal
   'U_PORTAL' => append_sid('portal.'.$phpEx),
   'L_HOME' => $lang['Home'],


#
#-----[ AÇ ]----------------------------------------
#
templates/subSilver/overall_header.tpl

#
#-----[ BUL ]----------------------------------------
#
<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>

#
#-----[ BUNUNLA DEĞİŞTİR ]--------------------------------
#
<td><a href="{U_PORTAL}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>


#
#-----[ BUL ]----------------------------------------
#
&nbsp;<a href="{U_FAQ}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a>

#
#-----[ TAM ÖNÜNE EKLE ]--------------------------
#
&nbsp;<a href="{U_PORTAL}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{L_HOME}" hspace="3" />{L_HOME}</a>&nbsp;&nbsp;


#
#-----[ AÇ ]----------------------------------------
#
language/lang_english/lang_main.php

#
#-----[ BUL ]----------------------------------------
#
//
// That's all Folks!
// -------------------------------------------------

#
#-----[ ÖNCE EKLE ]----------------------------------
#

//
// Smartor's ezPortal
//
$lang['Home'] = 'Portal';
$lang['Board_navigation']     = 'Menü';
$lang['Statistics']           = 'İstatistik';
$lang['total_topics']         = ' <b>%s</b> konu içinde'; // added in v2.1.6
$lang['Comments']             = 'Cevaplar';
$lang['Read_Full']            = 'Hepsini Oku';
$lang['View_comments']        = 'Cevaplara Bak';
$lang['Post_your_comment']    = 'Cevap Gönder';
$lang['Welcome']              = 'Hoşgeldiniz';
$lang['Register_new_account'] = 'Üye değilseniz şimdi kayıt olmak için %sburaya%s tıklayın.';
$lang['Remember_me']          = 'Beni hatırla';
$lang['View_complete_list']   = 'Tüm Liste';
$lang['Poll']                 = 'Anket';
$lang['Login_to_vote']        = 'Oylamak için giriş yapmalısınız';
$lang['Vote']                 = 'Oyla';
$lang['No_poll']              = 'Şu anda anket yok';


#
#-----[ TÜM DOSYALARI KAYDET/KAPAT ]------------------------------------------
#
#-----[ PORTALA YÖNLENDIRMEK ICIN ]------------------------------------------
#ya bir .htaccess dosyası oluşturun ve içinde

DirectoryIndex index.html index.htm home.html forums.html

#olsun ya da bir index.html atın içinde

   <html>
   <head>
   <title>Yönlendiriliyorsunuz...</title>
   <meta http-equiv="refresh" content="0;url=home.html">
   </head>
   <body>
   </body>
   </html>

#olsun.. Eğerki forumum bulundugu klasör ana dizinde değilde /forum gibi bir dizinde yer alıyorsa

<meta http-equiv="refresh" content="0;url=forum/portal.php">

#şeklinde yazın..
#--------------------------------------------------------------------
# ezPortal Ayarları
#
# AÇ: home.html
#
# BUL:
//
// Set configuration for ezPortal
//

#--------------------------------------------------------------------
## Yukarıdakini bulduktan sonra aşağıdaki yazıları göreceksindir. Türkçe ne yapman gerekiyor ben yazdım

// Welcome Text: note that we are in PHP file, so use \' instead of ' and use \\ instead of \ (HTML kodlarını kullanabilirsin)
$CFG['welcome_text'] = '<b>websiten.com</b> forum sayfalarına hoşgeldiniz.<br /><br />Forumda mesaj atmak için kayıt olmalısınız';

#Not: Yukarıdaki ayarla panoya girdiğinde en üstteki blok olan hoşgeldin mesajını değiştirebilirsin (Benim yazdıgım sadece bir örnektir.)

// Number of news on portal
$CFG['number_of_news'] = '5';

#Not: Yukarıdaki ayarla portalda yayınlanması istediğin haber sayısını değiştirebilirsin.(Varsayılan 5 tir.)

// Length of news
$CFG['news_length'] = '200';

#Not: Yukarıdaki ayarla portalda yayınlanması istediğin haberin uzunluğunu ayarlayabilirsin(Varsayılan 200 )

// News Forum ID: separate by comma for multi-forums, eg. '1,2,5'
$CFG['news_forum'] = '1';

#Not: Yukarıdaki ayarla portalda yayınlanması istediğin haber yazdıgın forum id'lerini ayarlayabilirsin.
#     Portaldaki haberler duyuru olarak eklenenlerdir. (Varsayılan 1 olarak gösterilmiş.)
#     Yani forum id'si 1 olan forumun duyuruları yayınlanacak demektir.
#     Yani forum id'si 1 olan forumun duyuruları yayınlanacak demektir.
#     Bunların arasına virgül koyarak belirteceğiniz farklı forumlardaki duyurularıda portalda gösterebilirsiniz

// Poll Forum ID: separate by comma for multi-forums, eg. '3,8,14'
$CFG['poll_forum'] = '1';
//
#Not: Yukarıdaki ayarla portalda yayınlanması istediğin anketlerin bulundukları forum idlerini değiştirebilirsin
#     Portaldaki yayınlanacak anketeler yukarda belirtildiğine göre 1 olarak ayarlanmış. Bu forum id'si 1 olan forumdaki anketler yayınlancak demektir.

// Ayarlar Bitti
// --------------------------------------------------------


#--------------------------------------------------------------------
#
# EoM




ezPortal Install.zip
 Açıklama:
eZPortal

İndir
 Dosya Adı:  ezPortal Install.zip
 Dosya Boyutu:  16.59 KB
 İndirilme:  3 Kere



_________________
SCARFACE
"In this country, you gotta make the money first.
Then when you get the money, you get the power.
Then when you get the power, then you get the woman."

Tony Montana a.k.a Al Paçino
 Oylanmadı BLacK offlineKişisel Galeri - BLacKKullanıcı profilini görÖzel mesaj gönderE-mail'i gönderKullanıcının web sitesini ziyaret et
TeknoSehir
New Friend
New Friend



Kayıt: 23 Nisan 2005
Mesajlar: 4
Tema: Parthenos (33444)

Yaş: 16


Cinsiyet:Erkek Yay Maymun

Puan: 5
Mesaj Tarih: 23 Nisan 2005, 21:58   Mesaj konusu:
Alıntıyla Cevap VerÖnceki Mesaj


Abicim çok sağol yaa
 Oylanmadı TeknoSehir offlineKişisel Galeri - TeknoSehirKullanıcı profilini görÖzel mesaj gönder
Mesajları göster:      
Bu forum kilitlenmiştir, yeni bir başlık açamazsınız, cevap gönderemez ya da mesajları değiştiremezsinizBu başlık kilitlenmiştir, cevap yazamaz ya da mesajları değiştiremezsiniz
Önceki başlık Arkadaşına GönderYazdırÖzel Mesajlarınız Sonraki başlık


Bu başlığı gezen kullanıcılar:0 Kayıtlı, 0 Gizli, 0 Misafir ve 0 Bot
Kayıtlı Kullanıcılar: Yok

Bu forumda yeni konular açamazsınız
Bu forumdaki mesajlara cevap veremezsiniz
Bu forumdaki mesajlarınızı değiştiremezsiniz
Bu forumdaki mesajlarınızı silemezsiniz
Bu forumdaki anketlerde oy kullanamazsınız
Bu foruma eklenti dosyaları gönderemezsiniz
Bu forumdaki dosyaları indiremezsiniz
Bu forumda eklenti önizlemelerini/linklerini görebilirsiniz
Etiketler: a, above, added, adding, alabilirsiniz, all, alt,

Benzer Başlıklar
Başlık Yazar Forumlar Cevaplar Son Gönderilen
Yeni mesaj yok EzPortal Hakkında kutver phpBB 1 10 Haziran 2005, 18:41 Son Mesajları Gör
taNGo
Yeni mesaj yok [SORU] EzPortal - Haber ALEXIS phpBB 6 05 Aralık 2003, 21:48 Son Mesajları Gör
littleworm
Yeni mesaj yok PHP KURULUMU Jedi ASP - PHP - PERL - CGI - HTML 6 06 Şubat 2005, 21:02 Son Mesajları Gör
ajx
Yeni mesaj yok easyMOD kurulumu serhanefe phpBB 10 16 Nisan 2005, 23:41 Son Mesajları Gör
serhanefe
Yeni mesaj yok *** Oscommerce Kurulumu *** AngelSlayer Webmaster Genel 10 12 May 2006, 22:45 Son Mesajları Gör
chikimato


Bu Siteye Ait Çerezleri Sil

© 2003, 2049 Türkiye Forum :: Powered by phpBB © 2001, 2005 phpBB Group :: FI Theme
Tüm saatler GMT +2 Saat :: :: Forum Arşivleri
Hata: sayfa oluşturma = 7.00372 saniye, sql sorguları = 38
Türkiye Forum başlık özet akışları

Reklam alanı

CBACK CrackerTracker tarafından korunuyor
26518 Girişim engellendi.


phpBB Türkiye

Forum Haritası: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134