Mar
08
2010
Written by Bernard Gilly
|
AlphaRecommend 2.0.0 Pro |
|
|
|
Monday, 08 March 2010 13:59 |
|
I'm pleased to announce the immediate availability of AlphaRecommend 2.0.0 Pro. This new commercial version add more features at the free version 1.0.5.
No equivalent product exists today to Joomla!
- Bring traffic to your home page ("Recommend This Site") - Bring traffic to specific pages ("Email-This-Page") - Increase member registrations by existing members when they refer friends who sign-up - Send reward gift by e-mail - Reward option of only providing gifts to members that invited a certain number of friends - Admin can send reminder emails to those who have not yet joined at specific intervals - Prevent fake e-mail - Manual import of friends e-mail - Tracking click on links sent in e-mail - Trackin new registered users - Tracking of friends who then invite their friends - Visitors can add a custom message - OpenInviter Supported - Plaxo service supported - Spam prevention (reCaptcha integrated) - Statistics in control panel - anti-flood - Plain-text or html e-mail optional - Export e-mails collected - Joomla! friendly admin interface - All placeholders available for customized Invitation messages - Set email sending delay time - Limit number of e-mails sent by day - Limit total number of e-mails to sending - Send a thank you e-mail to the user which invites - Purge all invites - Easily adding more language for frontend
- No copyright notice or link to alphaplug.com on frontend
Read more on this new product... |
Oct
09
2009
Written by Andrew Birrell
|
RateYourCourse New Zealand |
|
Friday, 09 October 2009 08:37 |
Great integration of AlphaUserPoints and good way to use it!
By simply being a member of our site and Rating New Zealand Golf Courses you can earn valuable points that can be converted into Vouchers to purchase Golfing Equipment and Video Lessons from our Online Shop.
http://www.rateyourcourse.co.za |
Sep
21
2009
Written by Bernard Gilly
|
SmartViper Website Analyze |
|
Monday, 21 September 2009 20:09 |
SmartViper is a web service that collects and analyzes any data about domains and keywords they are optimized for.
Currently SmartViper uses about 20 open API sources and make its own research about the most popular domains and keywords. its store 81,242,095 records in its database and continue to grow. Its goal is to help webmasters check their competitors and understand why their ranks are so high. Besides on the basis of some conclusions its create useful summary tables for webmasters.
Alphaplug.com SmartViper SEO score

|
Jun
21
2009
Written by Bernard Gilly
|
How to integrate Joomla framework? |
|
Sunday, 21 June 2009 08: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 ...
?>
|
|
|
|
|
|