| IP: |
n/a |
| Rang: |
|
| Registrierung: |
05.04.2005, 08:05 |
| Wohnort: |
Karlsruhe |
| |
 Forum-Beherrscher mit 584 Punkte, 440 Beiträge |
|
Hallo, Habe mittlerweile die 1.30 installiert und wollte ein paar einstellungen genauso wie in 1.22 haben. Das admin/moderator rang bild: Rang Bild... was muss für die neue Version geändert werden?
Die Video Tags im bbeditor: youtube oder clipfish.de.... Habe auch schon probiert bekomme aber keine Buttons oder Bilder angezeigt... In der datei config/bbcode.php habe ich folgendes hinzugefügt
Code: 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
| 'youtube' => array( 'tag' => 'youtube', 'type' => 'inline', 'content' => 'movie', 'replacement' => '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/<!--TEXT-->"type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>', 'param' => 'no', 'allow_nesting' => false, 'allowed_content' => array( 'inline' => true ) ),
'myvideo' => array( 'tag' => 'myvideo', 'type' => 'inline', 'content' => 'movie', 'replacement' => '<object width="470" height="406"><param name="movie" value="http://www.myvideo.de/movie/<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.myvideo.de/movie/<!--TEXT-->"type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>', 'param' => 'no', 'allow_nesting' => false, 'allowed_content' => array( 'inline' => true ) ),
'clipfish' => array( 'tag' => 'clipfish', 'type' => 'inline', 'content' => 'movie', 'replacement' => '<object width="425" height="350"><param name="movie" value="http://www.clipfish.de/videoplayer.swf?as=0&videoid=<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.clipfish.de/videoplayer.swf?as=0&videoid=<!--TEXT-->"type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>', 'param' => 'no', 'allow_nesting' => false, 'allowed_content' => array( 'inline' => true ) ),
'topic' => array( .... | und weiter unten habe ich:
Code: 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
| 'separator', 'youtube' => array( 'type' => 'image', 'image' => 'bbcode/yt.png', 'width' => 20, 'height' => 20, 'prompt_text' => 'prompt_youtube' ), 'myvideo' => array( 'type' => 'image', 'image' => 'bbcode/my.png', 'width' => 20, 'height' => 20, 'prompt_text' => 'prompt_myvideo' ), 'clipfish' => array( 'type' => 'image', 'image' => 'bbcode/cf.png', 'width' => 20, 'height' => 20, 'prompt_text' => 'prompt_clipfish' ) ) ); ?> | in der entsprechenden Language Datei habe ich auch die Werte auch eingefügt aber leider ohne erfolg
Des weiteren habe ich versucht auch im Java Editor die Video tags hinzuzufügen: In der Datei bbceditor/extra_tags.xml
Code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <item name="youtube"> <buttonID>b1</buttonID> <comboName>gui.dialog.extra.youtube.comboname</comboName> <dialogTitle>gui.dialog.extra.youtube.title</dialogTitle> <parameterTitle>gui.dialog.extra.youtube.parameter.title</parameterTitle> </item> <item name="myvideo"> <buttonID>b1</buttonID> <comboName>gui.dialog.extra.myvideo.comboname</comboName> <dialogTitle>gui.dialog.extra.myvideo.title</dialogTitle> <parameterTitle>gui.dialog.extra.myvideo.parameter.title</parameterTitle> </item> <item name="clipfish"> <buttonID>b1</buttonID> <comboName>gui.dialog.extra.clipfish.comboname</comboName> <dialogTitle>gui.dialog.extra.clipfish.title</dialogTitle> <parameterTitle>gui.dialog.extra.clipfish.parameter.title</parameterTitle> </item> | In der language Datei die entsprechenden Werte aber wird leider auch nichts angezeigt was mach ich falsch?
|
|