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

[BETA] Advanced Bbcode Box 3 (1.0.10)

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti superadam 28 Eyl 2008 15:36

Iceman benden link istemiştin.
http://superbb.site90.com/SuperBB/ adresinden bakabilirsin.
Bu modifikasyon sorunsuzca çalışıyor
superadam
kullanıcı
kullanıcı

İleti: 50
Kayıt: 16 Arl 2007 17:03
HTML: Çok iyi
CSS: Orta
PHP: İyi
phpBB3: İyi
Sürüm: phpBB 3.0.5

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti kuyumcu 28 Eyl 2008 21:48

TRX yazdı:Sorun kodlarda değil tarayıcında, ie de olduğunu görebilirsin. ;)
Tarayıcınna WMV eklentisi kurarsan sorunun ortadan kalkar.

Eyvallah sağol
kuyumcu
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 78
Kayıt: 30 Ağu 2008 17:41
Konum: İstanbul
İsim: Murat
HTML: Orta
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpbb 3.0.5

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti ANKA 09 Ekm 2008 22:00

Phpbb3 3.0.2
Tema: Soul City
Arkadaşlar cok acil yardım edermisiniz ben bu modu kurdum gayet güzel calışıyo ama en önemli 2 video yayımladıgım kodlarda degişiklik olmuş ve eskiler iptal olmuş 10larca video gözükmüyor sitede.
ACık konuşmak gerekirse benim bu modu kurmadan önceki gametrailer ve gamespot video yayımladıgım kod şu şeklideydi : [gamespot]Video ID[/gamespot] ve [gametrailers]Video ID[/gametrailers] önceden bu sayede videolarımı yayınlıyordum bu modu kurdum ve eski yayımladıgım onalrca video göstermez oldu.
Yeni moda göre artık [gamespot]Video Urlsi[/gamespot] ve [gametrailers]Video Urlsi[/gametrailers] bu şekli almış Videonun Id si yerine videonun tam adresini yazmak gerekiyo.Mod dan önce ki videolarım göztermiyo.
Bunu nasıl eski halindeki kodlara cevirebilirim lütfen yardım edin.
ANKA
kullanıcı
kullanıcı

İleti: 34
Kayıt: 13 Ağu 2008 22:03
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB3 3.0.2

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti TRX 09 Ekm 2008 22:16

2 yolu var, önce ilk yolu benim için mantıklı olan ama sonucu belli olmayan bir yol (:

Yönetim Paneli > Gönderim > Biçim Kodları > Yeni Biçim Kodu ekle

ozel-bbcode-f97/gamespot-bbcodelari-t3603.html

2. yol ise,
Kod: Tümünü seç
#####################################################################
## MOD Title: ABBC3 - how-to-add
##
## MOD Author: leviatan21 < info@mssti.com > (Gabriel) http://www.mssti.com/phpbb2/
##
## MOD Description: This tutorial is for explain how to add a new icon & bbcode to Advanced BBcode box 3 ( aka ABBC3 )
##
## MOD Version: 0.0.3
##
## Installation Level: Hard
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
#####################################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
#####################################################################
## Author Notes:
##
##   In this tutorial I will explain how to add costom bbcodes
##   examples are from http://www.phpbb.com/community/viewtopic.php?f=46&t=579376
##
##   Part 1 : Easy level custom bbcode ( or phpbb3 way )
##          Center text
##   Part 2 : Intermediate level custom bbcode with icon
##          Goear audio
##   Part 3 : Advanced level custom bbcode with icon & wizzard
##          Deezer audio
##
#####################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#####################################################################

#####################################################################
## PART 1 : Easy way custom bbcode ( or phpbb3 way )
#####################################################################
##
## Files To Edit: 0
##   
## Included Files: 0
##
## Author Notes:
##  bbcode : Center text ( this is already done )
##
#####################################################################

Log in in your forum and go to [ Administration Control Panel ]

go to: [ Posting ] > [ Messages :: BBCodes] > [ Add a new BBCode ]

#-----[ BBCode usage ]-----------------------------------------------
[center]{TEXT}[/center]

#-----[ HTML replacement ]-------------------------------------------
<div align="center">{TEXT}</div>

#-----[ Help line ]--------------------------------------------------
Enter your text to be centered between [center] and [/center]

#-----[ Settings ]---------------------------------------------------
Check the "Display on posting page"

#-----[ Submit ]-----------------------------------------------------
Click on submit button

#####################################################################
##   Part 2 : Intermediate level custom bbcode with icon
#####################################################################
##
## Files To Edit: 0
##
## Included Files: 0
##   images/goear.gif
##
## Author Notes:
##   Install a new custom bbcode, show it with an image instead a button.
##   bbcode : Goear audio
##
#####################################################################

Copy images/deezer.gif to styles/abbcode/images/deezer.gif

Log in in your forum and go to [ Administration Control Panel ]

Go to: [ Posting ] > [ Messages :: BBCodes] > [ Add a new BBCode ]

#-----[ BBCode usage ]-----------------------------------------------
[goear]http://www.goear.com/listen.php?v={TEXT}[/goear]

#-----[ HTML replacement ]-------------------------------------------
<object width="366" height="75">
   <embed src="http://www.goear.com/files/localplayer.swf?file={TEXT}" type="application/x-shockwave-flash" wmode="transparent" quality="high" width="366" height="75"></embed>
</object>
<br/>

#-----[ Help line ]--------------------------------------------------
Insert audio from Goear : [goear]Goear audio URL[/goear] ( Example : http://www.goear.com/listen.php?v=0874d92 )

#-----[ Settings ]---------------------------------------------------
Do not check the "Display on posting page"

#-----[ Submit ]-----------------------------------------------------
Click on submit button

#--------------------------------------------------------------------
Go to: [ Posting ] > [ Messages :: Advanced BBcodes Box 3] > [ ABBC3 BBCodes ]

#-----[ Find ]-------------------------------------------------------
[goear]

#-----[ Edit ]-------------------------------------------------------
Click on Green icon.

#-----[ Set up ]-----------------------------------------------------
# Note : Now you can mannage this bbcode

If you want to use it on Posts, check : Post settings
If you want to use it on Private message, check : Private message settings
If you want to use it on , check : Signature settings

In "Tag image icon" use the pull-down to find "goear.gif"

#-----[ Submit ]-----------------------------------------------------
Click on submit button

#####################################################################
## PART 3 :  Advanced level custom bbcode with icon & wizzard
#####################################################################
##
## Files To Edit:
##   language/en/mods/abbcode.php
##   styles/prosilver/template/posting_abbcode_buttons.html
##
## Included Files:
##   images/deezer.gif
##
## Author Notes:
##   Install a new custom bbcode, show it with an image instead a button and get a wizard.
##   bbcode : Deezer audio
##
#####################################################################

#####################################################################
## Step: 1 / 3
#####################################################################
Copy images/deezer.gif to styles/abbcode/images/deezer.gif

Log in in your forum and go to [ Administration Control Panel ]

Go to: [ Posting ] > [ Messages :: BBCodes] > [ Add a new BBCode ]

#-----[ BBCode usage ]-----------------------------------------------
[deezer]http://www.deezer.com/track/{TEXT}[/deezer]

#-----[ HTML replacement ]-------------------------------------------
<object width="180" height="25">
   <param name="movie" value="http://www.deezer.com/embedded/small-widget.swf?idSong={TEXT}&colorBackground=0x525252&colorButtons=0xDDDDDD&textColor1=0xFFFFFF&autoplay=0" />
   <embed src="http://www.deezer.com/embedded/small-widget.swf?idSong={TEXT}&colorBackground=0x525252&colorButtons=0xDDDDDD&textColor1=0xFFFFFF&autoplay=0" type="application/x-shockwave-flash" wmode="transparent" quality="high" width="180" height="25"></embed>
</object>
<br/>

#-----[ Help line ]--------------------------------------------------
# Note : You don't need to add more info that this, in this step.
[Deezer]Deezer audio URL[/Deezer]

#-----[ Settings ]---------------------------------------------------
Do not check the "Display on posting page"

#-----[ Submit ]-----------------------------------------------------
Click on submit button

#--------------------------------------------------------------------
Go to: [ Posting ] > [ Messages :: Advanced BBcodes Box 3] > [ ABBC3 BBCodes ]

#-----[ Find ]-------------------------------------------------------
[deezer]

#-----[ Edit ]-------------------------------------------------------
Click on Green icon.

#-----[ Set up ]-----------------------------------------------------
# Note : Now you can mannage this bbcode

If you want to use it on Posts, check : Post settings
If you want to use it on Private message, check : Private message settings
If you want to use it on , check : Signature settings

In "Tag image icon" use the pull-down to find "deezer.gif"

#-----[ Submit ]-----------------------------------------------------
Click on submit button

####################################################################
## Step: 2 / 3
#####################################################################
#
#-----[ OPEN ]-------------------------------------------------------
# NOTE: You will have to make this change to each language you have installed and you may translate it in the correct language
#
language/en/mods/abbcode.php

#
#-----[ FIND ]-------------------------------------------------------
#
   // Custom BBcodes
#
#-----[ AFTER, ADD ]------------------------------------------------
# NOTE: Add these lines on a new blank line after the preceding line(s) to find.
#
# USAGE: MUST start allways the tag name in upperase + _TAG / _MOVER / _TIP /_EXAMPLE or _VIEW. I use DEEZER for this example
#
   // Deezer audio
   'DEEZER_TAG'         => 'Deezer',
   'DEEZER_MOVER'         => 'Insert audio from Deezer',
   'DEEZER_TIP'         => '[Deezer]Deezer audio URL[/Deezer]',
   'DEEZER_EXAMPLE'      => 'http://www.deezer.com/track/351534',
   'DEEZER_VIEW'         => '<object width="180" height="220"><param name="movie" value="http://www.deezer.com/embedded/widget.swf?path=696108&lang=en&autoplay=true&id=351534"></param><embed src="http://www.deezer.com/embedded/widget.swf?path=696108&lang=en&autoplay=true&id=351534" type="application/x-shockwave-flash" width="180" height="220"></embed></object>',

#####################################################################
## Step: 3 / 3
#####################################################################
#
#-----[ OPEN ]-------------------------------------------------------
# NOTE: You will have to make this change to ALL themes you have installed. I use "prosilver" as an example.
#
styles/prosilver/template/posting_abbcode_buttons.html

#
#-----[ FIND ]-------------------------------------------------------
#
      /** This bbcodes needs extra data **/
#
#-----[ BEFORE, ADD ]------------------------------------------------
# NOTE: Add these lines on a new blank line before the preceding line(s) to find.
#
      case "deezer" :

#
#-----[DIY]----------------------------------------------------------
#
After installation, make sure you purge the cache and refresh all the styles through the ACP to get everything to show up correctly.

#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------------
#
# EoM
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 681
Kayıt: 17 Kas 2007 20:46
Konum: Istanbul
İsim: Türker İnanmaz
HTML: Orta
CSS: Orta
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.9

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti ANKA 09 Ekm 2008 22:36

1. yönetimi daha öncede denedim ama kod zaten vardır diyor.Biçim Kodları bölümünde gamespot ve gametrailer gözükmüyo modun kendi bbcode bölümde gözüküyo ama ordan kodlar editlenmiyor.

2.yolu hicmi hic anlamadım yani bununla alakasını cözemedim.2.yöntemde bbcodelerin yüklenme şekli var sanırsam ama zaten bende gamespot ve gametrails yüklü modu kurmadıgım zaman Video ID istiyodu Bu modu kurdum Video Urls si istiyor.
Lütfen yardım edin
ANKA
kullanıcı
kullanıcı

İleti: 34
Kayıt: 13 Ağu 2008 22:03
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB3 3.0.2

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti TRX 09 Ekm 2008 23:03

iki sürümünde \includes\abbcode.php dosyasını karşılaştırdım aralarında fark göremedim :|

10.9 sürümü;
Kod: Tümünü seç
            'gamespot.com'        => array ( 'display' => true    ,'image' => 'gamespot.gif'        ,'example' => "http://www.gamespot.com/video/928334/6185856/lost-odyssey-official-trailer-8"                                            ,'found' => "#http://www.gamespot.com/video/([0-9]+)?/([0-9]+)?(/[^/]+)?#si"                            ,'regexp' => '<embed id="mymovie" width="{WIDTH}" height="{HEIGHT}" flashvars="paramsURI=http%3A%2F%2Fwww%2Egamespot%2Ecom%2Fpages%2Fvideo%5Fplayer%2Fproteus%5Fxml%2Ephp%3Fadseg%3D%26adgrp%3D%26sid%3D$2%26pid%3D$1%26mb%3D%26onid%3D%26nc%3D1202626246593%26embedded%3D1%26showWatermark%3D0%26autoPlay%3D0" allowfullscreen="true" allowscriptaccess="never" quality="high" name="mymovie" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/gs/proteus_embed.swf" type="application/x-shockwave-flash"/><br/>' ), 


10.10 sürümü;
Kod: Tümünü seç
            'gamespot.com'        => array ( 'display' => true    ,'image' => 'gamespot.gif'        ,'example' => "http://www.gamespot.com/video/928334/6185856/lost-odyssey-official-trailer-8"                                                    ,'found' => "#http://www.gamespot.com/video/([0-9]+)?/([0-9]+)?(/[^/]+)?#si"                            ,'regexp' => '<embed id="mymovie" width="{WIDTH}" height="{HEIGHT}" flashvars="paramsURI=http%3A%2F%2Fwww%2Egamespot%2Ecom%2Fpages%2Fvideo%5Fplayer%2Fproteus%5Fxml%2Ephp%3Fadseg%3D%26adgrp%3D%26sid%3D$2%26pid%3D$1%26mb%3D%26onid%3D%26nc%3D1202626246593%26embedded%3D1%26showWatermark%3D0%26autoPlay%3D0" allowfullscreen="true" allowscriptaccess="never" quality="high" name="mymovie" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/gs/proteus_embed.swf" type="application/x-shockwave-flash"/>' ), 


10.9 unki ile 10.10 nun gamespot verisini değiştirsen bir faydası olabilir belki :roll:
Eğer Local de kurulu ise öyle yap, sitende ise önce yedekle dosyanı sonra değiştir..
Tamamen mantık yürütürek bu olasılığı sunuyorum. Umarım işe yarar.
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 681
Kayıt: 17 Kas 2007 20:46
Konum: Istanbul
İsim: Türker İnanmaz
HTML: Orta
CSS: Orta
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.9

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti ANKA 09 Ekm 2008 23:27

Bi önceki versiyonundada zaten aynı yani Video ID yerine Video Url si istiyor. Advanced bbcode box 3 ü kurmadan önce ekledigim kodu uyarlamamız yani bunun üstünde degiştirmemiz gerekiyoki ben \includes\abbcode.php actım ve şu şekilde degiştirdim.

Kod: Tümünü seç
            'gamespot.com'        => array ( 'display' => true    ,'image' => 'gamespot.gif'        ,'example' => "http://www.gamespot.com/video/928334/6185856/lost-odyssey-official-trailer-8"                                                    ,'found' => "#http://www.gamespot.com/video/([0-9]+)?/([0-9]+)?(/[^/]+)?#si"                            ,'regexp' => '<embed id="mymovie" width="{WIDTH}" height="{HEIGHT}" flashvars="paramsURI=http%3A%2F%2Fwww%2Egamespot%2Ecom%2Fpages%2Fvideo%5Fplayer%2Fproteus%5Fxml%2Ephp%3Fadseg%3D%26adgrp%3D%26sid%3D$2%26pid%3D$1%26mb%3D%26onid%3D%26nc%3D1202626246593%26embedded%3D1%26showWatermark%3D0%26autoPlay%3D0" allowfullscreen="true" allowscriptaccess="never" quality="high" name="mymovie" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/gs/proteus_embed.swf" type="application/x-shockwave-flash"/>' ),


Bu şekilde degiştirdim

Kod: Tümünü seç
            'gamespot.com'        => array ( 'display' => true    ,'image' => 'gamespot.gif'        ,'example' => "http://www.gamespot.com/video/928334/6185856/lost-odyssey-official-trailer-8"                                                    ,'found' => "#http://www.gamespot.com/video/([0-9]+)?/([0-9]+)?(/[^/]+)?#si"                            ,'regexp' =>''<embed id="mymovie" width="432" height="355" flashvars="paramsURI=http%3A%2F%2Fwww%2Egamespot%2Ecom%2Fpages%2Fvideo%5Fplayer%2Fproteus%5Fxml%2Ephp%3Fadseg%3D%26adgrp%3D%26sid%3D{TEXT}%26pid%3D944074%26mb%3D%26onid%3D%26nc%3D1198453973523%26embedded%3D1%26showWatermark%3D0%26autoPlay%3D0" allowfullscreen="true" allowscriptaccess="always" quality="high" name="mymovie" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/gs/proteus_embed.swf" type="application/x-shockwave-flash"/>' ),


böyle yaptım bu seferde site acılmıyo off ya :(
ANKA
kullanıcı
kullanıcı

İleti: 34
Kayıt: 13 Ağu 2008 22:03
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB3 3.0.2

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti sonerium 19 Ekm 2008 22:56

Epey uğraştırdı ama çok da güzel oldu. Bi an panelden eklediğim kodlar kafamı karıştırsa da oldu. Transparent arka planla da temaya çok güzel gitti. Teşekürler emeği geçenlere.

Düzeltme: Eğer IE8 kullanmaya başlayanlardansanız, bu mod ve birçok tema bozuk görünüyor. Sanırım microsoft birkaç adım öne atladı ie8 ile.
sonerium
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 109
Kayıt: 05 Nis 2007 19:57
Konum: Fethiye
İsim: Soner
HTML: İyi
CSS: Başlangıç
PHP: Başlangıç
phpBB3: İyi
Sürüm: phpBB 3.3.0

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti v3npa 07 Kas 2008 05:45

Arkadaşlar bende sorun nerde anlamadım...YKP de herşey normal ama bir türlü mesaj yazmada çıkmıyor...
ayrı bir ayarımı var acaba... :roll:
Eklentiler
3.JPG
2.JPG
1.JPG
v3npa
kullanıcı
kullanıcı

İleti: 16
Kayıt: 06 Kas 2008 21:25
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB 3.0.2

Re: [BETA] Advanced Bbcode Box 3 (1.0.10)

İleti TRX 07 Kas 2008 12:11

Tema değişikliklerini yaptınız mı?
TRX
genel yetkili
genel yetkili

Kullanıcı avatarı

İleti: 681
Kayıt: 17 Kas 2007 20:46
Konum: Istanbul
İsim: Türker İnanmaz
HTML: Orta
CSS: Orta
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.9

ÖncekiSonraki

Eklenti Sorunlar & Yardım


Kimler çevrimiçi

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

cron