phpBB Türkiye - phpBB3 Türkçe destek ve geliştirme

İçeriği atla

profesyonel phpBB3 hizmetleri

Sitemiz sadece phpBB 3.0 sürümüne destek vermektedir. Konu açmadan, ileti yazmadan önce lütfen site kuralları sayfamıza göz atınız.

[alpha] Top5 MOD background version (V2.0.0)

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti doctoralone 05 Tem 2008 10:42

doctoralone yazdı:sid lerde sorun var sanırım.
herşeyiyle güzel çalışıyor ama maalesef oturum açma bilgisini tutamıyor :(

aynı sorunu yaşayan var mı yoksa sadece bende mi?
aslında benim sitemde bi sorun var heralde çerez ayarlarıyla ilgili ama çözemedim :D
doctoralone


İleti: 150
Kayıt: 01 Nis 2007 09:48
HTML: Orta
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: Allergy premod,yakusha premod,3.0.1

  profesyonel phpBB3 çözümleri ve web hizmetleri

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti EsmerOzcan 04 Ağu 2008 23:53

bunun subsilver temalari icin olani yokmu ?
EsmerOzcan


İleti: 44
Kayıt: 27 Tem 2008 03:35
Konum: Nürnberg
İsim: Özcan
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: İyi
Sürüm: phpbb 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti TRX 05 Ağu 2008 10:53

Var :D hemen install dosyasında ufak bir değişiklik yapalım ;)


Kod: Tümünü seç
##############################################################
## MOD NAME   : phpBB3 TOP5
## MOD VERSION   : 2.0.0
## MOD AURTHOR   : Bamboocat Digital Corp.
##
## Difficulty   : Middle
## Duration   : 5 ~ 10 minites
##
## Files to Edit: 3
## includes/constants.php
## includes/functions.php
## styles/subsilver2/template/index_body.html
##
## Include Files: 15
## phpbb3_top5.swf
## rssapi.php
## top5pods.php
## top5rss.php
## adm/style/acp_top5rss.html
## adm/style/acp_top5rss_config.html
## adm/style/acp_top5rss_delconfirm.html
## includes/acp/acp_top5rss.php
## includes/acp/info/acp_top5rss.php
## language/tw_cmn_hant(or en)/rssapi.php
## language/tw_cmn_hant(or en)/mods/info_acp_top5rss.php
## Scripts/AC_RunActiveContent.js
## styles/subsilver2/template/flex/rssapi_body.html
## styles/subsilver2/template/fles/top5pods_body.html
## styles/subsilver2/template/flex/top5rss_body.html
##
## Include Icons: n/a
##
##############################################################
## Before install this MOD, please backup your files.
##############################################################
## Info:
## top5rss.php - Top5 RSS MOD for phpBB3
## "mode" param to choose what you want to show,
## "news" means "New topics",
## "views" means "Top Views",
## "replies" means "Top Replies",
## "last" means "Last Replies",
## Hope you like it, have fun.
##
## data/pods.xml - Adobe Flex SWF Configuration File. Guide at the Head of the file.
##
##############################################################

STEP 1:
Copy the files in the folder that names TW or EN to your phpBB3 path.

##############################################################

STEP 2:
Edit Files
#
#-----[ AÇ ]-----------------------------
#
includes/constants.php

#
#-----[ BUL ]-----------------------------
#
// Additional tables

#
#-----[ SONRASINA EKLE ]-----------------------
#
//top5 rss mod
define('PODS_TABLE',            $table_prefix . 'pods');
//top5 rss mod

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

#
#-----[ BUL ]-----------------------------
#
   // application/xhtml+xml not used because of IE
   header('Content-type: text/html; charset=UTF-8');

#
#-----[ ÖNCESİNE EKLE ]----------------------
#
   //top5 rss mod
   if(isset($config['top5rss_version']))
   {
      $sql = "SELECT COUNT(pod_id) AS num_pods FROM " . PODS_TABLE . " WHERE pod_type > 0";
      $result = $db->sql_query($sql);
      $pods_count = (int) $db->sql_fetchfield('num_pods');
      if($pods_count)
      {
         $template->assign_vars(array(
            'S_TOP5' => true,
            )
         );
      }
   }
   //top5 rss mod

#
#-----[ AÇ ]-----------------------------
#
styles/subsilver2/template/index_body.html

#
#-----[ BUL ]-----------------------------
#
<!-- INCLUDE forumlist_body.html -->

#
#-----[ SONRASINA EKLE ]-----------------------
#
<!-- phpBB3_top5_mod -->
<!-- IF S_TOP5 -->
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script type="text/javascript">
AC_FL_RunContent( 'id','phpbb3_top5','width','100%','height','280','codebase','http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab','movie','phpbb3_top5','quality','high','bgcolor','#ffffff','allowscriptaccess','sameDomain' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    id="phpbb3_top5" width="100%" height="280"
    codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
    <param name="movie" value="phpbb3_top5.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="allowScriptAccess" value="sameDomain" />
    <embed src="phpbb3_top5.swf" quality="high" bgcolor="#ffffff"
        width="100%" height="280" name="phpbb3_top5" align="middle"
        play="true"
        loop="false"
        quality="high"
        allowScriptAccess="sameDomain"
        type="application/x-shockwave-flash"
        pluginspage="http://www.adobe.com/go/getflashplayer">
    </embed>
</object></noscript>
<!-- ENDIF -->
<!-- phpBB3_top5_mod -->

#
#-----[ KAYDET / BÜTÜN KLASÖRLERİ KAPAT ]-------------
#
#SON
Park's Mania fun factory : Feel the difference ™
ForumUp Türkiye : ForumUp Türkiye Destek sitesi

"Her Zaman Fark Yarat!".
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 305
Kayıt: 17 Kas 2007 21:46
Konum: TR -- BG
İsim: Turker
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti EsmerOzcan 05 Ağu 2008 16:52

tsk TRX kurdum calisti ama arka plani beyaz benim temadma koyu renk olmadi :D
EsmerOzcan


İleti: 44
Kayıt: 27 Tem 2008 03:35
Konum: Nürnberg
İsim: Özcan
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: İyi
Sürüm: phpbb 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti TRX 05 Ağu 2008 17:40

Eğer flash bilgin varsa beyaz kısımı siyah yapabilirsin.

Ve kullandığın portal'ın imzasını eklemelisin;


styles/subsilver2/template/overall_footer.html
BUL
Kod: Tümünü seç
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->

SONRASINA EKLE
Kod: Tümünü seç
<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<!-- ENDIF -->

KAYDET / KAPAT
Park's Mania fun factory : Feel the difference ™
ForumUp Türkiye : ForumUp Türkiye Destek sitesi

"Her Zaman Fark Yarat!".
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 305
Kayıt: 17 Kas 2007 21:46
Konum: TR -- BG
İsim: Turker
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti EsmerOzcan 05 Ağu 2008 18:11

tamam bi denerim :D

su portal copy seyini ekledim ama yinede görünmüyor footerde :?

iste bu benim footer

Kod: Tümünü seç
<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
</div>

<!--
   We request you retain the full copyright notice below including the link to www.phpbb.com.
   This not only gives respect to the large amount of time given freely by the developers
   but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
   the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
   "phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
   forums may be affected.

   The phpBB Group : 2006
//-->

<!--
   Stil imzamý silmezseniz sevinirim. Silersenizde canýnýz saðolsun. :)
//-->

<div id="wrapfooter">
   <!-- IF U_ACP --><span class="gensmall">[ <a href="{U_ACP}">{L_ACP}</a> ]</span><br /><br /><!-- ENDIF -->
   <span class="copyright">Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group
   <!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- IF S_PORTAL_COPY --><br />{S_PORTAL_COPY}<!-- ENDIF -->
   <br /><span class="gensmall">Dizayn <a href="http://www.ta-frm.com/"><strong>Ercan K.</strong></a></span>
   <!-- IF S_PRS_ENABLED -->|&nbsp;<a href="http://prs.kruijff.org/">PRS</a>&nbsp;&copy;&nbsp;2008&nbsp;PRS&nbsp;Team</a><!-- ENDIF --><!-- IF DEBUG_OUTPUT --><br /><bdo dir="ltr">[ {DEBUG_OUTPUT} ]</bdo><!-- ENDIF --></span>
</div>
</div>
<div class="nobottomgap"></div>
</div>
<div class="bottom-left"></div><div class="bottom-center"></div><div class="bottom-right">
</div>
</body>
</html>
EsmerOzcan


İleti: 44
Kayıt: 27 Tem 2008 03:35
Konum: Nürnberg
İsim: Özcan
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: İyi
Sürüm: phpbb 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti TRX 05 Ağu 2008 18:24

Önbelleği ve temaları yeniledeniz mi?
Park's Mania fun factory : Feel the difference ™
ForumUp Türkiye : ForumUp Türkiye Destek sitesi

"Her Zaman Fark Yarat!".
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 305
Kayıt: 17 Kas 2007 21:46
Konum: TR -- BG
İsim: Turker
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.2

Re: [alpha] Top5 MOD background version (V2.0.0)

İleti EsmerOzcan 05 Ağu 2008 19:07

TRX yazdı:Önbelleği ve temaları yeniledeniz mi?


evet yeniledim baska yerlerede eklemeye calistim ama yinede göstermiyor :?

edit: kendim yazdim oldu böyle yaptim

Kod: Tümünü seç
<br />Portal by <a href=http://www.phpbb3portal.com /> Phppbb3 Portal</a>
EsmerOzcan


İleti: 44
Kayıt: 27 Tem 2008 03:35
Konum: Nürnberg
İsim: Özcan
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: İyi
Sürüm: phpbb 3.0.2

Önceki

Eklenti Tanıtımları, Duyurular, Güncellemeler


Kimler çevrimiçi

Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 1 misafir