[mod] Photo Album / Albüm Mod V2.0.54

Phpbb [mod] Photo Album / Albüm Mod V2.0.54 CMS - içerik yönetim hakkında bilgi paylaş; DOWNLOAD LİNK : TÜRKÇE DİL PAKETİ : MOD İsmi : Foto Album v2 for phpBB2 MOD Yapımcıları: ...
Cevapla
 
Seçenekler
  #1  
Arama 18-11-2007, 08:24
Banlı
Üyelik Tarihi: 18/09/07
Mesajlar: 1.903
 
     WS-Ticareti: (1)
Blog Yazıları: 1
Teşekkürleri: 0
20 Msg. 27 Tşkr.
Rep Gücü: 0 B737 rep gücü epey yüksek

[mod] Photo Album / Albüm Mod V2.0.54

DOWNLOAD LİNK :
TÜRKÇE DİL PAKETİ :


MOD İsmi : Foto Album v2 for phpBB2

MOD Yapımcıları: Smartor < > (Hoang Ngoc Tu)
## MOD AÇIKLAMASI:
## Bu mod phpbb tabanlı bir systemdir.
## Çok güçlü estetik ve yüksek kalitededir.
## The version 2 was written from the scratch for more security, performance, etc.
## It is not really a MOD/++++, it is rather a phpBB-based system
##
## Features:
## - Fully integrated with phpBB2 backend (DB, session, template, multi languages, etc.)
## - Powerful and handy AdminCP
## - Auto-generated thumbnail (require GD)
## - Manual-uploaded thumbnail (for someone cannot install GD)
## - Thumbnail cache (for better performance)
## - Multi-categories
## - Powerfull and phpBB-like permissions system
## - ModeratorCP
## - Upload Quota
## - Pic Description
## - Recent pics
## - Personal galleries (for member-oriented boards)
## - Rate system
## - Comment system
## - Hotlink prevention (can set allowed domains)
## - Auto optimization for different GD versions
## - Pic view counter
## - Admin/Moderator pic approval
## - Probably uploadable in PHP Safe Mode
## - The rest is for your exploring
##
## Yükleme Seviyesi: NORMAL
## Kurulum Süresi : 15 Dakika
##
##DEMO ; .


KURULUM ;
Kod:
# NOTE: (for upgrade from older versions)
#
# If you are using a version 1.5.x/1.6.x of Album you must read file update_v1_to_lastest.txt
#
# If you are using Album v1.0.x or older, sorry I have no guide to upgrade
#
# If you are using a older version of Album v2 you must read appropriate files in "update" directory


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

#
#-----[ BUL ]----------------------------------------
#
if ( !defined('IN_PHPBB') )
{
   die("++++ing attempt");
}


#
#-----[ ARDINA EKLE ]----------------------------------
# Don't worried! This file is very *lite*
// Album MOD
include($phpbb_root_path . 'album_mod/album_constants.' . $phpEx);


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

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

#
#-----[ ARDINA EKLE ]----------------------------------
#
   // Album MOD
   'L_ALBUM' => $lang['Album'],
   'U_ALBUM' => append_sid('album.'.$phpEx),


#
#-----[ AÇ ]-------------------------------------------------------
#
viewonline.php

#
#-----[ BUL ]----------------------------------------
#
            case PAGE_FAQ:
               $location = $lang['Viewing_FAQ'];
               $location_url = "faq.$phpEx";
               break;

#
#-----[ ARDINA EKLE ]----------------------------------
#
            case PAGE_ALBUM:
               $location = $lang['Album'];
               $location_url = "album.$phpEx";
               break;


#
#-----[ AÇ ]-------------------------------------------------------
#
admin/index.php

#
#-----[ BUL ]----------------------------------------
#
                  case PAGE_FAQ:
                     $location = $lang['Viewing_FAQ'];
                     $location_url = "index.$phpEx?pane=right";
                     break;

#
#-----[ ARDINA EKLE ]----------------------------------
#
                  case PAGE_ALBUM:
                     $location = $lang['Album'];
                     $location_url = "index.$phpEx?pane=right";
                     break;


#
#-----[ AÇ ]-------------------------------------------------------
# Hangi temayı kullanıyorsanız o temayı açınız. (Buradaki anlatım SubSilver teması içindir diğer temalarda BUL manız gerekn kodlara farklı olabilir dikkat ediniz)
  
templates/subSilver/overall_header.tpl

#
#-----[ BUL ]----------------------------------------
#
<td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span>
            <table cellspacing="0" cellpadding="2" border="0">
               <tr>
                  <td align="center" valign="top" nowrap="nowrap"><span class="mainmenu">

#
#-----[ ARDINA EKLE ]----------------------------------
# this step will add a link into your header menu

<a href="{U_ALBUM}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_album.gif" width="12" height="13" border="0" alt="{L_ALBUM}" hspace="3" />{L_ALBUM}</a>&nbsp;



#
#-----[ AÇ ]-------------------------------------------------------
# also for other templates
templates/subSilver/subSilver.cfg

#
#-----[ BUL ]----------------------------------------
#
?>

#
#-----[ ÖNCESİNE EKLE ]---------------------------------
#
// Album MOD
$images['upload_pic'] = "$current_template_images/{LANG}/upload_pic.gif";
$images['no_thumbnail'] = "$current_template_images/nothumbnail.jpg";


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

#
#-----[ BUL ]----------------------------------------
#
   'U_SEARCH_USER' => append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username'])),

#
#-----[ ARDINA EKLE ]----------------------------------
#
   // Photo Album Addon v2.x.x by Smartor
   'U_PERSONAL_GALLERY' => append_sid("album_personal.$phpEx?user_id=" . $profiledata['user_id']),
   'L_PERSONAL_GALLERY' => sprintf($lang['Personal_Gallery_Of_User'], $profiledata['username']),


#
#-----[ AÇ ]-------------------------------------------------------

templates/subSilver/profile_view_body.tpl

#
#-----[ BUL ]----------------------------------------
#
<a href="{U_SEARCH_USER}" class="genmed">{L_SEARCH_USER_POSTS}</a>

#
#-----[ YOL İÇERİSİNDE ARDINA EKLE ]--------------------------
#
<br /><a href="{U_PERSONAL_GALLERY}" class="genmed">{L_PERSONAL_GALLERY}</a>


#
#-----[ AÇ ]-------------------------------------------------------
# also for all other language packs
language/lang_english/lang_main.php

#
#-----[ BUL ]----------------------------------------
#
//
// Errors (not related to a
// specific failure on a page)
//
$lang['Information'] = 'Information';
$lang['Critical_Information'] = 'Critical Information';

#
#-----[ ÖNCESİNE EKLE ]---------------------------------
#
//
// Photo Album Addon v2.x.x by Smartor
//
$lang['Album'] = 'Album';
$lang['Personal_Gallery_Of_User'] = 'Personal Gallery of %s';


#
#-----[ COPYALA ]-------------------------------------------------------
#Altta adı geçen tüm dosyaları forum pahtınıza göre ve alt kısımdaki klasörlere göre yükleyiniz
#
# Remember to upload all the language files and template files to all your
# language packs and template directories
#
# If you use FTP please remember to use ASCII mode for text files (*.php, *.tpl)
# and BINARY mode for image files (*.jpg, *.gif)
# Fortunately good FTP clients today can auto-detect the mode for your files

copy phpbb_root/*.php to *.php
copy phpbb_root/admin/*.php to admin/
copy phpbb_root/album_mod/*.* to album_mod/
copy phpbb_root/language/lang_english/*.php to language/lang_english/
copy phpbb_root/templates/subSilver/*.* to templates/subSilver/
copy phpbb_root/templates/subSilver/admin/*.* to templates/subSilver/admin/
copy phpbb_root/templates/subSilver/images/*.* to templates/subSilver/images/
copy phpbb_root/templates/subSilver/images/lang_english/*.* to templates/subSilver/images/lang_english/


#
#-----[ KLASÖR OLUŞTURUN ]--------------------------------------
# Klasör oluştur: album_mod/upload
# Klasör oluştur: album_mod/upload/cache


#
#-----[ CHMOD DEĞERLERİNİ DEĞİŞTİRİN ]--------------------------------------
# Require for Unix-like host (you can use your FTP client to do this)
#
# CHMOD 777 album_mod/upload
# CHMOD 777 album_mod/upload/cache


#
#-----[ SQL KURUN ]--------------------------------------------------------
#Tüm yükleme ve kod değiştirme işlemleri bittikten sonra SCRİPT #klaösrü içerisindeki album_db_install.php isimli dosyayı forum ana #pahtına yükleyin ve tarayıcıdan o sayfayı çağırın örneğin;
#
#www.siteismi/forum/album_db_install.php      adresine giriş yapıp SQL u #kurun.  Tebrikler ALBÜM ünüz kurulmuştur. ALBUM MOD da karşınıza çıkan sorunlar için burada yardım alabilrsiniz.
#
##########



# After install, you should check your AdminCP
#
# If you have any problems try to look at FAQ.TXT first!
#
# Keep all files in this archive at a safe place in your hard disk. You
# maybe will need it again if you want to upgrade in future :)
# Normally, you can download the lastest version only from my site. So
# if you lost these files, you would not look back again.


#
#-----[ KAYDET / TÜM DOSYALARI KAPAT ]------------------------------------------
#
# EoM
Alıntı ile Cevapla
Cevapla


Seçenekler


Benzer Konular
Konu Konu Açanlar Forum Cevaplar Güncel Mesajlar
Photo Fix Türkçe B737 Webmastersitesi çöplüğü 1 21-02-2008 02:51
Album Creator Basic Celebrian Webmaster Programları 0 20-11-2007 06:01
Album Creator Basic Celebrian Webmaster Programları 0 20-11-2007 05:34
FirmTools Album Creator Basic Celebrian Webmaster Programları 0 20-11-2007 05:29

Link vermek için alttaki kodu sitenize ekleyebilirsiniz. Veya Ctrl+C ile Kopyalayınız
Örnek görünüm: Webmaster Sitesi