• Bannato User

    Grazie sei molto gentile il fatto è che è in inglese
    Guarda questo e quello che ce scritto nel fil .mod mi puoi dire cosa devo fare?
    Per piacere

    [php]
    ##############################################################

    MOD Title: YouTube Video BBCode

    MOD Author: michaeltripp < [email protected] > (Mike) http://itsbeenconfirmed.com

    MOD Description: Adds a new bbcode allowing you to easily embed videos from YouTube.com.

    MOD Version: 1.0.1

    Installation Level: (Easy)

    Installation Time: ~5 Minutes

    Files To Edit: - includes/bbcode.php,

    - langugage/lang_english/lang_main.php,

    - templates/subSilver/bbcode.tpl,

    - templates/subSilver/posting_body.tpl

    Included Files: n/a

    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:

    You must have Multiple BBCode MOD installed for this to work.

    Get it here: http://www.phpbb.com/phpBB/viewtopic.php?t=74705

    example:

    [youtube]YouTube URL[/youtube]

    YouTube URL is the "Video URL (Permalink)" or the URL of the page the video

    is on, NOT the "Embeddable Player" code they have on their video pages.

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

    MOD History:

    2006-03-20 - Version 1.0.1

    -Changed the names of the variables tbat are replaced in bbcode.tpl

    from VIDEO and LINK to YOUTUBEID and YOUTUBELINK, because the names

    were too common making it likely that they would conflict with other mods.

    2006-03-17 - Version 1.0.0

    2006-03-16 - Version 0.9.3

    -Fixed a problem in the regex that allowed some invalid but benign input

    2006-03-15 - Version 0.9.2

    -Made the word "link" was a language variable

    -Made the link open in a new window

    -YouTube video IDs can have dashes, so I changed the regex to account for this

    -Moved the link underneath the video instead of beside it

    2006-03-07 - Version 0.9.1

    -Added link for browsers YouTube's player doesn't like, i.e. Opera 😞

    2006-03-06 - Version 0.9.0

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

    Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD

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

    #-----[ OPEN ]---------------------------------

    includes/bbcode.php

    #-----[ FIND ]---------------------------------

    $EMBB_widths = array(''

    #-----[ IN-LINE FIND ]---------------------------------

    array(''

    #-----[ IN-LINE AFTER, ADD ]---------------------------------

    ,'60'

    #-----[ FIND ]---------------------------------

    $EMBB_values = array(''

    #-----[ IN-LINE FIND ]---------------------------------

    $EMBB_values = array(''

    #-----[ IN-LINE AFTER, ADD ]---------------------------------

    ,'YouTube'

    #-----[ FIND ]------------------------------------------

    $bbcode_tpl['email'] = str_replace('{EMAIL}', '\1', $bbcode_tpl['email']);

    #-----[ AFTER, ADD ]------------------------------------------

    $bbcode_tpl['youtube'] = str_replace('{YOUTUBEID}', '\1', $bbcode_tpl['youtube']);
    $bbcode_tpl['youtube'] = str_replace('{YOUTUBELINK}', $lang['youtube_link'], $bbcode_tpl['youtube']);

    #-----[ FIND ]------------------------------------------

    $replacements[] = $bbcode_tpl['email'];

    #-----[ AFTER, ADD ]------------------------------------------

    // [youtube]YouTube URL[/youtube] code..
    $patterns[] = "#[youtube]http://(?:www.)?

    ";
    $replacements[] = $bbcode_tpl['youtube'];

    #-----[ OPEN ]---------------------------------

    language/lang_english/lang_main.php

    #-----[ FIND ]---------------------------------

    NOTE: the full line to look for is:

    #$lang['bbcode_f_help'] = "Font size: small text";

    $lang['bbcode_f_help'] =

    #-----[ AFTER, ADD ]---------------------------------

    $lang['bbcode_help']['youtube'] = 'YouTube: [youtube]YouTube URL[/youtube]';

    $lang['youtube_link'] = 'Link';

    #-----[ OPEN ]------------------------------------------

    templates/subSilver/bbcode.tpl

    #-----[ FIND ]------------------------------------------

    <!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</a><!-- END email -->

    #-----[ AFTER, ADD ]------------------------------------------

    <!-- BEGIN youtube -->
    <object width="425" height="350">
    <param name="movie" value="http://www.youtube.com/v/{YOUTUBEID}"></param>
    <embed src="http://it.youtube.com/v/{YOUTUBEID}" type="application/x-shockwave-flash" width="425" height="350"></embed>
    </object><br />
    <a href="http://youtube.com/watch?v={YOUTUBEID}" target="_blank">{YOUTUBELINK}</a><br />
    <!-- END youtube -->

    #-----[ OPEN ]---------------------------------

    templates/subSilver/posting_body.tpl

    #-----[ FIND ]---------------------------------

    NOTE: the actual line to find is MUCH longer, containing all the bbcode tags

    bbtags = new Array(

    #-----[ IN-LINE FIND ]---------------------------------

    '',''

    #-----[ IN-LINE AFTER, ADD ]---------------------------------

    ,'[youtube]','[/youtube]'

    #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------

    EoM

    [/php]


  • Super User

    I files da modificare sono:

    • includes/bbcode.php,
    • langugage/lang_english/lang_main.php,
    • templates/subSilver/bbcode.tpl,
    • templates/subSilver/posting_body.tpl

    Scaricali e creane 2 copie: una copia la modifichi e l'altra la tieni di backup 😉

    Quando c'è scritto OPEN devi aprire il file indicato
    Quando c'è scritto FIND devi trovare la stringa indicata
    Quando c'è scritto IN-LINE FIND devi trovare nella stessa riga indicata precedentemente quello che sta indicato
    Quando c'è scritto IN-LINE AFTER, ADD devi aggiungere dopo la stringa trovata nella stessa linea il codice indicato
    Quando c'è scritto AFTER, ADD dopo il codice trovato devi inserire il codice indicato
    Quando c'è scritto SAVE/CLOSE ALL FILES devi salvare e chiudere tutto

    Dopo uppa il tutto ed il gioco è fatto 😉


  • Bannato User

    Grazie tante poi ti dico se ci sono riuscito ciao!!!!!


  • Bannato User

    Ciao scusa ho incominciato a farlo
    Ma la prima riga da trovare nel file bbcode.php non me la trova come mai???
    LA riga da trovare e questa $EMBB_widths = array(''


  • Bannato User

    Ciao qui in allegato ho messo la mod e i 4 file da modificare non e che me lo puoi fare te?
    Per piacere io non ci riesco :bho:


  • Bannato User

    cionfs mi puoi aiutare allora?


  • Super User

    Ciao qui in allegato ho messo la mod e i 4 file da modificare non e che me lo puoi fare te?
    Per piacere io non ci riesco

    Ciao Cambiagames.com 🙂

    Sul forum discutiamo argomenti ed offriamo piccoli aiuti, non forniamo servizi gratuiti.

    Puoi chiedere in Collaborazioni e lavoro o qui. :ciaosai:


  • Bannato User

    Io ho chiesto aiuto a cionfs mica a te


  • Super User

    @cambiagames.com said:

    Io ho chiesto aiuto a cionfs mica a te

    Ciao cambiagames.com,

    Sono spiacente ma non effettuo "aiuti" di questo genere.

    Puoi chiedere in Collaborazioni e lavoro.

    :ciauz:


  • Admin

    Buongiorno cambiagames.

    Il suo atteggiamento è incompatibile con il forumgt.