FREE Design Sd-048-Smart-Blue

Sinnedesign is happy to present the new FREE Color Variant with the name Theme Sd-048-Smart-Blue.

Resized Image


Here can you find the XOOPS Theme Demo and here is the free Download Xoops Theme Sd-048-Smart-Blue.

I hope you like the Theme.
Read more... | 2 comments

XOOPS France has a new Website

Resized Image

The team Xoops-France just updated their Website, and it looks fantastic with its new theme!!!

In addition to the new theme, you'll find a new repository of updated modules and a new module for links to sites built with XOOPS.

The Forum was also slightly improved and redesigned. You can see some ajax effects on the home page but also in the module links that make the site more dynamic and easier to use.

Additional updates are done in documentation and other areas in order to maximize the support for new users of XOOPS.

Congratulations to the whole XOOPS France Team, and in particular to Mage and Burning for the module repository (yes, we want it here too ), to Kraven, Muss and Cobalt for the new theme, and to everybody else for making XOOPS France such a pleasant site!

As next, we should expect a new design of XOOPS-Germany, and of the main XOOPS Website here.

We are very excited about all the new changes, updates, and new XOOPS developments around the world!!! It's good to see that so many people believe in XOOPS, and want to contribute to it, and make it better!

If you want to share any XOOPS news from your country/region, please let us know. We want to learn about it....
Read more... | 13 comments

Tutorial- Javascript+Jquery. A simple Beginning

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:
$tst "my name is wally";
?>

alert ("echo $tst?>");

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 calldiv>

Now create another file called myserv.php and place this code inside:
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 :)
Read more... | 3 comments

Biomudas - New website in XOOPS from Brazil

Hello community

I'm proud to present you a new XOOPS website from Brazil.

http://www.biomudas.com.br

Resized Image


The modules are: mastop publish, mastop go2, liaise, news and smartsection.

I hope you like it.

Let's spread XOOPS all around!
Read more... | 2 comments

XOOPS Tad Modules converted into English

After publishing the TadGallery 1.3 English Version, Tad converted his other modules into English as well. To download them, click on individual name:

Resized Image
TadNews

Resized Image
TadUploader

Resized Image
TadFAQ

Resized Image
TadForm

Resized Image
TadPlayer

Resized Image
TadChatBox

We would like to thank Tad for his conversion, and we hope that we'll see more XOOPS modules from around the world made "international", i.e. without any "hard-coded" local text.
Read more... | 10 comments

NEW Free Theme Sd-050-Streaks

I'm happy to present my new FREE XOOPS - Theme with the name Sd-050-Streaks Design.

Resized Image


Here can you find the XOOPS Theme Demo and here is the free Download Xoops Theme Sd-050-Streaks.

Have Fun with the new Theme.
Comments?

Designburo.nl is proud to announce another XOOPS website

We have had a softwareproduct for some time now and the website for this product dates back from 2003. It needed an overhaul.

Resized Image


We've used Alexander Galochkin theme "ixt01110" and made some modifications (like niftyborders, columns, etc.).
Since the site is running on XOOPS 2.4.0 beta (yeah, yeah.. I know.. ;) not all modules we wanted worked, so we have used the following modules:
- Content
- Cumulus
- XOOPSTAGS
- News
- wfdownloads
- xforum
- xsitemap (thnx! nice module!)

Please visit the EasyTCPtransfer website.
Read more... | 1 comment

Free webhosting theme

Free xoops hosting theme. got the header from phpnuke themes.

Resized Image


to download the theme please click below:

Web hosting theme Download
Read more... | 2 comments

XOOPS TadGallery 1.3 English Version

Resized Image

Hong Kai Wu, receipient of our XOOPS Innovator Award in January 2009, has been creating some very cool modules. Unfortunately, all of them are in Chinese, therefore limited to only this audience.

I was happy to learn that his TadGallery module is now in English.

However, some of the icons were still in Chinese, so I've modified them.

TadGallery is a great module with some very cool and innovative features (e.g. 3D Gallery show, blocks with slides shows, etc), and I hope, you'll enjoy it as much I do.

Main Features:

* Automatically organizes your photos: after you upload photos, it will automatically read photo exif information to find photo's date and then it will automatically create a folder with that date (for example: all photos taken on April 2, 2008 will automatically be placed in / upload/tadgallery/20080402 directory).
* Variety of different looks for Thumbnail
* Automatic recording of the photo exif information
* Blocks with variety of effects
* Support PicLens browsing tools
* Show map mode

Download: click here
Read more... | 15 comments

New xoops module Xsitemap by Urbanspaceman

Hello!

I'm happy to announce the release of beta verion of my first 'from scratch' module XSITEMAP.

It 'was written and tested only on version 2.3.x of XOOPS, there are still adjustments to be done. (see changelog at the bottom of about page)

I ask you kindly to try it and if you also want to do the translation. Publish the translations here on the forum.

If you have failures or encounter some buga, write here on the forum (be good, is my first module).

In the languages folder there are two folders, Italian and English. files within the folder English are still to be translated (are in Italian now).

The module came with 9 plugin but is very simple made your own plugin.

Download XSITEMAP from HERE

Changelog:
RELEASE:
- Released the first version of the module XSITEMAP BETA.

22/08/2009

TO DO:
- Check the XML functionality and to verify the compatibility with Google Sitemaps.
- With some modules do not see the sublinks.
Read more... | 17 comments
« 1 ... 139 140 141 (142) 143 144 145 ... 553 »


Login

Who's Online

203 user(s) are online (38 user(s) are browsing XOOPS News)


Members: 0


Guests: 203


more...

Donat-O-Meter

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

Latest GitHub Commits

Archives

News archives