• User

    Come inseire smile nel forum senza inpazzire?

    Ho una valanga di gif animate e non.. ma come faccio ad inserire gli smile nel mio forum?
    ho messo le gif in images tramite FTP...ho fatto bene?
    Il problema sorge nell'amministrazione (phpBB) mi dice di inserirlo UNO a UNO 😮

    non c'è un modo più veloce?

    p.s. ma non c'è un tasto search nel forum? per evitare doppioni di domande..

    ciao!
    Enzo


  • User

    naturalmente ho provato a creare un .pak ed eliminare gli esistenti...morale ora non ho più nessuna emoticon :arrabbiato:

    Rispondetemi in qualsiai caso, anche se impossibile!
    Altrimenti mi uccidono nel mio forum :mad9:


  • Super User

    Ciao enzog,
    visto che la tua domanda riguarda phpbb ti sposto nella sezione adatta 😉


  • User Attivo

    basta importare tutto un pacchetto con estensione **.pak **nella cartella smiley ed il sistema lo riconoscerà. Basterà solamente confermare


  • User

    @clubbu said:

    basta importare tutto un pacchetto con estensione **.pak **nella cartella smiley ed il sistema lo riconoscerà. Basterà solamente confermare
    ma come faccio a creare un .pak?

    io ho provato a fare un zip e rinominarlo...ma non funziona :mmm:


  • User Attivo

    scarichi già i pacchetti sul sito di phpBB


  • User

    @clubbu said:

    scarichi già i pacchetti sul sito di phpBB

    a questo punto domanda di rito...mi dici dove?

    io ho spulciato il sito.. alla voce customise ho trovato stili e altro ma non i .pak

    inoltre la voce search sul sito non mi funziona :bho:

    se vuoi chiudere in bellezza con questo aiuto...te ne sarei grato!
    :Trilly-95-77:


  • User Attivo

    **leggi attentamento cio' che riporto, è semplice inglese


    ***---Smilies Packager v0.5---

    Desc :
    Smilies Packager is the most easy tool to creating smilies pack file.

    Full :
    With smilies pack, you can add many smiley icon in your phpBB forum in efficient, fast and easy way.
    Not by entering name file, description, and code one by one.
    You just upload the pack file that configured before, and automatically your smiley icon library to be added.

    But the problem is how to create pak files easily.
    This tool will helping someone to create smiley pack easily.

    With one click, listed images, descriptions, and codes will created as pack file.

    If you want, you can modify the code too.

    How to install :

    1. Create new folder in your root. ex: http://localhost/mysmiley
    2. Put pack.php and all your smiley images to that folder.
    3. Run pack.php
    4. Move all image and smilies.pak to your phpBB forum (/images/smiles).
    5. Import smilies.pak files.

    That's all.

    This only short code, please develop this.

    Give me your modification of this code, then please send it to me.
    Of course, you'll be the next author.

    Enough to talk, i don't this file bigger than the code :)***
    ****______________________________________________
    **
    ******copia questo codice sottostante in un nuovo documento e chiamalo pack.php e leggi le istruzioni nel file readme

    **<!--
    Smilies Packager version 0.5
    Author: Budi Santoso (Chow Shan Yuen) [email protected]

    Note:

    1. Create new folder in your root. ex: http://localhost/mysmiley
    2. Put pack.php and all your smiley images to that folder.
    3. Run pack.php
    4. Move all image and smilies.pak to your phpBB forum (/images/smiles).
    5. Import smilies.pak files.

    Many people asking me to develop this code, but i don't have time for that 😞
    Same as previous version, i have 15 minutes only to create/modifying this code.
    Please develop this.

    What's new :
    -pack.php with packsave.php blended.
    -Register global problem fixed.
    -Unlink warning message when no smilies.pak file has been fixed.

    Give me your modification of this code, then please send it to me.
    Of course, you'll be the next author.
    -->

    <!--
    Smilies Packager version 0.5
    Author: Budi Santoso (Chow Shan Yuen) <[email protected]>
    
    Note: 
    1. Create new folder in your root. ex: http://localhost/mysmiley
    2. Put pack.php and all your smiley images to that folder.
    3. Run pack.php
    4. Move all image and smilies.pak to your phpBB forum (/images/smiles).
    5. Import smilies.pak files.
    
    Many people asking me to develop this code, but i don't have time for that :(
    Same as previous version, i have 15 minutes only to create/modifying this code.
    Please develop this.
    
    What's new :
    -pack.php with packsave.php blended.
    -Register global problem fixed.
    -Unlink warning message when no smilies.pak file has been fixed.
    
    Give me your modification of this code, then please send it to me.
    Of course, you'll be the next author.
    -->
    
    <HTML>
    <HEAD>
    <TITLE>Smilies Packager v0.5</TITLE>
    </HEAD>
    <BODY bgcolor="#ffffff">
    <?php
    error_reporting(E_ALL ^ E_WARNING);
    if (isset($_POST['action']) && $_POST['action'] == 'submitted') {
    unlink("smilies.pak");
      $pegangan = fopen("smilies.pak", "a");
      $nf=$_POST['nf'];
      $desc=$_POST['desc'];
      $code=$_POST['code'];
      for($i=0;$i<=sizeof($nf)-1;$i++) {
    //    echo "$nf* $desc* $code* <br>" ;
        fputs($pegangan, $nf* . "=+:");
        fputs($pegangan, $desc* ."=+:");
        fputs($pegangan, $code* . "\n");
      }
      fclose($pegangan);
      print("smilies.pak created <BR>\n");
      print("<A href=\"javascript:history.back();\">Back</A>");
    
    } else {
    ?>
    
    <FORM action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST" >
    <table bgcolor="#929DB1"   border="1" align="center" cellspacing="0" bordercolordark="white" bordercolorlight="black">
    <tr>
    <th bgcolor="#8894B8"><font size="3" face="Arial">Images</font></th>
    <th bgcolor="#8894B8"><font size="3" face="Arial">Description</font></th>
    <th bgcolor="#8894B8"><font size="3" face="Arial">Code</font></th>
    <?php
        $dir = opendir(".");
        while ($entri = readdir($dir))
        {
        echo ("<tr>");
        if(($entri<>".") AND ($entri<>"..") AND (substr($entri,-4,4)<>".php") AND (substr($entri,-4,4)<>".txt"))
        { 
          print("<INPUT TYPE=HIDDEN NAME=\"nf[]\" VALUE=$entri>");
          print("<td><img src=\"$entri\" align=\"right\"></td><td><INPUT TYPE=TEXT NAME=\"desc[]\" VALUE=$entri  style=\"font-family:Verdana; font-style:normal; font-weight:bold; color:white; text-decoration:none; background-color:black; border-width:1; border-color:silver; border-style:solid;\"></td><td><INPUT TYPE=TEXT NAME=\"code[]\" VALUE=$entri style=\"font-family:Verdana; font-style:normal; font-weight:bold; color:lime; text-decoration:none; background-color:black; border-width:1; border-color:silver; border-style:solid;\"></td>");
        }
        echo ("</tr>");
        }
        closedir($dir);
    ?>
    </tr>
    </table>
    <br>
    <input type="hidden" name="action" value="submitted" />
    <div align="center"><INPUT TYPE=SUBMIT VALUE="Create"></div>
    </FORM>
    <?php
    }
    ?> 
    </BODY>
    </HTML>
    
    

  • User

    Grazie per l'info!

    ieri notte a furia di cercare ho trovato dei pak per phpbb3 che finalmente funzionavano!!
    ci sono riuscito eh eh...ho rimesso a posto tutto il casino creato in precedenza 😄

    naturalmente mi terrò stretto anche quello che mi hai scritto :vai:

    ciao!


  • User Attivo

    😉 ti servirà quella mod 😛