It is currently 17 May 2012 09:30

  • Quotes of the day
  • Sometimes i think i understand everything. Then i regain consciousness... ~ Unknown
  • Forum
  • Knowledge Base
  • Google+ button
    Can I have Google+ button on every topic?
    On 22 Apr 2012 09:43 from: DaMysterious
    Views: 21

    To create that button, here the edits for our Premod:

    Open viewtopic.php
    search
    code: Select all
          'U_FRIENDFEED'   =>  'http://friendfeed.com/share?url=' . generate_board_url() . '/viewtopic.php?t='. $topic_data['topic_id'],

    after add
    code: Select all
          'U_GOOGLE_PLUS'   =>  generate_board_url() . '/viewtopic.php?t='. $topic_data['topic_id'],


    Open styles/prosilver/template/overall_header.html
    search
    code: Select all
    </head>

    before add
    code: Select all
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js">
    //<![CDATA[
       {lang: 'en-US',
        parsetags: 'onload'}
    //]]>
    </script>


    Open styles/prosilver/template/portal/portal_viewtopic_body.html
    search
    code: Select all
                            <!-- IF postrow.S_SO_TECHNORATI --><li class="technorati-icon"><a href="{postrow.U_TECHNORATI}" target="_blank" title="{L_SHARE_ON_TECHNORATI}"><span>{L_SHARE_ON_TECHNORATI}</span></a></li><!-- ENDIF -->

    after add
    code: Select all
                       <li style="margin-top: 3px;"><g:plusone href="{postrow.U_GOOGLE_PLUS}" size="small" annotation="bubble"></g:plusone></li>                       

    search
    code: Select all
                      <!-- IF postrow.S_SO_TECHNORATI --><td align="center"><a href="{postrow.U_TECHNORATI}" target="_blank"><img src="{T_IMAGESET_LANG_PATH}/share_on_buttons/shareon_technorati.png" alt="{L_SHARE_ON_TECHNORATI}" title="{L_SHARE_ON_TECHNORATI}"/></a></td><!-- ENDIF -->               

    after add
    code: Select all
                      <td align="center"><g:plusone href="{postrow.U_GOOGLE_PLUS}" size="small" annotation="none"></g:plusone><img src="{T_THEME_PATH}/images/spacer.gif" alt="" width="0" height="0" /></td>


    Open styles/subsilver2/template/overall_header.html
    search
    code: Select all
    </head>

    before add
    code: Select all
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js">
    //<![CDATA[
       {lang: 'en-US',
        parsetags: 'onload'}
    //]]>
    </script>


    Open styles/subsilver2/template/portal/portal_viewtopic_body.html
    search
    code: Select all
                                        <!-- IF postrow.S_SO_TECHNORATI --><a href="{postrow.U_TECHNORATI}" target="_blank"><img src="{T_IMAGESET_LANG_PATH}/share_on_buttons/shareon_technorati.png" alt="{L_SHARE_ON_TECHNORATI}" title="{L_SHARE_ON_TECHNORATI}"/></a><!-- ENDIF -->

    after add
    code: Select all
                                <g:plusone href="{postrow.U_GOOGLE_PLUS}" size="small" annotation="bubble"></g:plusone>

    search
    code: Select all
              <!-- IF postrow.S_SO_TECHNORATI --><td align="center"><a href="{postrow.U_TECHNORATI}" target="_blank"><img src="{T_IMAGESET_LANG_PATH}/share_on_buttons/shareon_technorati.png" alt="{L_SHARE_ON_TECHNORATI}" title="{L_SHARE_ON_TECHNORATI}"/></a></td><!-- ENDIF -->               

    after add
    code: Select all
              <td align="center"><g:plusone href="{postrow.U_GOOGLE_PLUS}" size="small" annotation="none"></g:plusone><img src="{T_THEME_PATH}/images/spacer.gif" alt="" width="0" height="0" /></td>
    Google +1 Button
    How to add a google +1 bbcode button to your website.
    On 20 Apr 2012 09:52 from: DaMysterious
    Views: 17

    bbcode usage:
    code: Select all
    [gplusone][/gplusone]


    HTML replacement:
    code: Select all
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
    <g:plusone></g:plusone>


    Helpline:
    code: Select all
    Add Google+ button: [gplusone][/gplusone]


    Example usage:
    code: Select all
    [gplusone][/gplusone]


    Note:
    Leave tag empty!
    Configure internal BBcode Hide
    How to set BBcode Hide to my hand?
    On 14 Dec 2011 10:53 from: DaMysterious
    Views: 175

    A mod hide bbcode does come with the standard custom bbCodes in our Premod.



    Portal XL 5.0 Premod bbCode "Hide" if not installed already:

    BBCode usage
    code: Select all
    [hide]{TEXT}[/hide]

    HTML replacement
    code: Select all
    <!-- GuestHideBBCodeMODStart -->{TEXT}<!-- GuestHideBBCodeMODEnd -->

    Help line
    code: Select all
    Insert hidden text for guests: [hide]text[/hide]


    Change the language part.

    Open file /language/en/mods/portal_xl.php

    code: Select all
       // Guest Hide BBCode MOD   
       'HIDE_REG'       => 'Available only to registered users.',
       'HIDE_ON'       => '<strong>Hidden text</strong>: ON',
       'HIDE_OFF'       => '<strong>Hidden text</strong>: OFF',


    For a more neutral language set-up you can use the code from below ;).
    code: Select all
       // Guest Hide BBCode MOD   
       'HIDE_REG'       => 'Content visible only to registered forum users.',
       'HIDE_ON'       => '<strong>Content is hidden</strong>: Hi ' . get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']) . ', register to view the content!',
       'HIDE_OFF'       => '<strong>Content is visible</strong>: To ' . get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']) . '.',


    Change the css part.

    Open styles/prosilver/theme/portal_adds.css search and set to your likeness.

    code: Select all
    /* --------------------------------------------------------------
       Guest Hide BBCode MOD version 1.4.0 of 14.04.2009
       -------------------------------------------------------------- */
    /* FOR USER */
    .HideBlockA {
      background-color: #FFFFCC;
      border: 2px dotted #DEDEDE;
      padding: 5px;
      margin: 5px;
    }

    /* FOR GUEST */
    .HideBlockB {
      background-color: #F2F2F2;
      border: 2px dotted #DEDEDE;
      padding: 5px;
      margin: 5px;
    }

    /* LINE */
    hr.HideBlockLine {
      margin: 3px 0px 3px 0px;
      height: 2px;
      background-color: #DEDEDE;
      border-width: 0px;
      color: #DEDEDE; /* IE6 fix */
    }
    /* --------------------------------------------------------------
       Guest Hide BBCode MOD version 1.4.0 of 14.04.2009
       -------------------------------------------------------------- */
    I, You, We and Us Filter in posts
    How to create a funny I, You, We and Us Filter filter in premod's viewtopic.
    On 13 Nov 2011 11:29 from: DaMysterious
    Views: 716

    Replaces [I] with poster etc. name.

    Open viewtopic.php
    search
    code: Select all
       // Second parse bbcode here
       if ($row['bbcode_bitfield'])
       {
          $bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
       }


    add below
    code: Select all
    /*
    * I, You, We and Us Filter
    */
    $display_poster = get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], $row['post_username']);

    $message = str_replace('I know', $display_poster . ' knows', $message);
    $message = str_replace('can I', 'can '. $display_poster, $message);
    /*
    * I, You, We and Us Filter
    */


    More filters can be added by expanding the $message = str_replace with a new defined row.
    Resize the arcade submit pop-up
    How to resize the arcade submit pop-up
    On 04 Nov 2011 13:49 from: DaMysterious
    Views: 59

    If you have problems with a big arcade score submit pop-up follow the edits below than.

    To adjust open /template/arcade/score_body.html
    search
    code: Select all
    <!-- IF S_USE_SIMPLE_HEADER -->
    <script type="text/javascript">
    // <![CDATA[
       arcade_resize_screen(.7, .95);
    // ]]>
    </script>
    <!-- ENDIF -->

    replace with
    code: Select all
    <!-- IF S_USE_SIMPLE_HEADER -->
    <script type="text/javascript">
    // <![CDATA[
       arcade_resize_screen(.6, .76);
    // ]]>
    </script>
    <!-- ENDIF -->


    or any smaller value.

    Result is as below after editing the values.
    Configuring the internal "First Topic [pic] on Forum Index"
    How to set-up First Topic [pic] on Forum Index.
    On 24 Oct 2011 22:37 from: DaMysterious
    Views: 162

    To set the forum where attached images should visible on forum index you need to edit the configuration file for that mod.

    Open /includes/first_x_in_forum_index_config.php
    search
    code: Select all
    $affected_forum_att   = array(1,2);

    and
    code: Select all
    $affected_forum_img   = array(1,2);


    enter the forum id's that will show thumbing of attached images. The default example is set to forum number(s) 1 and 2 by default.

    Total articles [ 172 ] 
    [ KBase ]
  • Downloads
  • Arcade Blocks for Portal XL 5 0
    File: Arcade Blocks for Portal XL 5 0
    Description: Arcade Blocks for Portal XL 5.0
    Size: 10.34 Knowledge Base
    Clicks this month / Overall clicks: 0 / 157
    Category: [ Mods ]
    phpBB3 Arcade Gamepack 50x 15
    File: phpBB3 Arcade Gamepack 50x 15
    Description: phpBB3 Arcade Gamepack 50 collected games pack-15
    Size: 19,541.95 MB
    Clicks this month / Overall clicks: 0 / 51
    Category: [ Games ]
    TS Photo Gallery v0 2 1 with HighSlide
    File: TS Photo Gallery v0 2 1 with HighSlide
    Description: This Mod is an adaptation of an existing mod by DanieLs0xff (Daniel Anechitoaie) http://www.safereaction.ro. While the author information has been edited to avoid confusion, I would like it to be known that a substantial amount of the original content remains intact with the copyright retained by the original author DanieLs0xff.

    Light weight phpBB3 Gallery which is slightly rewritten to work with HighSlide and Portal XL 5.0.

    Size: 593.44 Knowledge Base
    Clicks this month / Overall clicks: 2 / 367
    Category: [ Mods ]
    Portal XL 5 0 ~ Plain (Basic) 0 2 for phpBB 3 0 8
    File: Portal XL 5 0 ~ Plain (Basic) 0 2 for phpBB 3 0 8
    Description: We are very pleased to announce the availability of the Portal XL 5.0 ~ Plain (Basic) 0.2 for phpBB 3.0.8.

    This version is outdated and not supported any longer!

    Size: 6,386.81 MB
    Clicks this month / Overall clicks: 6 / 139
    Category: [ Versions ]
    phpBB 3 0 4
    File: phpBB 3 0 4
    Description: [ Full Package ]
    Contains entire phpBB 3.0.4 source and english language files.
    Best suited for new installations.

    Size: 2,242.81 MB
    Clicks this month / Overall clicks: 1 / 6
    Category: [ Versions ]
    Portal XL 5 0 additional RSS syndication
    File: Portal XL 5 0 additional RSS syndication
    Description: Addon-Requirements: Portal XL 5.0 and phpbb Gallery by nickvergessen v1.0.2 and/or Download Mod for phpBB 3 by OXPUS and/or Mini Knowledge Base by tas2580 must be installed to have the additional RSS syndication for this mods available.

    Read the enclosed portal_xl50_rss_blocks.txt in directory \root\ how to implement the additional RSS syndication into your Portal XL 5.0 Plain.

    Size: 38.25 Knowledge Base
    Clicks this month / Overall clicks: 0 / 27
    Category: [ Mods ]
    Portal XL 5 0 Block Slogin
    File: Portal XL 5 0 Block Slogin
    Description: Portal XL 5.0 Block Slogin creates a extra login option for your portal.

    Mod developed and supported by Ghosty

    Can be used for both of our Portal versions.

    Size: 12.56 Knowledge Base
    Clicks this month / Overall clicks: 0 / 10
    Category: [ Mods ]
    phpBB3 Gallery 1 0 4 Blocks for Portal XL 5 0
    File: phpBB3 Gallery 1 0 4 Blocks for Portal XL 5 0
    Description: phpBB3 Gallery Blocks for Portal XL 5.0

    Add-on-Requirements: Portal XL 5.0 and phpbb Gallery by nickvergessen 1.0.4 need to be installed first to use this blocks.

    Size: 32.26 Knowledge Base
    Clicks this month / Overall clicks: 0 / 35
    Category: [ Mods ]
    CPG1 5 x Gallery Block ImageFlow for Portal XL 5 0...
    File: CPG1 5 x Gallery Block ImageFlow for Portal XL 5 0...
    Description: With this archive it is possible to have a block supporting ImageFlow available for your Portal XL 5.0 (might work on other phpBB3 portal's too).

    Note: All cpg_* block files in styles directory \template\portal\block\ must be copied through the corresponding directory of all styles you have installed to show up the blocks properly when called from block management. This block gets the picture from a created normal_* file. If no normal_* file is created while uploaded, due to set-up settings of a small size of the picture, no picture will be displayed. So you can get a gap in the carousel.

    Size: 57.78 Knowledge Base
    Clicks this month / Overall clicks: 5 / 53
    Category: [ Coppermine Photo Gallery ]

Who is online

In total there are 6 users online :: 0 registered, 0 hidden, 0 bots and 6 guests (based on users active over the past 5 minutes)
Most users ever online was 208 on 18 Oct 2011 01:10

Registered users: No registered users
Bots: 0 bots
Legend: Administrators, Bots, Forum Spammers, Language Support, Mondial Support, Registered users, Unwanted Users



 Cumulus Tags

Anything in here will be replaced on browsers that support the canvas element

 Affiliates
La prima comunità europea dedicata a Portal XL in italiano
La prima comunità europea dedicata a Portal XL in italiano
MySQLDumper - Back it up the easy way
MySQLDumper - Back it up the easy way
MySql Database Engine
MySql Database Engine
Voltrix Designs
Voltrix Designs