X-Forum 5.84 - Multifielded Forum with Extras, Multisite & Multilingual

Resized Image
X-Forum 5.84
Multifielded Forum with Extras, Multisite & Multilingual
Community Release by Chronolabs Co-op

X-Forum is a completely extensible forum module for XOOPS, this is the complete stable release of the first version of 5 series, it includes multiple fields specifiable per post on individualized forums much like profile module.

It has the ability to aggregate categories and forums to languages as well as domains with multisite 1.40 or X-Language. This means you can have forms and forum which only display on particular domains or under certain languages.

Designed for XOOPS 2.5 and later version, it was written in response to problems with earlier forum titles, that had in some cases installation issues. With a broad range of options. X-Forum is a great solution to your forum requirements, complete with RSS Features and image management. It will utilise a wide range of options and allow your community to discuss issues, raise topic and solution. Complete with .htaccess example and SEO with a medium URL.

With X-Forum you can have all the convenience of the modular newbb path without the result. Based on CBB with a sound environment that even your grandma can use, I know mine does this is solid stuff coming directly to you under GNU Licenses.

**Fixed** Complete with Easy Path SEO Guide and help in the preference, you can even with some simple SQL Injections transfer your old CBB 2.x or 3.x over to X-Forum with ease. NOTICE!!! The .htaccess has changed since version 5.78!! - this is included in the /docs path of the archive.

* You will have to get the Framework TCPDF from the XOOPS SVN.

New Features:
  • d3 Forum Migration Extra
  • NewBB Forum Migration Tool
  • CBB Forum Migration Tool
  • XOOPS 2.5 Admin GUi
  • Post Approval System in Admin


Refactory Done:
  • Warnings and Notices
  • No More Art Object - XOOPS 3.0 Compatible *
  • TCPDF - Used for PDF Generation
  • Multisite Support
  • X-Language/Multilingual Mode


Bugs Fixed:
  • Globalisation
  • Multifielding
  • admin_header.php - wflinks renamed to xforum
  • Search
  • ***SEO Path Information
  • Extras Class not Found in Objects for Multifielding
  • Post missing from populate URL
  • No View for Admin of Pending Posts
  • No View for Admin of Deleted Posts
  • PageNav postioning and Post number hightlight
  • .htaccess Bugs (Jumpbox, Main Options, Quick Reply + All Others)
  • WSDO for view forum ctrl+bug
  • WSOD for Block Last topic
  • Extra Fields Missing From Compact Display
  • Old Social Network Adds Removed
  • PDF Output now available


Download Now: xoops2.5_xforum_5.84.zip (765 Kb)
Sourceforge: xoops2.5_xforum_5.84.zip (765 Kb)
Demo Now: http://xoops.demo.chronolabs.coop
Forum Thread for Bugs & Comments:https://xoops.org/modules/newbb/viewtopic.php?topic_id=74854&post_id=344597#forumpost344597

XOOPS 2.6
Beta for XOOPS 2.6 of X-Forum

Download Now: xoops2.6_xforum_5.90.zip (747 Kb)
Sourceforge: xoops2.6_xforum_5.90.zip (747 Kb)
Demo Now: http://xoops.demo.chronolabs.coop
Read more... | 3 comments

Social Media quick tutorial for XOOPS

First of all, you are more than welcome to use any of this, most of what I've done was pieced together from my own bug/debug process. I use everything here on my news website athttp://kbkw.com I think I included everything, but please feel free to contact me if you have questions. This could all be seen as continuation of this article athttps://xoops.org/modules/news/article.php?storyid=6044 META I add the following to my Meta tags (In the template)
<meta property="og:type" content="article"/>
  <
meta property="og:locale" content="en_US" />
  <
meta property="og:image" content="<{$xoops_url}>/YOUR LOGO.png" />
  <
meta property="og:site_name" content="<{$xoops_sitename}>"/>
  <
meta property="fb:admins" content="FB ADMINS FOR THE SITE"/>
I add some If/Then statements that will populate other facebook values IF we're viewing a story. (IF the story.hits variable is empty then we're not viewing an article)
<{if $story.hits !=''}>
   <
meta name="description" content="<{$story.news_title|strip_tags:false}> : <{$story.text|strip_tags:false|truncate:120:"..."}>" />
   <
meta property="og:description" content="<{$story.text|strip_tags:false|truncate:120:"..."}>" />
   <
meta property="og:title" content="<{$story.news_title|strip_tags:false|truncate:120:"..."}>"/>
   <
meta property="og:url" content="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" />
Same as above, but for the debaser module
<{elseif $addinfo != ''}>
   <
meta name="description" content="<{$addinfo|strip_tags:true|truncate:220:"..."}>" />
   <
meta property="og:description" content="<{$addinfo|strip_tags:true|truncate:220:"..."}>" />
   <
meta property="og:title" content="<{$title}>"/>
   <
meta property="og:url" content="<{$xoops_url}>/modules/debaser/singlefile.php?id=<{$id}>" />
This uses news 1.65's "Select a picture to attach to the news"
<{if $articlePicture != ''}>
       <
meta property="og:image" content="<{$articlePicture}>" />
       <{/if}>
then from here down we populate variables for the "rest of the pages," and close out our IF statement
<{else}>
  <
meta name="description" content="<{$xoops_pagetitle}>, <{$xoops_meta_description}>" />
  <
meta property="og:title" content="<{$xoops_pagetitle}>"/>
 <{/if}>
lastly I add keywords because facebook pulls this meta before it's own for some reason..
<meta name="keywords" content="<{$xoops_pagetitle}>, <{$xoops_meta_keywords}>" />
TEMPLATES Now in the news_item.html template I add a check for the proper topic:
<{if $story.topic_title|strip_tags:false == "Local News"}>
Followed by my "social bar"
<!-- Social BEGIN -->
<
div class="addthis_toolbox addthis_default_style ">
  <
class="addthis_button_facebook_like" fb:like:layout="button_count" addthis:url="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" addthis:title="<{$story.news_title|strip_tags:true}>"></a>
<
class="addthis_button_tweet" addthis:url="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" addthis:title="<{$story.news_title|strip_tags:true}>"></a>
<
class="addthis_button_google_plusone" addthis:url="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" addthis:title="<{$story.news_title|strip_tags:true}>" g:plusone:size="medium"></a>

<{if 
$articlePicture != ''}>
  <
a href="http://pinterest.com/pin/create/button/?url=<{$xoops_url}>/modules/news/article.php?storyid%3D<{$story.id}>&media=<{$articlePicture}>&description=<{$story.news_title|strip_tags:false}> - <{$story.text|strip_tags:false|truncate:320:"..."}>" class="pin-it-button" count-layout="horizontal">Pin It</a>
    <{else}>
        <
a href="http://pinterest.com/pin/create/button/?url=<{$xoops_url}>/modules/news/article.php?storyid%3D<{$story.id}>&media=<{$xoops_url}>/logo.png&description=<{$story.news_title|strip_tags:false}> - <{$story.text|strip_tags:true|truncate:320:"..."}>" class="pin-it-button" count-layout="horizontal">Pin It</a>
<{/if}>

  <
class="addthis_counter addthis_pill_style" addthis:url="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" addthis:title="<{$story.news_title|strip_tags:true}>"></a>
</
div>

  <
script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=YOUR PUB ID" addthis:url="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>" addthis:title="<{$story.news_title|strip_tags:true}>"></script>
  <!-- 
Social END -->
By adding this in the news_item template instead of _article, You see the social icons at the bottom of every story when viewing the entire topic - and the links track through to the stories, so you could "like" every story on a page with a few clicks. **Note: Pinterest requires this additional js at the top of the page (I put mine in both news_index.html and news_article.html
<script type="text/javascript">
(function() {
    
window.PinIt window.PinIt || { loaded:false };
    if (
window.PinIt.loaded) return;
    
window.PinIt.loaded true;
    function 
async_load(){
        var 
document.createElement("script");
        
s.type "text/javascript";
        
s.async true;
        if (
window.location.protocol == "https:")
            
s.src "https://assets.pinterest.com/js/pinit.js";
        else
            
s.src "http://assets.pinterest.com/js/pinit.js";
        var 
document.getElementsByTagName("script")[0];
        
x.parentNode.insertBefore(sx);
    }
    if (
window.attachEvent)
        
window.attachEvent("onload"async_load);
    else
        
window.addEventListener("load"async_loadfalse);
})();
</
script>
Finally, I add the following code near the bottom of the news_article.html template for the "Chat" plugin from facebook
<fb:comments numposts="15" <div class="fb-comments" data-href="<{$xoops_url}>/modules/news/article.php?storyid=<{$story.id}>"></fb:comments>
Read more... | 10 comments

XDPerpetual: FREE template for Xoops

Xoops demo presents a new theme for Xoops FREE.

Resized Image

XDPerpetual is based on the default theme and psd Perpetual Redux.Il consists of two colonnes.Compatible with Xoops 2.4.x and more

Compatible with: Resized ImageResized ImageResized ImageResized ImageResized Image

Download: here
See: here
Read more... | 5 comments

SBHE - Another Website powered by XOOPS

Hello! One more XOOPS website in Brazil, SBHE - Brazilian Society for the History of Education:

Resized Image


See Here:http://sbhe.org.br

Modules:
Mylinks 1,12, Publisher, Mytube 1,05, Xfguestbook 2,3, Newbb 3,08, News 1,67, Multimenu 2,08, Profile 1,6, Liaise 1,27, Extgallery 1,09, Mytabs 2,2, Wblocks 0,9, TDMStats 1,06.

Enjoy.
Read more... | 10 comments

Plugins to pick up the RSS feeds of individual modules

The creation of a new module that collects the RSS feed module and display them either individually or in groups in the reader software or internet. Has an administration side to create the plugin directly in contrast to other modules that are created manually for each module.

Trial to test on your computer or virtual server and operating system to verify the successful creation of the plugin.

The modules that will work with this module are only those created with classes that extend the object class from the 2.5.0 version of xoops.

Warning: only for test

Download
Read more... | 3 comments

Fast-Page Theme

Resized Image


For Xoops Black-Pearl Theme
Design:http://www.atomicwebsitetemplates.com/
Adapted for Xoops: B.Heyula !
Xoops Turkey Team...
Download:
http://www.programgezgini.com/modules/TDMDownloads/singlefile.php?cid=5&lid=161
Read more... | 2 comments

GUX Brazil - 2 years online!

The User Group XOOPS Brazil today celebrates two years on the air!
Thanks to everyone who helped make the community what it is today!
The site was redesigned in celebration of this date!

Visit us:http://guxbrasil.org

Thanks XOOPS!
Read more... | 3 comments

XOOPS 2.5.5 Beta Released

The XOOPS Development Team is pleased to announce the release of XOOPS 2.5.5 Beta.

This release is focused on fixing security issues, open bugs, and on updating our libraries to the latest versions:

- phpMailer 5.2.1
- TinyMCE 3.4.8
- jQuery 1.7.1
- jQueryUI 1.8.17


See the Changelog for more details.

Please remember: This is Beta Release version for features testing only!!!!

DO NOT install it on a production site and DO NOT upgrade any production site with it!!!


Please post and discuss all issues related to this release in this forum

We also need help with Translations

System requirements
-----------------------------------

PHP:
Any PHP version >= 5.2 (PHP 5.3+ is strongly recommended)

MySQL:
MySQL server 5.0+

Web server:
Any server supporting the required PHP version (Apache highly recommended)

Downloading XOOPS
-----------------------------------

You can get this release package from the Sourceforge repository.
There are .zip and .gz archives provided.
Read more... | 11195 bytes more | 19 comments

TDMCreate 1.39 Alpha 1 Pro

This release is the first to have added, as some of the many that will be included in future, files to create a more dynamic and flexible so you can more accurately choose the type of module and function that it should have.

Among these early features, there are some files and folders that are created and manipulated before the creation of the module itself, for example css files, changelog, folders and files of languages ​​and more.

In future releases you can also see the various controls for creating database fields if this will require the creation of new modules.

Download
Read more... | 26 comments

samPHPweb - SAM 1.03 - SAM Broadcaster Web Component for XOOPS

Resized Image
SAM1.03
Community Release by Torque Radio


SAM 1.03 is the web component of the SAM Broading Automation software from www.spacialaudio.com - SAM Broadcaster comes with a web component this is simply the XOOPS Version for SAM Broadcaster.

This has all the features and comes with a complete modeler for the class system so you can expand on your SAM Broadcaster easily if you know how to program XOOPS. You can have a seperate database for Sam on your webhost and you will be able to point this module too it in the preferences.

Watch this video to better understand SAM 1.03 for XOOPS




New Features Include:
  • Multilingual Support
  • Now Playing Block
  • Top Request Block
  • Navigation Block


Some Features Include:
  • XOOPS 2.5 GUI with About & Dashboard
  • Sam Persistence Class Modeler
  • Sam Database Factory
  • XOOPS Blue Room Classes
  • Playlist Search
  • Most Requested
  • Partner Block
  • JQuery Curve


System Requirements:
  • XOOPS 2.5.x


Download: xoops2.5_sam_1.03.zip - 205Kb
Mirror: xoops2.5_sam_1.03.zip - 205Kb
Demo:http://xoops.demo.chronolabs.coop
Thread for Bugs & Comments:https://xoops.org/modules/newbb/viewtopic.php?topic_id=74813&post_id=344352#forumpost344352
Read more... | 1 comment
« 1 ... 33 34 35 (36) 37 38 39 ... 553 »


Login

Who's Online

150 user(s) are online (9 user(s) are browsing XOOPS News)


Members: 0


Guests: 150


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits

Archives

News archives