Welcome to Tiberium Technology® Forums
Welcome to Tiberium Technology® Forums, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of Tiberium Technology® Forums by signing in or creating an account.
- Start new topics and reply to others
- Subscribe to topics and forums to get email updates
- Get your own profile page and make new friends
- Send personal messages to other members.
-
Posts
5184 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
C&C Tutorials
GoW Guides
Articles
Bug Tracker
(NG) Global Ads Release Notes
(NG) Rotating Banners Release Notes
(NG) Xbox/PSN Tags Release Notes
(NG) Members Donate Button Release Notes
(NG) BuyNow BBCode Release Notes
Events
Blogs
Downloads
Gallery
Store
Games
Everything posted by NuclearGeneral
-
Here is a little tutorial on how to change the number of PMs that show up when you click on "Inbox (*)" that show in the popup. Step 1: Open up FTP and go to Forums Dir -> admin -> applications_addon -> other -> bottombar -> modules_public -> messages.php Inside that file, Find: $messages = $this->messengerFunctions->getPersonalTopicsList( $this->memberData['member_id'], $this->messengerFunctions->_currentFolderID, array( 'sort' => $sort, 'offsetStart' => 0, 'offsetEnd' => 5 ) ); And change the number "5" at the end of the code to any number you like. And there you have it, more PMs viewable! Good luck with it! :) Source: Download: Bottom Bar (Beta 1)
-
When we developed IP.Board 3, one of the main goals was to centralize searching and simplify it to provide results cleanly and concisely. Since then we have had a lot of emphatic feedback on how to develop the search further and to improve the interface. We've have taken all that feedback on board and completely overhauled search making it... View the full article at IPS
-
Heres a little tutorial on how to get it running for Guests on your board. Step 1: Open up FTP and go to Forums Dir -> admin -> applications_addon -> other -> bottombar -> sources -> hooks.php Inside that file, Find: if ( ! $this->member->getProperty('member_id') ) { return ''; } Replace with: /*if ( ! $this->member->getProperty('member_id') ) { return ''; }*/ Step 2: Go to ACP -> Look & Feel -> Select Skin -> skin_bottombar -> showBottomBar Replace whole template bit with this (If you don't know what has been changed in my edits, just use the "Compare Differences Tool): (This is based off the Original Template Bit Code) <if test="$this->memberData['member_id']"> <!-- BEGIN MEMBER BAR --> <php> $version = IPSLib::fetchVersionNumber(); $this->registry->class_localization->loadLanguageFile( array( 'public_lang' ), 'bottombar' ); </php> <link rel="stylesheet" type="text/css" href="{$this->settings['public_dir']}style_css/{$this->registry->getClass('output')->skin['_csscacheid']}/bottombar.css" /> <div id="footpanel"> <ul id="mainpanel"> <li><a href="{parse url="" base="public"}" class="home">{$this->lang->words['bb_tab_home']} <small>{$this->lang->words['bb_tab_gohome']}</small></a></li> <li><a href="{parse url="showuser={$this->memberData['member_id']}" base="public" seotitle="{$this->memberData['members_seo_name']}" template="showuser"}" class="profile">{$this->lang->words['bb_tab_vp']} <small>{$this->lang->words['bb_tab_vp']}</small></a></li> <li><a href="{parse url="app=core&module=usercp" base="public"}" class="editprofile">{$this->lang->words['bb_tab_ep']} <small>{$this->lang->words['bb_tab_ep']}</small></a></li> <if test="$this->memberData['has_blog'] AND IPSLib::appIsInstalled( 'blog' )"> <li><a href="{parse url="app=blog&module=display§ion=blog&mid={$this->memberData['member_id']}" base="public"}" class="blog">{$this->lang->words['bb_tab_yb']} <small>{$this->lang->words['bb_tab_yb']}</small></a></li> </if> <if test="$this->memberData['has_gallery'] AND IPSLib::appIsInstalled( 'gallery' )"> <li><a href="{parse url="app=gallery&module=user§ion=user&user={$this->memberData['member_id']}" base="public"}" class="gallery">{$this->lang->words['bb_tab_yg']} <small>{$this->lang->words['bb_tab_yg']}</small></a></li> </if> <if test="$version['long'] >= 31000"> <li id="alertpanel"> <a href="#" class="alerts" id='alert-link' title='Alerts'>{$this->lang->words['bb_tab_alerts']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>Notifications</h3> <ul> <li class="view"><a href="#">View All</a></li> <li> <a href="#" class="delete">X</a> <p><!--Content--></p> </li> <li> <a href="#" class="delete">X</a> <p><!--Content--></p> </li> </ul> </div> </li> </if> <li id="favoritepanel"> <a href="#" class="favorites" id='favorites-link' title='{$this->lang->words['bb_tab_favs']}'>{$this->lang->words['bb_tab_favs']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_bookmarks']}</h3> <ul id='favorites-bb'> <li class="view"><a href="#" id='add-favorite-link'>{parse replacement="approve"} {$this->lang->words['bb_addpage']}</a></li> </ul> </div> </li> <li id="friendpanel"> <a href="#" class="friends" id='friends-link' title='{$this->lang->words['bb_tab_friends']}'>{$this->lang->words['bb_tab_friends']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_tab_friends']}</h3> <if test="is_array($this->memberData['_cache']['friends']) AND count($this->memberData['_cache']['friends'])"> <php> $friends = array(); $mIds = array_keys( $this->memberData['_cache']['friends'] ); $friends = IPSMember::load( $mIds ); $onlineF = array(); $offlineF = array(); if( is_array($friends) AND count($friends) ) { foreach( $friends as $k => $v ) { $member = IPSMember::buildDisplayData( $v ); if( $member['_online'] ) { $onlineF[] = $member; } else { $offlineF[] = $member; } } } $this->friends = array_merge( $onlineF, $offlineF ); </php> <ul> <li class='view'><a href='{parse url="app=members&module=profile§ion=friends&do=list" base="public"}'>{$this->lang->words['bb_friendlist']}</a></li> <foreach loop="$this->friends as $member"> <li class='friend'> <div class="online-indicator"> <img src='{$this->settings['img_url']}/bottombar/<if test="$member['_online']">online.png<else />offline.png</if>' alt='<if test="$member['_online']">online<else />offline</if>' title='<if test="$member['_online']">{$this->lang->words['bb_useronline']}<else />{$this->lang->words['bb_useroffline']}</if>' /> </div> <a href="{parse url="showuser={$member['member_id']}" base="public" seotitle="{$member['members_seo_name']}" template="showuser"}"><img src='{$member['pp_mini_photo']}' alt="{$member['members_display_name']}{$this->lang->words['users_photo']}" width='{$member['pp_mini_width']}' height='{$member['pp_mini_height']}' class='photo' /> {$member['members_display_name']}</a> </li> </foreach> </ul> <else /> <p class='center'><a href='{parse url="app=members" base="public"}'><em>{$this->lang->words['bb_ff']}</em></a></p> </if> </div> </li> <li id="pmpanel"> <a href="#" class="pms" id='pm-link' title='{$this->memberData['msg_count_new']}{$this->lang->words['pc_suffix']}'>{$this->lang->words['bb_tab_inbox']} (<strong>{$this->memberData['msg_count_new']} {$this->lang->words['bb_pc_new']}</strong>)</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_tab_pct']}</h3> <ul id='private-message-list-bb'> <li class="view"><a href="{parse url="app=members&module=messaging" base="public"}">{$this->lang->words['bb_viewall']}</a></li> </ul> </div> </li> </ul> </div> <script type='text/javascript' src='{$this->settings['public_dir']}js/bottombar.js'></script> <script type='text/javascript'> var bbzfavs = "{$this->lang->words['bb_zfavs']}"; </script> <!-- END MEMBER BAR --> <else /> <!-- BEGIN GUEST BAR --> <php> $version = IPSLib::fetchVersionNumber(); $this->registry->class_localization->loadLanguageFile( array( 'public_lang' ), 'bottombar' ); </php> <link rel="stylesheet" type="text/css" href="{$this->settings['public_dir']}style_css/{$this->registry->getClass('output')->skin['_csscacheid']}/bottombar.css" /> <div id="footpanel"> <ul id="mainpanel"> <li><a href="{parse url="" base="public"}" class="home">{$this->lang->words['bb_tab_home']} <small>{$this->lang->words['bb_tab_gohome']}</small></a></li> <if test="$this->memberData['member_id']"> <li><a href="{parse url="showuser={$this->memberData['member_id']}" base="public" seotitle="{$this->memberData['members_seo_name']}" template="showuser"}" class="profile">{$this->lang->words['bb_tab_vp']} <small>{$this->lang->words['bb_tab_vp']}</small></a></li> <li><a href="{parse url="app=core&module=usercp" base="public"}" class="editprofile">{$this->lang->words['bb_tab_ep']} <small>{$this->lang->words['bb_tab_ep']}</small></a></li> </if> <if test="$this->memberData['has_blog'] AND IPSLib::appIsInstalled( 'blog' )"> <li><a href="{parse url="app=blog&module=display§ion=blog&mid={$this->memberData['member_id']}" base="public"}" class="blog">{$this->lang->words['bb_tab_yb']} <small>{$this->lang->words['bb_tab_yb']}</small></a></li> </if> <if test="$this->memberData['has_gallery'] AND IPSLib::appIsInstalled( 'gallery' )"> <li><a href="{parse url="app=gallery&module=user§ion=user&user={$this->memberData['member_id']}" base="public"}" class="gallery">{$this->lang->words['bb_tab_yg']} <small>{$this->lang->words['bb_tab_yg']}</small></a></li> </if> <if test="$this->memberData['member_id']"> <if test="$version['long'] >= 31000"> <li id="alertpanel"> <a href="#" class="alerts" id='alert-link' title='Alerts'>{$this->lang->words['bb_tab_alerts']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>Notifications</h3> <ul> <li class="view"><a href="#">View All</a></li> <li> <a href="#" class="delete">X</a> <p><!--Content--></p> </li> <li> <a href="#" class="delete">X</a> <p><!--Content--></p> </li> </ul> </div> </li> </if> <li id="favoritepanel"> <a href="#" class="favorites" id='favorites-link' title='{$this->lang->words['bb_tab_favs']}'>{$this->lang->words['bb_tab_favs']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_bookmarks']}</h3> <ul id='favorites-bb'> <li class="view"><a href="#" id='add-favorite-link'>{parse replacement="approve"} {$this->lang->words['bb_addpage']}</a></li> </ul> </div> </li> <li id="friendpanel"> <a href="#" class="friends" id='friends-link' title='{$this->lang->words['bb_tab_friends']}'>{$this->lang->words['bb_tab_friends']}</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_tab_friends']}</h3> <if test="is_array($this->memberData['_cache']['friends']) AND count($this->memberData['_cache']['friends'])"> <php> $friends = array(); $mIds = array_keys( $this->memberData['_cache']['friends'] ); $friends = IPSMember::load( $mIds ); $onlineF = array(); $offlineF = array(); if( is_array($friends) AND count($friends) ) { foreach( $friends as $k => $v ) { $member = IPSMember::buildDisplayData( $v ); if( $member['_online'] ) { $onlineF[] = $member; } else { $offlineF[] = $member; } } } $this->friends = array_merge( $onlineF, $offlineF ); </php> <ul> <li class='view'><a href='{parse url="app=members&module=profile§ion=friends&do=list" base="public"}'>{$this->lang->words['bb_friendlist']}</a></li> <foreach loop="$this->friends as $member"> <li class='friend'> <div class="online-indicator"> <img src='{$this->settings['img_url']}/bottombar/<if test="$member['_online']">online.png<else />offline.png</if>' alt='<if test="$member['_online']">online<else />offline</if>' title='<if test="$member['_online']">{$this->lang->words['bb_useronline']}<else />{$this->lang->words['bb_useroffline']}</if>' /> </div> <a href="{parse url="showuser={$member['member_id']}" base="public" seotitle="{$member['members_seo_name']}" template="showuser"}"><img src='{$member['pp_mini_photo']}' alt="{$member['members_display_name']}{$this->lang->words['users_photo']}" width='{$member['pp_mini_width']}' height='{$member['pp_mini_height']}' class='photo' /> {$member['members_display_name']}</a> </li> </foreach> </ul> <else /> <p class='center'><a href='{parse url="app=members" base="public"}'><em>{$this->lang->words['bb_ff']}</em></a></p> </if> </div> </li> <li id="pmpanel"> <a href="#" class="pms" id='pm-link' title='{$this->memberData['msg_count_new']}{$this->lang->words['pc_suffix']}'>{$this->lang->words['bb_tab_inbox']} (<strong>{$this->memberData['msg_count_new']} {$this->lang->words['bb_pc_new']}</strong>)</a> <div class="subpanel" style='display:none;'> <h3><span> – </span>{$this->lang->words['bb_tab_pct']}</h3> <ul id='private-message-list-bb'> <li class="view"><a href="{parse url="app=members&module=messaging" base="public"}">{$this->lang->words['bb_viewall']}</a></li> </ul> </div> </li> </if> </ul> </div> <script type='text/javascript' src='{$this->settings['public_dir']}js/bottombar.js'></script> <script type='text/javascript'> var bbzfavs = "{$this->lang->words['bb_zfavs']}"; </script> <!-- END GUEST BAR --> </if> And there you have it, a guest bar as well! Good luck with it! :) I will update this blog entry later on, on how to add extra links. It's getting a bit late at the moment. Please check back later! :) Source: Download: Bottom Bar (Beta 1)
-
We are pleased to announce the release of (NG30) IP.Chat Message v1.0.0 This hook displays a mesage above the chat application. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_83747.png http://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0Turn System On/Off.Group Permissions Available. Permissions Honor Secondary Groups.Message Types:General Box.Information Box.Error Message Box. [*]Define Title Of Message.[*]Option To Disable Image For Title.[*]Define Image For General Box Message Only.[*]Replacement Tags Available: #img_dir# = Users Selected Skin Matches ACP Defined Image.#public_dir# = Your Public Directory URL.#board_url# = Your Board URL.#board_name# = Your Board Name. [*]HTML Disabled.[*]BBCode Enabled.[*]Smilies Enabled. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database. View the full article IPS Resources
-
http://forums.tiberiumstudios.net/index.php?app=downloads&module=display§ion=screenshot&id=92 File Name: (NG30) IP.Chat Message v1.0.0 File Submitter: NuclearGeneral File Submitted: Mar 10, 2010 File Category: Invision Power Board 3 Resource Type: IPB3 Hook/Plugin Version: 1.0.0 Demo URL: 10000 We are pleased to announce the release of (NG30) IP.Chat Message v1.0.0 This hook displays a mesage above the chat application. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_83747.pnghttp://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0 Turn System On/Off. Group Permissions Available. Permissions Honor Secondary Groups. Message Types: General Box. Information Box. Error Message Box. [*]Define Title Of Message. [*]Option To Disable Image For Title. [*]Define Image For General Box Message Only. [*]Replacement Tags Available: #img_dir# = Users Selected Skin Matches ACP Defined Image. #public_dir# = Your Public Directory URL. #board_url# = Your Board URL. #board_name# = Your Board Name. [*]HTML Disabled. [*]BBCode Enabled. [*]Smilies Enabled. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database. Click here to download this file
-
14 downloads
We are pleased to announce the release of (NG30) IP.Chat Message v1.0.0 This hook displays a mesage above the chat application. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_83747.pnghttp://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0 Turn System On/Off. Group Permissions Available. Permissions Honor Secondary Groups. Message Types: General Box. Information Box. Error Message Box. [*]Define Title Of Message. [*]Option To Disable Image For Title. [*]Define Image For General Box Message Only. [*]Replacement Tags Available: #img_dir# = Users Selected Skin Matches ACP Defined Image. #public_dir# = Your Public Directory URL. #board_url# = Your Board URL. #board_name# = Your Board Name. [*]HTML Disabled. [*]BBCode Enabled. [*]Smilies Enabled. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database.Free -
(NG30) IP.Chat Message v1.0.0 Released!
[R]NuclearGeneral posted a blog entry in NuclearGeneral's Blog
We are pleased to announce the release of (NG30) IP.Chat Message v1.0.0 This hook displays a mesage above the chat application. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_83747.pnghttp://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0 Turn System On/Off. Group Permissions Available. Permissions Honor Secondary Groups. Message Types: General Box. Information Box. Error Message Box. [*]Define Title Of Message. [*]Option To Disable Image For Title. [*]Define Image For General Box Message Only. [*]Replacement Tags Available: #img_dir# = Users Selected Skin Matches ACP Defined Image. #public_dir# = Your Public Directory URL. #board_url# = Your Board URL. #board_name# = Your Board Name. [*]HTML Disabled. [*]BBCode Enabled. [*]Smilies Enabled. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database. -
http://forums.tiberiumstudios.net/screenshots/monthly_10_2012/thumb-190649ced32b310e809aae787c60e613-screenshot1.png File Name: (NG33) Registration Notes File Submitter: NuclearGeneral File Submitted: Mar 09, 2010 File Category: Invision Power Board 3 Resource Type: IPB3 Hook/Plugin Version: 2.0.0 Demo URL: http://www.tiberiumstudios.org/community/ We are pleased to announce the release of (NG30) Registration Notes v2.0.0 This hook will restore the IP.Board 2.3.6 default notes depending on registration method defined in the ACP. For Support, Please Visit Tiberium Studios. Release Notes First Initial Release Of Modification v1.0.0 There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. [*]Second Initial Release Of Modification v2.0.0 Upgraded mod to work with IP.Board 3.3.4. Click here to download this file
-
Version 2.0.0
7 downloads
We are pleased to announce the release of (NG30) Registration Notes v2.0.0 This hook will restore the IP.Board 2.3.6 default notes depending on registration method defined in the ACP. For Support, Please Visit Tiberium Studios. Release Notes First Initial Release Of Modification v1.0.0 There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. [*]Second Initial Release Of Modification v2.0.0 Upgraded mod to work with IP.Board 3.3.4.Free -
We are pleased to announce the release of (NG30) Registration Notes v1.0.0 This hook will restore the IP.Board 2.3.6 default notes depening on registration method defined in the ACP. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_853.png http://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database. View the full article IPS Resources
-
(NG30) Registration Notes v1.0.0 Released!
[R]NuclearGeneral posted a blog entry in NuclearGeneral's Blog
We are pleased to announce the release of (NG30) Registration Notes v1.0.0 This hook will restore the IP.Board 2.3.6 default notes depening on registration method defined in the ACP. For Support, Please Visit Tiberium Studios. http://forums.tiberiumstudios.net/uploads/1260933055/tn_gallery_1_6_853.pnghttp://forums.tiberiumstudios.net/public/style_images/master/add.pngClick To Enlarge Release Notes First Initial Release Of Modification v1.0.0 There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. Known Issues None As Of First Release. To Download, Please Visit The Downloads Database. -
This application will add a bar across the bottom of your forum that will give your members quick access to specific areas of IP.Board. The application is only available for logged in users (not for guests). Along the left side of the bar you will have links to the forum index, editing your profile, viewing your profile, your blog (if installed) and your gallery (if installed). Along the right hand side are pop-out menus that provide enhanced access to a couple areas of your board. Messenger: a pop-out menu gives your users quick access to their messenger inbox, listing all unread messages and a link to the inbox.Friends: a pop-out menu displays all of your friends with an online/offline indicator, allowing your users to quickly browse their friends list and see who is presently online.Favorites: a new feature included with Bottom Bar allows your users to add any page they are viewing to their "favorites". The pop-out displays all of your current favorites, allowing you to quickly return to a page you've added (or remove it from your favorites list). Additionally, with IP.Board 3.1, I plan to update bottom bar to allow you quick access to your unread notifications (tying into the new IPB 3.1 notification system). Stay tuned for updates as IPB 3.1 reaches alpha/beta stages. Please report any bugs in the feedback topic for Bottom Bar. View the full article IPS Resources
-
Shows a link near the top of the page for the IP.Chat page when there are active members in the Chat. This hook works independently of the built-in hook for checking if there are active members in the chat, and shows at the top of the page so that you can quickly see on every page load if there are people in the chat room. The link disappears when no one is in the chat. View the full article IPS Resources
-
This mod will show the reason for the member being banned from the forum. Copyright Note This mod is an upgrade of (V88)Ban Reason View mod, by Vince (Vadim), from Invision Modding. This upgrade was authorized by Vince. View the full article IPS Resources
-
IN FILE ZIP: 1 COMPLETE PACK (sometime there are Gateway error during importing) 5 SINGLE PACK FOR:FORUM,SYSTEM,MEMBERS,PORTAL,CALENDAR ..... WARNING: If you import these packages will overwrite all the language packs in the present board (hence also those of any foreign languages). It is recommended to export them, to possibly import it back later coming soon: GALLERY, BLOG, CONTENT, DOWNLOAD FREE DOWNLOAD HERE (see the instruction for the single package) View the full article IPS Resources
-
The package contains 3 sets of icons in different colors: Yellow-Blue, Green-Pink, Red-Cyan Each package contains 8 plates for their groups: Administrator, Super Moderator, Moderator, Supporter, VIP, Advanced Member, Member, Banned Of course everyone can choose icons from a set or the other in order to have groups with different colors. The package is also present PDS file to change the icons. In case of impossibility for bringing about changes you can request a custom action (completely customizable) and as color, size, written and icons. The download is enabled only to those who subscribe to the Graphic Club on http://www.invisionita.it(5euro for all graphic element in the Graphic Club section) ITALIAN SUPPORT TOPIC http://www.invisionita.it/forum/imgs/prev_icons_refl_PG.jpg http://www.invisionita.it/forum/imgs/prev_icons_refl_RC.jpg http://www.invisionita.it/forum/imgs/prev_icons_refl_YB.jpg View the full article IPS Resources
-
Overlay (cherry) // www.ipbforumskins.com The overlay design is a clean, modern skin utilizing numerous hover effects (blue version shown in demo) on the primary navigation, secondary navigation, user bar and forum rows. The design has modified layouts for the board index, forum index, topic page and profile page. This skin is compatible with 3.x.x, and the most recent versions of the Gallery, Blogs and Downloads manager. Click here to view more information or purchase the skin. View the full article IPS Resources
-
SUPPORTS 3x ONLY DOWNLOAD MANAGER 2.10 VERSION (NEW UPGRADE) GALLERY NEW VERSION IPSLINK SYSTEM NEW VERSION DOESNOT SUPPORT BLOG Fully YOU WILL NEED A ZIP PROGRAM TO UNZIP ALL 3.0 SKIN THEMES Includes an Xtra Folder with blank logo banner and xtra buttons and icons This is being offered as a Premium Club Skin Theme and can be downloaded along with 40 other skin themes in the Premium Club Download section for as little as $7.50. I also offer over 40 free designs for nothing, nada dollar, just register, activate membership and over 40 designs are available and I support all designs regardless of Free or Premium. View the full article IPS Resources
-
It has come to our attention that there is a possible XSS exploit present in both IP.Board 2.3.6 and 3.0.x. This vulnerability allows the attacker to insert CSS or Javascript into certain BBCodes that is executed when a user displays the page. Resolution Please download the relevant zip for your IP.Board. Expand the zip file and upload the file over the copy on your server. No other action is required. IP.Board 3.0.5 http://community.invisionpower.com/public/style_extra/mime_types/zip.gif 305xss_march10.zip (13.29K) : 78 IP.Board 2.3.6 http://community.invisionpower.com/public/style_extra/mime_types/zip.gif 236xss_march10.zip (15.61K) : 30 The main download zips have been updated. If you have downloaded either 2.3.6 or 3.0.5 since the time of this announcement, then you do not need to patch your installation. View the full article at IPS
-
I know the old version would be easier for everyone, but I am not taking any chances with my products getting slapped on every warez site out there. I would suggest asking your host if they have the ionCube Loaders installed or if they would install them for you. I'm sorry, but the older non-encoded releases aren't for download anymore.
-
** Over 1800 forums installed!!** ** BlackBerry Beta: Download here. March 3rd, 2010** ** Only One MOD installation required for multiple device support!! ** ** Android released at Android Market!! - Dec 12, 2009** ** iPhone Lite version released - Dec 1, 2009. ** iPhone Mobile Upload - Now approved by Apple!! ** Tapatalk is an iPhone/Android/BlackBerry/Nokia client that can natively connect to your IPBoard system (with this MOD installed on your IPBoard system). iPhone: This app has been released on Apple app store since June 25th, 2009 Download from app store - iPhone app cost $2.99 from iTunes app store - app is a iPhone native app with consistent iPhone UI and multi-touch features - private message and topic subscriptions is natively supported. - quote reply is supported - a dedicated tab to list currently online users - a dedicated tab for forum statistic such as number of members and topics, etc. - a plugin is needed to be installed at the server side that talks to your vBulletin system - the plugin reuses vBulletin security policy (i.e. it doesn't read the database directly) - the architecture minimize the bandwidth between iphone and your server so to save user's data-plan - the plugin sits in its own directory and does not overwrite or change any of your forum's file and configuration - your forum content does not route thru our server, it is a direction connection between your forum and your member Nokia S60 5th Edition: - This Nokia app will be available to download at http://www.tapatalk....kia/tapatalk.dm - This app supports all S60 5th Edition touch screen device including N97 N97mini 5800 5530, etc. - Currently in beta, still in a rough mode but very usable, although the color and style may not up to your standard. We are working on it. Android: - released at Android Market. search for "tapatalk" and you will find it. - version: 1.1 (no charge) Tapatalk for iPhone: Showing New and Unread Posts: http://www.quoord.com/tmp/iphone/IMG_0036.png Full Thread Viewing and Pagination Support: http://www.quoord.com/tmp/iphone/IMG_0037.png See Who's Online: http://www.quoord.com/tmp/iphone/IMG_0038.png Reply to Post and Image Upload: http://www.quoord.com/tmp/iphone/IMG_0041.png Some of the large forums activated Tapatalk support http://www.quoord.com/tmp/iphone/IMG_0042.png Tapatalk for Android Total Android Look and Feel http://www.quoord.com/tmp/android/main.png Same feature set as iPhone: http://www.quoord.com/tmp/android/threadmenu.png Quickly Reply to a conversation: http://www.quoord.com/tmp/android/thread_bottom_menu.png Latest and Unread Posts indicator and multi-tabs support: http://www.quoord.com/tmp/android/latest-v.png Full screen image support - support landscape mode also http://www.quoord.com/tmp/android/imageview.png Taptalk for BlackBerry - Currently available as OTA install (is in beta and is free) at http://www.tapatalk.com/bb - Support all touch and non-touch device with OS 4.5 or higher - More information can be found here **Installation Instruction ** - Full instruction can be found by logging to http://www.tapatalk.com/entry - it allows you to add your forum URL to the list so mobile user can find your forum. The website also provides analytics information so you can track how many users access your forum via this app. View the full article IPS Resources
-
Sharp Blade skin Full HD Images Works with blog, shoutbox, chat, IDM and gallery as well. logo.psd, font files included. To purchase the skin please contact the skin author: Aspire Regards Aspire View the full article IPS Resources
-
This mod will allow new users to select his own group upon registration. Admins can choose which groups will be available in register form. Notes: 1 file edit neededTested on IP.Board 3.0.5GUESTS, VALIDATING and BANNED groups won't appear in register form View the full article IPS Resources
-
http://www.skinbox.net/images/slider_surface_en.jpg Save up some space with this dual-column category skin. Your categories can now be put as "blocks" and displayed in a nice two columns way. This table-less sidebar fluid skin is perfect for any kind of community. You do not have any source file edit to do, everything is skin-specific. Install and enjoy! The skin is also made so you can change the colors very easily. Click here to view more screenshots of Surface Click here to purchase it! ...or become a Skinbox Club member and get all skins View the full article IPS Resources