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 09: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
kullanıcı
kullanıcı

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

 

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

İleti EsmerOzcan 04 Ağu 2008 22:53

bunun subsilver temalari icin olani yokmu ?
EsmerOzcan
kullanıcı
kullanıcı

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

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

İleti TRX 05 Ağu 2008 09: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
Kurallarımız : İlk önce okumanız gereken yer.
Makaleler : Acaba bunu nasıl yapıcam ?, sorsam hor görülürmüyüm demeden önce bakmalısın ;)
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 422
Kayıt: 17 Kas 2007 20:46
Konum: TR -- BG
İsim: Türker İnanmaz
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: 3.0.3

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

İleti EsmerOzcan 05 Ağu 2008 15:52

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

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

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

İleti TRX 05 Ağu 2008 16: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
Kurallarımız : İlk önce okumanız gereken yer.
Makaleler : Acaba bunu nasıl yapıcam ?, sorsam hor görülürmüyüm demeden önce bakmalısın ;)
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 422
Kayıt: 17 Kas 2007 20:46
Konum: TR -- BG
İsim: Türker İnanmaz
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: 3.0.3

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

İleti EsmerOzcan 05 Ağu 2008 17: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
kullanıcı
kullanıcı

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

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

İleti TRX 05 Ağu 2008 17:24

Önbelleği ve temaları yeniledeniz mi?
Kurallarımız : İlk önce okumanız gereken yer.
Makaleler : Acaba bunu nasıl yapıcam ?, sorsam hor görülürmüyüm demeden önce bakmalısın ;)
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 422
Kayıt: 17 Kas 2007 20:46
Konum: TR -- BG
İsim: Türker İnanmaz
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: 3.0.3

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

İleti EsmerOzcan 05 Ağu 2008 18: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
kullanıcı
kullanıcı

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

Önceki

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


Kimler çevrimiçi

Bu forumu görüntüleyenler: ozdes ve 0 misafir