Français English Español Italiano Português
User Login    
 + User Registration
Connexion

Blog » XOOPS Project

Powered by You! URL Feed
Update : 2012/5/23 19:07:40 Update

2008-04-18T12:30:00+02:00 | 623 reads


This is an RC release and is not recommended for production sites yet!!!
You have been warned!!!

Yogurt Social Network version 3.2. RC1
By Marcello Brandão
Yogurt by Marcello Brandão is licensed under a Attribution-No Derivative Works 2.5 Brazil.
============================



This module features a simple Social Network for your xoops site.
Very recommended for communities sites. It allows users to have a personal album of pictures, a personal album of videos from youtube, a list of friends, a public wall for messages(scraps), to create communities (tribes), to adjust configs to set who can see what, it also allows Admins to block users from using the site for a certain amount of time.
The use of the module is very simple and the front end is clean and beautiful thanks to the lightbox2 feature and to jquery tabs.

======================
DOWNLOAD

http://sourceforge.net/project/showfiles.php?group_id=204109



2009-08-25T15:40:00+02:00 | 144 reads

In this tutorial I will teach you the basics of javascript with jquery. This tutorial is especially geared towards php developers who have been hesitant to venture into javascript.
The question that pops up most often is: why use javascript if I already have PHP? Well, because PHP is a server side language while javascript resides on the client. Actions that are tacky done on PHP, such as table sorting are a breeze on javascript. Mind you that I'm not advocating you drop PHP, on the contrary! If you combine PHP and javascript you can take your code to a whole different level. Let's start.
Before we start, a couple of requirements for this tutorial:
- Go to jquery.com and grab jquery-1.3.2.min.js This is the minified version of jquery. It's great to start learning with. When you are proficient with javascript you might want to get the full version to perform your own hacks.
- Go to getfirebug.com and download firebug.js This is a great development tool that allows you to debug javascript directly through firefox (I'm planning a tutorial just dedicated to this).
-An editor either wysiwyg or ide to change php/html/etc files.
-A local php server. If you are not running one, go check xampp or similar.

First create an empty file called: test.php Inside place this code:



<script language="javascript">

alert ("hello world");

</script>


This will popup an alert box that says hello world! Now since we understand php, let's bring the two together. Replace all previous code with this:

<?php

$tst 
"my name is wally";

?>

<script language="javascript">

alert ("<?php echo $tst?>");

</script>


We have a php variable called $tst that get's passed into the alert box. Now let's bring in jquery and start making things more interesting. Replace all previous coe in file test.php with this:


<style type="text/css">

  
#box { background-color:#FFFF99; border:thin solid #FF0000; width:70%; height:50px;}

  
</style>

<
script type="text/javascript" src="firebug.js"></script>

  <script language="javascript" src="jquery-1.3.2.min.js"></script>

<script language="javascript">

  $(document).ready(function() { //Finish loading the entire page before processing any javascript

  $("#subBut").click(function(event) {

  var formContent = $("#form1").serialize();

  $("#box").load('myserv.php',formContent);

  });

  });

  </script>

<form name="form1" id="form1" method="post" action="">

  <label>Name

  <input type="text" name="textfield" id="textfield">

  </label>

  <input type="button" name="subBut" id="subBut" value="Submit">

  </form>

  <br />

  <div id="box">Ajax call</div>


Now create another file called myserv.php and place this code inside:

<?php

echo "hello world! My name is " $_GET['textfield'];

?>


Now test it! What we are doing here is creating an ajax response to our initial test.php file. It takes the form data and passes it to myserv.php through $_GET. The good thing about using jquery $.serialize (found on line 6) is that it will grab all elements in a form. So, even if you add more later on, it will still grab them.
Now a line by line explanation of the javscript code:
Lines 4 and 5 load jquery and firebug
Line 7 All code inside this function only gets processed AFTER the entire page has loaded. This is especially important for us php developers since we have php code many times scattered along our pages.
Line 8 is an event function. Meaning, when an event happens, run the code inside. In this case the event is a "click" and it has been binded to selector "subBut" which is the submit button in our form. So, when someone presses the submit button, the code inside gets executed.
Line 9 is a great jquery function called $.serialize It grabs all form elements inside our form "form1" and correctly formats it to be sent using $_GET to our response page. In order for this to work I created a javascript variable called "formContent". this holds the formated data. NOTE: All variables in javascript must first be declared as such before being used.
Line 10 This is where jquery shines. A simple line that does so much! The selector in this case is a div with id "box". This is where the ajax response will be loaded into. load('myserv.php',formContent) will send the content of our javascript variable "formContent" to the page myserv.php which processes the information then sends back a response.

This is a simple tutorial to get you started. I have more on the way :)



2008-03-02T09:25:22+01:00 | 133 reads

Module: x-Torrents
Author: Simon Roberts (+ Others)
Version: 1.30rc
Download: xoops2_xtorrent_1.30rc.zip (273Kb)
Wiki: X-Torrent

x-Torrents is a comprehensives module for xoops that allows for uploading and submission of external torrents. Including the ability to publish news about torrents and also have forum associations.



2008-04-06T22:18:14+02:00 | 83 reads

Module: x-Torrent
Author: Simon Roberts (+ Others)
Version: 1.32
SourceForge: X-Torrent
Wiki: X-Torrent on Xoops
Download Torrent: Download Now
Direct Download: Download Now



2010-01-03T15:20:00+01:00 | 79 reads

SocialNet 2010 is a module that provides a Social Network, It is based on 11 modules at this momment, and othes modules sections



RESOURCES BLOCKS
1. Social Bookmarks Block
2. Clock and Calendar block
3. Google Search from the portal or from Google
4. Module Menu block
5. Random page
6. Top Page
7. Users Block Login

RESOURCES PAGES
1. ContactUs form
2. Membership page
3. My Points
4. User Page
5. Page List

See the working SocialNet 2010 Module click here

Download from here

NOTE: Please reports any bug to release the final version. You are welcome to add your knowledge to this project.
Regards,
David Yanez Osses



2009-03-15T02:30:00+01:00 | 64 reads



hi all,

I am happy to share with you the new free shop theme. It's a clean theme. The big image with the 3 phones is only visible when the right blocks are visible

- 3 columns
- width: 1000px
- tested with FF, IE6 and IE7

more information and download on xoops-theme.com

regards
bleekk



2008-04-09T05:20:00+02:00 | 50 reads

What is the inTHEtube:
inTHE tube is a tiny addition to your xoops site, letting you add YouTube search and/or custum-keywords videos to your site.

Features:
1. you can as much keywords as you want, each keyword with the number of videos you want it to show
2. you can choose which keyword(s) will be the default and it's videos will be shown in the first module page.
3. you can choose it to show search box or not
4. you can choose if to show custum keywords or not
5. you can call the module with a url (details below).
6. I'm too tired to remember ....


Demo and download: http://www.gifts45.com/modules/about_tube/

compability:
xoops version 2.0.x , 2.2.x
(tested just with 2.2.4 , but should work with all versions)

Why Version 0.9 ?
The module code still a bit masssy and should be cleaned, most of the language vars are hardcoded, still no blocks (quite easy, but no time to ...)
Still - it's ready for production, so it better serve the one that need a little spice for their site
and I'll improove it later on - in future versions (hope time will let me do it soon)

Installation:
Upload to modules directory and install as usual...
Change the title of the block from gifts to whatever keyword you choose as your default keyword.
Set up other config options in the Xoops Preferences for the module...

Interaction with other modules:
You can call inTHEtube from anywhere (or any other xoops module) with a url call (like: http://www.mysite.com/modules/inthetu ... ber_of_videos_to_show>
so it's easy to add it to xoops search or cbb search or any other module (tags , article and so on ...)

Issues/bugs:
No known bugs (yet?) ... but there are some Ajax issues with some charsets, and the module won't send the keywords to Youtube as it should ...

comments are welcome - especially since the module is ajax and css based, and when dealing with a lot of client-side stall, there are always browsers incompibilities ...

while in our site ( http://www.gifts45.com ) feel free to add your site (gifts or shopping related) and promote it ...

Enjoy
Tzvook





2009-08-26T18:00:00+02:00 | 50 reads

This tutorial will teach you 4 things:

* How to apply rounded corners

* Form validation

* Passing variables into a list

* Customizing jquery plugins



2009-09-12T03:10:00+02:00 | 38 reads

Hey all,

after a couple of months working on my site I am glad to announce that it is now live and is proudly powered by Xoops.



PlaySome is a PlayStation 3 website offering news and information on games, hardware, release dates, videos, screenshots and pretty much anything to do with PS3.

The theme of the site is a modified version of the default xoops theme, I have also used the xoRewriteModules hack, I have used a fair amount of modules also, my main modules are:

Article 2.00RC - alot of template modifications to make it more cleaner and leaner looking, removed alot of uneeded stuff.

Wordbook - for the cheats module, this was cloned/renamed so it would have URL like cheatID= also done a bit of template modification on that.

Planet module
MyDownloads module - some basic template mods
xcGal - some minor template mods
VideoTube
TadGallery
TadNews

I also have some custom static modules made using the 'dummy' module.

I hope you like what ive done, please give me any feedback you can so I can try and make it better.

Cheers.

PlaySome



2008-08-29T12:45:29+02:00 | 37 reads



Updated version of Marcello Brandão's Yogurt, a simple Social Network for your XOOPS site.

Very recommended for communities sites.

It allows users to have a personal album of pictures, a personal album of videos from youtube, a audio album for mp3 files, a list of friends, a public wall for messages(scraps), to create communities (tribes), to adjust configs to set who can see what, it also allows admins to block users from using the site for a certain amount of time. The use of the module is very simple and the front end is clean and beatifull thanks to the lightbox2 feature and to jquery tabs.

Download here

Couple of XOOPS sites using Yogurt:
http://www.roussinacademy.com/modules/yogurt/
http://dagpacollege.com/home/modules/yogurt/



2008-10-25T08:00:00+02:00 | 30 reads

ShoutBox is an XOOPS module that provides an interactive block and pop-up window for visitors to post and view messages. CVD has picked up module development activities where previous developers left off. The major feature incorporated into this release is the addition of captcha as an anti-spam measure. The captcha class was copied from the XOOPS 2.3.0 core package and modified to meet the specific needs of ShoutBox module (including introduction of "Good Guest" mode). By copying the captcha class into the module we are hoping the module will function with XOOPS 2.0.x and XOOPS 2.2.x but it hasn't been tested with these versions yet. All development and testing has been performed with XOOPS 2.3.0 ONLY. We also added a guest avatar and re-designed the popup window using div tags and css so the dynamic resizing works with all browsers.

The captcha "Good Guest" mode was an idea generated by XOOPS users placing feature requests. When captcha is enabled a guest is only required to enter the confirmation code correctly for their first message post. A session variable is then set indicating the guest is now a "good guest" and the captcha entry requirement is then waived for the guest for the remainder of the guest's session.

The download of this release is now available at Custom Virtual Designs downloads



2009-08-09T19:30:00+02:00 | 29 reads

CVD is pleased to announce the release of Video Tube v1.85. This beta release addresses some minor bugs and adds the ability for visitors to rate videos on your site.



2010-06-08T16:20:00+02:00 | 26 reads

Sorry for such long timelapse but had to move both appartment and office.

I have made lots of old and new bug corrections, changes and improvements and before making any other addition I would like to consolidate 1.68 version as is, therefore I made an RC1 version for testing and will soon realease xNews 1.68 FINAL and after that i will concentrate on 1.69 version.

In the works - New xNews Importer/Exporter Module 1.0

Here is a list of major changes. Made so many though that I did loose track of some....

- Module preferences
- changed "Show Previous and Next link" to accept None, Bottom, Top, Both visualization
- added "Display Link Icons" (print, friend, pdf icons) as above
- changed "SEO enable" to accept none, htaccess, path-info
- added "SEO path" to include a title in url


eghttp://your.site.com/a-title-here/topics.1/your-topic.html


- added "SEO level" to htaccess in xoops root dir or in module dir for different url visualization

egROOT http://your.site.com/a-title-here/topics.1/your-topic-title.html



MODULE http://your.site.com/modules/xnews/a-title-here.topics.1/your-topic-title.html


- Clone manager
- added "Force upgrade" to enable further upgrading in case things go wrong
- added "Delete" clone once uninstalled (this will remove selected clone dir and files completely).
- Other
- added "Extend meta-data input" to toggle between text and textarea for user edit meta-data input
with 255 char max length control
- added and modified htaccess one for root and one for modules/xnews as needed
- improved UTF-8 management
- Fixed Comments SEO related issues

Upgrading xNews Beta to RC1:
copy all files in modules/xnews then go to admin-modules menu and update xnews.

Upgrading clones Beta to RC1:
go to admin-xnews-Clone Manager and click on "Force Upgrade" for each clone then goto admin-modules
and update each upgraded clone.

Enjoy!!!

Download link



2008-04-05T17:00:00+02:00 | 21 reads

WF-Channel V2.02

This is a mini bug fix release. It deals with two issues that came to light after the last release and were important enough to issue this release so quickly.

1. XoopsEditor Support: WF-Channel should support XoopsEditors fully now on all versions of Xoops.
2. Xoops Search: Now fully working. Fixed a bug that would prevent multiple word searches.
3. WF-Resource Check: Added code that will check the WF-Resource version. If this check fails, WF-Channel will display the reason for the failure. This is to help users who may forget to download the resource module.
4. Fixed Packaging: I have used a different tool to package the modules. If you still run into any problems, please contact us ASAP.

We urge all WF-Channel users to update to this version.

Download WF-Channel v2.02Download WF-Resource v1.03
Support and Bug fixes

What is WF-Channel?
WF-Channel aims to be as simple as possible, while providing a powerful tool to aid a webmaster in webpage creation. This module is not a replacement for a dedicated article management system, but more a supplement of these other tools and should be treated as such.

Where WF-Channel excels is its ease of use. Every area is well explained with helpful dialog and streamlined admin interface. Whether you just wish to put up one or two webpage’s or more, WF-Channel will make things simple for you.

What’s New in V2.02?
WF-Channel v2 has been written from the ground up, we feel more secure than any other previous versions and we aim to provide patches quickly if required. WF-Channel uses some caching techniques to help reduce strain on servers, like reducing SQL queries, PDF caching and more.

The admin area has been totally redesigned to make working easier and quicker than before. Every item within the admin area is only one click away, which means less work for you in the long run.

Many of the new features may not be apparent straight away, such as mass deletion, cloning and updating of pages and all from the main admin page. You will find this and many more changes like this within WF-Channel.

Every part of WF-Channel front-end is configurable, you choose to display which parts you want your customers to see.

Here is a list of some of the new items within WF-Channel:
1. All code completely rewritten from the ground up,
2. Admin interface completely redesigned for ease of use,
3. Mass updating, deletion and cloning of pages,
4. Almost every item has a helpful hint on its workings,
5. Should be compatible with all versions of Xoops,
6. Supports many text editor,
7. Import HTML and text documents from anywhere on your server,
8. Supports printable and PDF (cached) version of all pages
9. Supports sociable book marking sites
10. Refer page with logs of who has referred who to your website,
11. Anti spamming techniques to stop spammers sending email via your refer pages,
12. Supports a linkable images and text for users to place on their own website,
13. Massive amount of support via WF-Project website,
14. Easily upgradeable from earlier versions,
15. And loads loads more…..

What we are planning for future versions:
1. Mass import of html and text documents,
2. XML support,
3. Trusted path support,
4. Extensive documentation/help files
5. More to be added by user request!



2008-08-09T06:50:00+02:00 | 21 reads


X-Forum is a completely extensible forum module for XOOPS, this is the complete stable release of the first version. It does require Frameworks 1.35 as soon it will include graphs and forum performance analysis.

Designed for XOOPS 2.3 and earlier 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

Minor Bug Fixes

• Search Replace Error in Xoops Version file fixed.
• XOOPS 2.3 - Form Loader Support Fixed

Tested on

• XOOPS 2.0.x
• XOOPS 2.2.x
• XOOPS 2.3.x

Download:



Linkage:

• X-Forum Wiki
• X-Forum 4.03 (beta)
• X-Forum 4.04 (rc)

Demos:

• XOOPS 2.3.0 - http://disc.ess.io/forums/
• XOOPS 2.2.x - http://caribbeanancestry.com/modules/xforum/
• XOOPS 2.0.x - http://www.chronolabs.org/forums/



2009-05-04T06:10:00+02:00 | 21 reads



Download Multisite for XOOPS 2.3.x, it allows for multiple site to be run from the one xoops, many xoops - One Code - Many Domain Bases. Download now

xoops2.3_multisite_1.2.zip (164 Kb).

With this module you are capable of managing multiple domains for your website there are many core hacks with this module but it makes managing your site dynamically and easily for your environment.

It is modelled off the System module, so you can easily expand it and make structural changes. There is a forum for this module should you wish to look at the hacks to get it up and running Forum on Multisite Module

To implement this module requires some core hacks, this is more replacement of or ammendments to include the multisite modules class library using the xoops_getmodulehandler function. Most of the function calls even criterias are the same.

Whats new in this version

* Domains Form type added to preferences.
* New Installation (No More white screen from using classes).
* Few minor bug fixes

What else is available?

There is a new beta of 2.3.4 (Without Protector and the Editor Extensions) this is with full multisite intergration and also comes with a copy of SOAP for cloud computing.. X-SOAP 4.2 is bundled.

Download now: XOOPS 2.3.4 (Multisite Lite)



2008-03-12T07:34:30+01:00 | 20 reads

AMS Module

NovaSmart Technology proudly announce Article Management System (AMS) 2.42 Final.

This release considered stable and can be used in production environment.


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.


History

Development of AMS started by it-hq.org before hand over to NovaSmart Technology later on.

The motivation behind AMS development is to produce Article management which is specially optimized for speed and ease the admin/article contributor job. Each feature added with performance in mind.

As a result, AMS is the best balance between good features and performance for large articles website compared to other XOOPS article modules. Read the detail study here

AMS actively develop by it-hq.org until 2005 before abandon. The development of AMS only takeover by NovaSmart and actively develop there start from middle 2007.


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.

Article versioning system : allowing you to maintain several versions of the same article of which any one can be edited, deleted or set as the active article at anytime

Banner management with inheritance system : so you can enter banner code to be displayed at a topic, subtopic and article level

Searchable article ID system: for knowledgebase like article reference * Article linking to any item within your own site as well as any external web resource with link hit counter visable only to site webmasters

Link topics to any NewBB 2 forum: which when set displays a 'discuss' button at the bottom of each article under that topic

Blocks listing: most read, most popular and most active authors displayed as an average or as a total. Each block with built in article spotlight feature in one or two column format

Article information header: which gives you author, audience, published date, version number, article ID and read counter at the top of each article

Powerful article management admin console: that displays all articles vital statistics, has powerful filtering, searching and sorting functionality, and gives you access to all the administrative functions you need all in one spot

Audience level system: allows you to specify what groups are able to read the extended article text of each article

All the features of the News 1.2 Module


Compatibility

Prior AMS 2.41 only XOOPS 2.0.x supported.
Start from AMS 2.42 will support both XOOPS 2.0.x XOOPS 2.2.x


Current Version

Latest Stable : AMS 2.42 Final. DOWNLOAD HERE

Previous : AMS 2.42 Final. DOWNLOAD HERE

Development : AMS 2.42 RC1 DOWNLOAD HERE


AMS 2.42 vs AMS 2.41

New Features:
Added - Guide to multiple page entry.
Added - "AUTO" for versioning control

Enhancement:
Enhance - provide backend.php. To produce RSS for AMS & News
Enhance - KOIVI and non-KOIVI submit standardize to have hometext and bodytext
Enhance - Multi attachements for 1 article are shown on different lines, not one after another (jobrazo)
Enhance - Mysql 5 support
Enhance - Template changes to fix some inconsistent spotlight display due to some themes
Enhance - AMS now working fine with both XOOPS 2.1.x and 2.2.x branches.

Bugs Fixed:
Fixed bug - attachment download, audience level not respected. (jobrazo)
Fixed bug - Koivi editor not work for XOOPS 2.2.x
Fixed bug - Delete function from moderate block does not work
Fixed bug - The register globals setting in php.ini must be set to on in order for the article preview function to work
Fixed bug - File upload feature does not work, and just returns this error "Error while uploading the file"

Language Changes:
Added - _MULTIPLE_PAGE_GUIDE in admin.php

Known Bugs:
Image Manager not working in KOIVI. Work around is... Press "Image Manager" -> CHECKED "HTML" tickbox -> add image (from popup) -> UNCHECK "HTML" tickbox
 


Roadmap

No Roadmap publish yet


Current Developer/Maintain By

All future development of AMS will be handle by NovaSmart Technology. However, since the project is volunteered basis, this module only actively develop when PHP programmer in NovaSmart idling.

Visit NovaSmart XOOPS Development website



2008-04-02T06:19:37+02:00 | 20 reads


hi,
I modified end added usefull features to myquiz module.
It will be available in near feature.

ADDED FEATURES

* Getting questions from csv and txt files => so you can easily add more questions

* Time limit for each quiz => You can set a time limit for quizes

* Random question block => that will show one random question from your question database end this one question will be solvable in block

* More effective result page

* More usefull admin page

EDITED PROBLEMS

* Theme problems solved

* Adding image end size problems solved

* Admin page bugs solved

* Language problems solved

* Block bugs solved

* ...and more

:.::.:.:.:.:.:.:.:.:

And if you have any suggestions for this quiz module ,pls write here before I publish it.

..



2011-02-04T06:14:32+01:00 | 20 reads

CKEditor 3.5.1
Supports JQuery & Ajax

This is CKEditor for XOOPS 2.5 & and upgrade for 2.4, in the orginal release the jquery adapter was never implemented which meant it was not possible to use JSON or AJAX to retrieve or set the value of the editor with Javascript.

This is CKEditor 3.5.1 with JQuery Support, You can read here for more information on this.

Simply replace the files in your existing 2.4 series or upload to XOOPS 2.5 and you should have CKEditor 3.5.1 running all fine.

This was developed for formuss who could never find a way of using JQuery with the editor, I would like to congradulate him on his new bubba!!

Download: xoops2.5_ckeditor_3.5.1.zip - 743Kbs



2011-02-13T10:30:00+01:00 | 20 reads

Publisher is one of the best article module for XOOPS. Many websites are using it. However, it still uses the old-fashioned XOOPS comment system, which is not quite user-friendly.

I was working on some projects that uses Publisher, and I decided to integrate Disqus service to Publisher, to give it a modern look.

The modified version is based on latest SVN check-out version (checked out on 2011-2-13) and is quite stable according to my test on XOOPS 2.5.

To use this module, you have to:

1. Register an account on Disqus.com
2. Add a website, and remember the "short name"
3. Open publisher/templates/publisher_footer.htm and replace


var disqus_shortname 'example'


with your own short name.

The result looks like this:



Click to enlarge

Download Page, Please choose "publisher_disqus.zip" from the list.

P.S. the homepage of the website (although it has nothing to do with this integration)



Click to enlarge



2008-04-15T01:20:00+02:00 | 19 reads


ThAdmin
Version 1.0
Author : MusS

ThAdmin is a small module to manage the Xoops Admin area. You must install ("include\cp_functions.php") by transfering it by ftp after module installation.

After the installation, you can see a new administration area:



2008-04-18T01:40:00+02:00 | 19 reads

Advanced flash calculator with conversion tools and changable skins.

Install as a normal module.

Download here

Try it here before you download.



2009-11-02T16:40:00+01:00 | 19 reads

Sinnedesign is pleased to announce that all the Sinnedesign Themes are compatible with new XOOPS-2.4.0.



I have build a new XOOPS 2.4.0 Theme Demo Site to present all my Themes at XOOPS-2.4.0.

XOOPS 2.4 Themes Demo

Have Fun!



2008-11-11T10:00:00+01:00 | 18 reads

To celebrate X'mas, we are glad to announce a new theme for this holiday. It is for open source like Xoops and called Christmas-NS-01. The primary color is dark green and the symbol of pines.



This is a free theme. Please go to our website to download it. We hope that you will enjoy this theme.



2009-02-19T21:50:00+01:00 | 18 reads

We all know the benefits of using friendly url on our websites. This increases the number of visits to our website being better indexed by search engines.

[img width=300]http://www.esxoops.com/image.php?id=32[/img]

The user ElSanto webmaster of GuiaSexo offers the community the improvements made in two modules: News 1.63 and lastestnews 1.72.

The modules were tested on versions 2.0.18.2 and 2.3.2 of XOOPS, without any problem, offering friendly url for the news category, the printable version and create PDF files.

Url examples
/Noticias.cat.3/actualidad.html
/Noticias.item.5/una-iniciativa-para-crear-conciencia.html
/Noticias.print.5/version-imprimible.html
/Noticias.pdf.10/una-iniciativa-para-crear-conciencia.pdf

The instructions for the upgrade/installation, are in the folder SEO/seo.rtf

These are sites that are already operating on the hack:

http://aclomas.org.ar/noticias/ (also include xoModuleRewrite of DuGris)
http://cumbiadeperu.com/modules/news/
http://guiasexo.com.ar/modules/news/

The hack requires that the server has enabled rewriting.

In local monde, uncomment httpd.conf file in the Apache server (#LoadModule rewrite_module modules / mod_rewrite.so). Finally, restart the server for the changes to take effect

Download

News 1.63 SEO version 746 KB
Lastestnews 1.72 SEO version 57 KB



2009-03-23T19:00:00+01:00 | 18 reads

Hello , I present you today my new theme : music
I hope you will like it.



Description:

As usally it's available in english and arabic (visit www.arabxoops.com to download the arabic version)
-Width 1000px
- 3 columns
- Easily editable CSS

to download it, click on the link below
http://maitsco.com/english/modules/my ... nglefile.php?cid=9&lid=16



2010-02-12T23:48:41+01:00 | 18 reads



Danordesign presents a tool for flipping text upside down.

Use the flipped text for fun wherever you want, eg. in forums or in social communities like Facebook, Twitter, etc.

Language files included.

A block included.

Download

Demo




2010-08-31T12:20:00+02:00 | 18 reads

xNews 1.68 Final is out!!!!

and included a new xNews Importer 1.01 beta module to be installed separately.

xNews Importer module is a start to enable importing articles from old news module to xnews and clones and also to import to and from xNews clones.

After some cleaning up and testing it will also import from other xoops article management apps...

With due care it is now possible to have a clone called news as many requested.

*** Important *** Tryout on test server first....

Creating a temporary clone importing old news into it
removing/uninstall/delete old news module once all data is correctly imported and checked.
create a new news clone and import from temporary clone.

*** Important *** Tryout on test server first....

-Removed import button from within xnews and made a xnews importer new module.
-Fixed update function part included by wishcraft to update database with tag field - this would zero data in tags on new release updates.
-Added in database and update topic_weight field for next 1.69 topic sorting
-changed tags name file to xnews_news.php so when cloned also clones will have correct tag file name.
-Merged wishcraft additions in his 1.69 Wrong numbering Next 1.68 Final
-Added dobg to enable disable line break issue with some wysiwyg editors
-moved seo samples in xnews/docs/seo
-tags plugin is in extra folder as always has so if one needs it move into appropriate folder
- Added Index link in admin menu
- Added define("_AM_NW_INDEX", "Index"); in language - admin.php
- Fixed issue with "blocks" blank page
- Modified all xNews words appearing in language files to x"."News (cloner should not change this to clone name)
- Removed txt files from parser these remain unchanged by cloner.
- other minor issues fixed
- Included languages:
-English
-Italian
-French by Burning & kris_fr
-German by Feichtl
-Persian by Voltan
-Spanish by Oswaldo
-Fixed issues a few incompatability issues with XOOPS 2.5.2

Thanks to wishcraft for patches
Thanks to translators
Thanks to mamba for his help with SVN

xNews development has now moved to SourceForge


xNews 1.68 Final can be downloaded here



2008-06-16T21:40:00+02:00 | 17 reads

A new version of this module is now available on my site xoops.foreach.fr for testing. To download this latest version click here

This version contain a new hack to correct an error with the system module and a new cp_functions.php structure (Thanks to D.J.).
All the hack are in extras directory.


ThAdmin
Version 1.1
Author : MusS

ThAdmin is a small module to manage the Xoops Admin area. You must install ("include\cp_functions.php") by transfering it by ftp after module installation.

After the installation, you can see a new administration area:



2010-01-19T13:09:26+01:00 | 17 reads

Multisite Install Guide

If you are looking for an install guide cause a few people have been asking for one, I have written one which applies to previous versions and standard versions.

This code will run with the module installed or not, it covers installation with XOOPS 2.3.x, XOOPS 2.4.x as well as Multiple domain hacks for the mainfile.php modifications as well as other changes to the core functions of the module.

Check the Multisite 1.30 Wiki Entry



2011-01-02T19:49:25+01:00 | 17 reads

Our XOOPS friends from China have developed little cute module for pictures rotation with different effects, which can be then displayed in a block. This module is called "Spotlight".

Currently there are five visual effects included, such as 3D rotation, widescreen, fading, etc.

I have replaced most of the hard-coded Chinese text with language variable, so now it could be translated into other languages. English is available.

Our goal for 2011 is to leverage more XOOPS development from around the world, i.e. ensure that the modules are ready for translations (i.e. no hard-coded local text), and that we work together on improvements. A good example is the recent work on extGallery with XOOPSers from Italy, Iran, and Austria working on a module originally developed in France.

Please join existing development or start forming new teams if you want to improve on some older modules. The Blue Move should continue in 2011 as well

Download: from our SVN





2008-03-26T20:50:00+01:00 | 16 reads

For most users of XOOPS, using the standard XOOPS Text Editor is not something they enjoy, especially when they are beginners. TinyMCE is more user friendly, so this tutorial will show the way to install it as a replacement of the default editor of XOOPS

1) Download the TinyMCE files from here

2) Having done so, copy the content of the folder to your main XOOPS directory.

3) Now we need to enable the TinyMCE editor

BEFORE ANYTHING ELSE, PLEASE BACKUP THE FILE:

/class/xoopsform/formdhtmltextarea.php

To make it work, now simply edit the original file:

class/xoopsform/formdhtmltextarea.php

on around line 74 from this:

    var $htmlEditor = array(); Var $htmlEditor = array ();

to this:

 var $htmlEditor = array('XoopsFormTinymce', '/class/xoopseditor/tinymce/formtinymce.php');


After saving the file, the installation is now successfully completed.

Remember to do the change again, if you update/upgrade XOOPS to a new version.

Please see the original tutorial in Portuguese here



2008-11-28T22:00:00+01:00 | 16 reads

hello, Im glade to offer you "Christmas Theme" a free theme based on xmoments free theme by xoops design.
-Width 1600 px
- 3 columns
- Easily editable CSS

Software required for editing: notepad or any HTML Editor , Photoshop
included PSD, Fonts and the theme
Hope you will like it !

you can download it by clicking here

and below a screenshot



2009-03-21T23:40:00+01:00 | 16 reads


Xquiz is a module for Xoops which lets you create multiple option quizzes at a specified time and attach them to categories in your website, users can take part quizzes and module administrators can then view quiz result statistics afterwards.
* Manage categories and subcategories
* Determine access right permission on categories
* Manage quizzes
* Manage question for each quiz
* Various statistics for the quizzes result details and export to csv file
* Uses Xoops notification system (categories and quizzes)
* Uses Xoops comment system
* Integrated search

Screen Shot



License

Under GPL License.

Languages

Persian
English
Version support

Xoops 2.0.16 or recenter
ImpressCMS 1.0 or recenter
PHP 5

Developer

Mojtaba Jamali

Support

http://www.irxoops.org/modules/newbb/ ... t_id=15028#forumpost15028

Download

http://www.irxoops.org/modules/wfdown ... glefile.php?cid=7&lid=279



2009-03-22T02:30:00+01:00 | 16 reads



Download Multisite for XOOPS 2.3.x, it allows for multiple site to be run from the one xoops, many xoops - One Code -Many Domain Bases.

Download now xoops2.3_multisite_1.17.2.zip (163 Kb).

With this module you are capable of managing multiple domains for your website there are many core hacks with this module but it makes managing your site dynamically and easily for your environment.

It is modelled off the System module, so you can easily expand it and make structural changes. There is a forum for this module should you wish to look at the hacks to get it up and running Forum on Multisite Module



2008-04-18T00:50:00+02:00 | 15 reads

Rss center Version:0.9

-Fix Arabic character.
-Arabic language translated.
-Change templates files to rtl.

If you need only Arabic files, you can download from http://linux2.ohwada.net

You need to download Happy Linux Framework. Here
Download Rssc v0.9. Here

demo
my website



2008-06-01T19:10:00+02:00 | 15 reads

Well as you may have noticed I have been doing some examples in the wiki for .htaccess this is for primarily SEO Clean Paths for xoops, the modules I have chosen for the example in sharing this code is code for CBB (1.5, 2.2, 3.x), News 1.4+ (May work on earlier), myalbum-P, SmartSection 2.2, CatAds & the userinfo.php page.

What I have been doing over the last few weeks is testing various SEO paths to see what brings ultimate traffic, remember in changing your websites URL you may get sandboxed for a few months as the search engine detects a sitewide change.

Search Engine Optimization is an important step in making friendly paths for both Search Engines and the End Users, you normal for example use a dash (-) not an underscore (_) to SEO as this is detected and more compatible with a search engine algoritms, it is also helpful for natural language query.

You may also find various other SEO improvements you can make to stop keyword stuffing (Example Titles to Keywords) and so on my wiki profile page (these are deep in the forums).

Some example of some friendly SEO paths I have generated are as so:

Content 1.x: http://www.extraterrestrialembassy.co ... ent/Introduction-to-ETE/1
News 1.4: http://www.extraterrestrialembassy.co ... This-Website/SEO-Paths/14
MyAlbum-P 1.5: http://www.extraterrestrialembassy.com/gallery/Ancient-History/3,0,10,0,1,titleA
wflinks: http://www.extraterrestrialembassy.co ... links/Alien-Information/2,0,0,0,dateA
CBB 3.08: http://www.extraterrestrialembassy.co ... t-for-the-Space-Station/8,46,65,0,0,0,0
userinfo.php http://www.extraterrestrialembassy.com/user/wishcraft/1

Remember these SEO paths will increase traffic and delievery into your search engines, you must use a 301 Permanently Moved Redirection as this will remove the old link from the search engine and replace it with the new one.

The general rule for an SEO path is to contain something to do with the title, area of the site and category, remember to include at least the item identification number if possible for legal reasons.

SEO is a big step in improving the cleanliness of your site, as well as your image, we will be doing this here at xoops.org in the not to distant future.



2009-11-12T17:30:00+01:00 | 15 reads

Passing php arrays to javascript arrays. This is an advanced tutorial designed for people who are comfortable using jquery, ajax and php. It will teach you how to retrieve a php array using jquery, convert it to a javascript array then manipulate it.



2008-07-13T11:30:00+02:00 | 14 reads

Recently, a XOOPS user who runs and maintain an Army Veterans website asked for a module to remember their Killed in Action, as well as former friends who they served with and who have passed away.

This XOOPS user asked for some modifications on the Birthday module so that on the anniversary of their passing, a block on the main page shows some details on that soldier and a photograph.

I've agreed to do the modifications and here is the new version.

Before I give you a list of all the modifications, the module's code was completely rewritten so it requires PTP 5 and is NOT compatible at all with its previous versions (you've been warned).

Here is the list of changes brings to the module :
- Addition of a module's administration where you can show, edit and add birthdays
- You can add a description to each birthday
- You can select the text editor to use
- You can upload a picture to each birthday (pictures are automatically resized)
- Birthdays can be created for persons who are not users of your site
- Integration of the Xoops comments system
- Integrated to the Xoops search
- You can see a user's birthday (there is a specific page for this)
- You can see a list of all the birthdays and users.
- Now the module completely uses Smarty
- You can prohibit users to fill out their form (this is useful in case where you use the module to present other persons than those who use your site)

You can use it to wish the Happy Birthday to your users, but you can also use it for a Hall of Fame or Business Directory.

Download
You can download the module here :
http://xoops.instant-zero.com/modules ... glefile.php?cid=14&lid=36

Translations
The module is available in French and English.
Any other translation is welcome.

Best regards,
Instant Zero



2009-07-03T18:10:00+02:00 | 14 reads



Congratulations to Mowaffaq Ali, the Admin of ArabXOOPS, who has been recently interviewed by OQZ2 Blog Website