Xoops AcidTech Themes Released!

Resized Image


AcidTech Xoops themes are professionally designed themes. Fans of your website will be very pleased when you show them that they deserve a professional theme and a professional website.

We have several different colors to choose from. Selecte yours now!
Read more... | 3 comments

Free Design Sd-099-Noname-Green

Sinnedesign is happy to happy the new FREE XOOPS Theme with the name Free Design Sd-099-Noname-Green. The Free XOOPS - Theme was made with friendly help from http://www.rabattzauber.de

Resized Image


Here can you find the XOOPS 2.4 Theme Demo - XOOPS 2.5 Theme Demo.

And here is the FREE - Download Xoops Theme Sd-099-Noname-Green

Here is the direct Download - Link (without registration)

Nice Weekend and happy XOOPsing!
Comments?

Bulgarian Black Sea Website powered by XOOPS

This Website about the Bulgarian Black Sea is based on our lovely XOOPS.

Soon it will be in English and Russian.

I wish to be useful to people interested in tourism and seeking recreation in Bulgaria.
I hope someday to visit our sunny and welcoming resorts.


Resized Image


Xoops Version : 2.5.5

Base theme: Businex

Modules used are:

News
Tag
Catads
Weblinks (with webmap3 and rssc)
Mylinks
Content
Xsitemap
Contact
Couple dummy modules

http://www.blacksea.biz


Thank you guys :)
Read more... | 5 comments

World of Tattoos

This is World of Tattoos based on XOOPS 2.5.5.

Modules used are:
Publisher
Xoopspolls
Myalbum
xsitemap
wflinks
and some custom modules.

I can't remember what the original theme was called, sorry.

Hope you like it! And please join the Facebook page for support! :)

Resized Image

Read more... | 2 comments

Free Xoops Theme Sd-099-Noname

I'm happy to happy to present the new FREE XOOPS Theme with the name Sd-099-Noname . The Free XOOPS - Theme was made with friendly help from http://www.janz-it.de .

Resized Image


Here can you find the XOOPS 2.4 Theme Demo - XOOPS 2.5 Theme Demo.

And here is the FREE - Download Xoops Theme Sd-099-Noname

Here is the direct Download - Link (without registration)

Happy Weekend and nice XOOPsing!
Read more... | 1 comment

New version of Xoops Demo

Xoops demo is pleased to introduce the new version of site. This new version is developed with BOOTSTRAP, HTML5 and CSS3.

Resized Image

For info: XOOPS Demo is a site dedicated to XOOPS themes.

You can view or download a multitude of complete themes, attractive based HTML5 and CSS3 to create your website.
Read more... | 4 comments

UHQ_GeoLocate v0.94 Released!

Resized Image

It's been about 2 1/2 years since I've really done much with this module, and since a friend of mine has been prodding me into getting some coding going again, I thought this would be a good module to do a few updates to. What's changed?

Release 0.94 :: June 15, 2013

Feature Adds
Ability to cache IPv6 queries w/ API calls.
MaxMind GeoIP API now supports IPv6 queries.
IPinfoDB v3 API now supports IPv6 queries.

Code Changes
Converted to XOOPS 2.5.5 Admin GUI (Mamba)
Further optimization of the geolocate.class, code collapses.

Notes
Change log also in text format, since it's supported in the Admin GUI.
Development environment is now XOOPS 2.5.6.

Release 0.93 :: June 11, 2013

Feature Adds
Added ability to expire cached entries after an arbitrary number of days.
Added IPInfoDB v3 API support w/ city and country-level lookups (IPv4).
Added FreeGeoIP.net support (IPv4).

Code Changes
Minor code cleanups and optimizations.
Removes distribution sample binary files if the module is already installed.

Fixes
Fixed module upgrade script for v0.91 upgrades.

Notes
The code repository for the module is now hosted on GitHub under uhq_geolocate for anyone who is interested. Additionally, the module strings now note the underscore in the module name.

Downloadable here: http://xoops.underwood-hq.org/modules/wfdownloads/singlefile.php?cid=1&lid=6
Read more... | 1 comment

Highlighting non-empty alphabet listing in XoopsTube

In XoopsTube we have a visual alphabetical listing of videos, so if you would like to see all videos starting with "B" you would click on the image with "B". Unfortunately, this is not the most user-friendly feature, because we don't know if there is anything under "B". So we needed to indicate the existence of videos by a changed background icon, as you can see below: Resized Image The plan was to: 1) build an array of unique alphabet letters that have videos in the database 2) as we render the alphabet icons, check for each letter/digit if it is also in the above array, and if yes, change the icon image to the green one XoopsTube renders the images in the function xoopstube_letters() located in /include/functions.php As first we needed to extract the unique letters from the database and create the array:
$distinctDbLetters_arr = array();
    
$sql 'SELECT DISTINCT (UPPER(LEFT(title, 1))) AS letter FROM ' $xoopsDB->prefix('xoopstube_videos') ;
    if (
$result $xoopsDB->query($sql)) {
        while (
$row $xoopsDB->fetchArray($result)) {
            
$distinctDbLetters_arr[] = $row['letter'];
        }
    }
    unset(
$sql);
As second, we wanted to check for each alphabet letter and digit to see if it is represented in the database:
if (in_array($ltr$distinctDbLetters_arr)) {
            
$letterchoice
                
.= ';
        } else {
            
$letterchoice
                
.= ';
        }
And we had to create a new class in CSS that would pull the new image:
.xoopstube_letters_green {
    
background-imageurl(images/icon/backgnd_green.png);
}
Things to do in the future: - cache the array created in (1), so we don't have to read it every time from the database, and updated it only if a new video is added The main message from this tutorial is to make our modules more user-friendly by visually indicating status of information. As always, if somebody has a better way to achieve it, please share it with us!
Read more... | 9 comments

XOOPS Council adds new members

The XOOPS Community is blessed with many great individuals, who dedicate countless hours to help XOOPS to move forward. We see them on the forums, and we see the results of their hard work in new and/or updated modules, themes, and bug fixes.

The key to XOOPS success is to have a strong team working together.

Today we would like to announce new additions to the XOOPS Council to lead and guide XOOPS forward (you can see their detailed bios below):

International Support Team: Christelle Gaulupeau (Cesag) from France

Modules Team: Jim Garrett (Zyspec) from USA.

Documentation Team: Alain Thivillier (Alain01) from France

Support Team: Ali Nili (Irmtfan) from Iran

Design Team: Angelo Rocha (AngeloRocha) from Brazil

Core Team: Trabis who was leading the development of XOOPS 2.6.0 together with Nicolas, is on leave of absence, but we hope he'll be back soon. In the meantime, the Core Team members will continue with the development as a team.

Today we would like to also thank Nicolas Andricq (ForMuss) and Eduardo Cortés (Bitc3r0) who have resigned from the Council due to new jobs and not having enough time. However, BitC3r0 is committed to continue with the further development of RM Common Utilities. Their help and support over years was instrumental in improving XOOPS, and we very much appreciate it!

We are all looking forward to working together to keep moving XOOPS forward!
Read more... | 7765 bytes more | 17 comments

Nominate XOOPS for Critics Choice CMS Awards

The Critics Choice CMS Awards are now accepting nominations for 2013... and XOOPS needs your support!

Nominations are open through August 1, 2013. Actual voting takes place from September 1 - November 1, 2013.

Please consider nominating XOOPS in any (or all) of the following categories:

- Best Open Source CMS
- Best Free CMS
- Best CMS for Small / Medium Sized Businesses:
- Best Enterprise CMS
- Best Website Builder

Last year, XOOPS was the Runner-up for the People's Choice for Best Free CMS, and we lost by only few votes!

So please help us to win this year, and the first step is to make sure that we're nominated!

Please nominate XOOPS today!

Resized Image


For more information, see http://www.cmscritic.com/critics-choice-cms-awards/.
Read more... | 7 comments
« 1 ... 13 14 15 (16) 17 18 19 ... 553 »


Login

Who's Online

780 user(s) are online (5 user(s) are browsing XOOPS News)


Members: 0


Guests: 780


more...

Donat-O-Meter

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

Latest GitHub Commits

Archives

News archives