Jun 27 2009 Written by Bernard Gilly
AlphaToolbar 1.0.8 released
Saturday, 27 June 2009 08:24
I'm pleased to announce the immediate availability of AlphaToolbar 1.0.8 for download.
This release add a new button to hear this text. The voice feature is created by http://vozme.com.

 
Jun 24 2009 Written by Bernard Gilly
AphaRecommend 1.0.4 released
Wednesday, 24 June 2009 06:43
I'm pleased to announce the immediate availability of AlphaRecommend 1.0.4 for download.
This update add a token in form and fix the IE internal error if reCaptcha enabled.
Include 3 new language files: Brazilian, italian, German

 
Jun 23 2009 Written by Bernard Gilly
AlphaRegistration 2.0.5 released
Tuesday, 23 June 2009 08:23
I'm pleased to announce the immediate availability of AlphaRegistration 2.0.5 for download.
This update add a new field for birthdate related to AlphaUserPoints and fix the IE internal error if reCaptcha enabled.

 
Jun 22 2009 Written by Bernard Gilly
AlphaUserPoints 1.5.0 released
Monday, 22 June 2009 08:12

I'm pleased to announce the immediate availability of AlphaUserPoints version 1.5.0 for download.
This release is a major version contains 14 bug fixes, a partial reorganization of the code for frontend with seperate controllers and several new features. This new version now support huge site members on synchronization and recalculation of points. Now, during the installation of AlphaUserPoints, an icon is added to the general control panel of joomla (mod_aupadmin). This icon allows you to quickly launch AlphaUserPoints and display also a warning if there are pending approvals. For the release of this new version, I have created a new logo. I hope you enjoy it.

Also, I want to say a big thank you to Sami Haaranen - joomlaportal.fi - for the many hours spent testing and translate this component.


It has been 2 weeks since AlphaUserPoints v1.4.0 was released on June 04, 2009. The summer holidays approaching, I wanted to take a little advance...

Read more...
 
Jun 21 2009 Written by Bernard Gilly
How to integrate Joomla framework?
Sunday, 21 June 2009 07:21

How to integrate Joomla framework in external script?

This question has often been asked for incorporating new rules in AlphaUserPoints with external scripts to Joomla!.
The method is quite simple and I'll give you the details here.

Edit the script you wish to modify and put the following at the beginning of the file:

<?php
define( '_JEXEC', 1 );

// real path depending on the type of server
// change the number of returns/level needed in your path relative to the position of your script in your directory
if (stristr( $_SERVER['SERVER_SOFTWARE'], 'win32' )) {
    define( 'JPATH_BASE', realpath(dirname(__FILE__).'\..\..\..\..' ));
} else define( 'JPATH_BASE', realpath(dirname(__FILE__).'/../../../..' ));

define( 'DS', DIRECTORY_SEPARATOR );

// loading framework of Joomla!
require_once ( JPATH_BASE.DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE.DS.'includes'.DS.'framework.php' );
$mainframe =& JFactory::getApplication('site');
$mainframe->initialise();

// if need a specific language component, you can load it here

jimport( 'joomla.plugin.plugin' );

JPlugin::loadLanguage( 'com_xxxxxxxxx' );

// original code here or your code continue here ...
?>

 
<< Start < Prev 1 2 3 4 5 6 7 Next > End >>