Article Management System (AMS) 2.42 RC1 Released !

AMS Module

NovaSmart Technology proudly announce Article Management System (AMS) 2.41 RC1.

This release already gone through 3 weeks alpha testing by our internal staff and considered stable in our controlled environment. This RC1 will be renamed as FINAL after 2 weeks from now if there is no new / critical bugs reported.

What Is AMS

AMS is a highly modified version of the News 1.2 for Xoops, and adds a huge amount of features to give the webmasters a lot more control over their content while still maintaining an easy to understand and use interface. AMS is highly scalable, and is geared towards performance, and as such is well suited to large article repositories that attract high amounts of users.

Features

Koivi WYSIWYG editor integration : Your choice of using the default Xoops editor or Koivi editor selectable via AMS preferences. When using koivi editor also has a separate area for the article description as well as the main area for putting your article, so there is no need for use of the [extend] tag anymore.
NOTE: You MUST install Koivi editor separately before this feature can be used. you can download Koivi from here

Advanced Spotlight management : Choose your AMS spotlight block layout from three different template layouts, and add unlimited spotlight blocks with the option to display article mini stats including total articles, total article reads and total article comments. The all new spotlight block administration area allows you to configure exactly how and where to display your AMS spotlight item. From here you can add new spotlight items, selecting the latest article, the latest article in a topic, a specific article, or use the custom setting to display an image or banner using straight HTML code. You can also set things such as what image to display, wether to use an auto or manual teaser, how many characters the auto teaser should display, what text a manual teaser should contain, whether to display the spotlight item in the spotlight block or not, and item weighting where the lowest weighted item is treated as the main spotlight item.

Complete migration and upgrade script : This script enables you to migrate all content, permissions and comments from all presently released version of the News module. It also enables you to upgrade from AMS 2.2.

View by topic revamped : The view by topic view has undergone a huge overhaul and now presents itself with much more emphasis on navigation via topic and sub-topic.

New breadcrumb navigation system viewable in the topic and article views for easier browsing.

Topics Manager : Topics manager now has a topic weighting system so you can set the listing order when using the view by topic mode.

Article image selection : You can now select to display the user avatar in addition to the topic or no image when viewing an article.

Articles versioning control

2.41 vs 2.42

  1. New Features / Enhancement
  2. Introduce "Auto" in versioning control
  3. AMS now working fine with both XOOPS 2.1.x and 2.2.x branches.

Bug Fixes

  1. Koivi editor not work for XOOPS 2.2.x
  2. Delete function from moderate block does not work, and throws up this error;

    Fatal error: Call to undefined function: xoops_cp_header() in \path\to\xoops\modules\AMS\submit.php on line 107
  3. The register globals setting in php.ini must be set to on in order for the article preview function to work. To be fixed in AMS 2.6.
  4. File upload feature does not work, and just returns this error:
    Error while uploading the file

Bugs Reporting

Please report any bugs in HERE. We will read and review.

Download

DOWNLOAD AMS 2.42 RC1 HERE

Mohd Hilmi bin Ngah
NovaSmart Technology

Read more... | 13 comments

Aphex Themes on IE

After a hard work over the whole weekend, Aphex Themes has opened this morning for visitors that run older versions IE of browser than IE7. With this, theme has suffered more modifications such as using images for block's titles, also notable is that we don't use any js or htc for making png transparent for older browsers.
The optimization for older IE was done purely for the challenge as i gathered more and more users browse using Firefox .Minor things remained to be done but they can be done with the opened site. Well enough said

Thank you

Resized Image
Read more... | 3 comments

New look

onodenjeNew look for ONODENJE I hope you have fun to send the free eCards from my site. Veri easily - send eCards Thanks to everyone for their work on XOOPS!

Comments?

2 plugins smarty for Xoops against spambots

xoEmail: Converts email for a simple protection against spambots.
With this plugin you can modify the address email with value of replacements which you will have configured.

Quote:
duchemin@free.fr => duchemin [your value] free [your value] fr
duchemin@free.fr => duchemin [AT] free [DOT] fr
You can also add new value of replacements which will enable you to transform for example the .fr into [your value].

Quote:

duchemin@free.fr => duchemin [AT] free [FRANCE]

xoEmailImage : Converts email into captcha image for a simple protection against spambots.

Resized Image

This plugin uses the GD library, if this one is not installed, it’s the plugin smarty xoEmail which will take over.

You can configure the creation of the image by modifying the values of the file of configuration.

Documentation :
xoEmail
xoEmailImage

Download :
xoEmail
xoEmailImage
Read more... | 2 comments

New site for scout group

Finally finished: A site for a scout-group based on XOOPS 2.2.

Several news clones, custom programed blocks, not that really 'clean' programmed but effective enough to provide a site where multiple scouts & leaders can post news about activities without having to worry about the front page, since news 'teasers' are auto-generated into a three colum lay-outed front page.

I also made a custom theme, supporting separate sub-pages for each age-group (beaver, cubsouts, scouts, rovers, etc.)

Only in Dutch (sorry), but check it out because comments are very welcome.
Read more... | 1 comment

Xoops Comments - Prevent Anonymous User Spam

Although there is option in every module that would let you choose who can post a comment. But what if you want anonymous users to post comments as well. There isn't any option (at least I couldn't find any) that will prevent anonymous users from spamming. So this hack will prevent spam if a url\link is found in anonymous users' post.

As always recommended while playing with hacks, make sure you backup the file you will be editing. In this case its: XOOPS_ROOT_DIR\Include\comment_post.php

Note: I have tested it only on Xoops 2.0.16


Start...

1) Open XOOPS_ROOT_DIR\Include\comment_post.php


2) Look for the following on line 138

Original Code
break;
case 
"post":

   
$doimage 1;
    
$comment_handler =& xoops_gethandler('comment');
    
$add_userpost false;
    
$call_approvefunc false;
    
$call_updatefunc false;




3) Change it to ...
break;
case 
"post":

    
//myhack - Prevent Anonymous User Spam
    //if a URLLINK is found in link, then dont let annonymous user post.
    
$myhack_comment $_POST['com_text'];
    
$myhack_title $_POST['com_title'];
    
//checking if poster is anonymous
    
if (!is_object($xoopsUser)) {
        if (
preg_match("/http/",$myhack_comment) || preg_match("/www/",$myhack_comment) || preg_match("/href/",$myhack_comment) || preg_match("/http/",$myhack_title) || preg_match("/www/",$myhack_title)) {
            echo 
"Dont Spam Bitch!!!!!";
            exit();    
        }
        else {
        }
    }
    
//end of myhack


    
$doimage 1;
    
$comment_handler =& xoops_gethandler('comment');
    
$add_userpost false;
    
$call_approvefunc false;
    
$call_updatefunc false;


Read more... | 3 comments

Release of SmartPartner 2.0 RC !

Release of SmartPartner 2.0 RC !The SmartFactory is proud to release the new version of its partners management module : SmartPartner 2.0 RC ! What is SmartPartner? SmartPartner is an advanced Partners Management System for your XOOPS site. It features all the functionalities of the original XoopsPartners module, combined with the features of the other SmartModules. And now, with version 2.0, many new cool features were added !! What's new in version 2.0? - Addition of multiple category for a partner. - Addition of two perms levels: Full view & Partial view - Addition of offers within a partner - Addition of new/updated icon to mark partners - Addition of scrolling partner block - Addition of category list block - Addition of new partner block - Addition of new offer block - Addition of random offer block - Addition of new partner notification - Addition of new offer notification Where could I see this LIVE ? We just updated the partners section SmartFactory with our new module so come have a look : http://smartfactory.ca/modules/smartpartner Where can I get it ? If you are upgrading from a prior version of the module, please carefully read the file upgrade.txt as it contains important informations about the steps that need to be performed in order to successfully upgrade to this version. You can download the module here : SmartPartner 2.0 RC. Please note that this version requires the latest SmartObject Framework Module to be installed on your site. The language packs are available here : SmartPartner Language Packs. As usual, any comments, bugs or suggestion are welcomed on the SmartPartner Community Support Forum. Enjoy !
Read more... | 11 comments

Ramadan Theme

Arabxoops is proud to announce the release of Ramadan 3-Column fixed width theme. That is both W3C XHTML + CSS 2.0 Compliant.

Resized Image

Ramadan theme based on web templates designed by dtxp.com and one of xoopsdesign.com themes.

Demo: http://www.arabxoops.com
Download: click here

Happy Ramadan

Read more... | 8 comments

Stonehenge Festival

hhttp://www.stonehengefestival.nl
Just an average Xoops-site.

A site I build for the small dutch heavy metal festival 'Stonehenge'. The reason I switched to Xoops was the handy use of multiple languages with the xLanguage module. As more and more foreign visitors visited the site it became important to present at least a bi-langual site.
Performance is an issue though, but thats not the fault of Xoops but of my hostingprovider http://www.servage.net. They're cheap, and give you A LOT but performance isn't a strong point of them. At the bottom of my site you can see the loadtime; in black so it doesn't draw to much attention.
I tried other cms-es but Xoops is the one I feel most comfortable with.
Comments?

The XOOPS group on Facebook !

The XOOPS group on Facebook !It is my great pleasure to announce that a XOOPS group has been created on Facebook to create connections between XOOPSers of the world ! If you are interested, simply access this group here, or do a quick search for XOOPS in Facebook. Hope to see you there ! Cheers !
Read more... | 2 comments
« 1 ... 233 234 235 (236) 237 238 239 ... 553 »


Login

Donat-O-Meter

Stats
Goal: $15.00
Due Date: Sep 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $15.00
Make donations with PayPal!

Archives

News archives