ODude Profile Change Log
Updated to ODude Profile 2.9
Released only for Joomla 3.0
Updated to ODude Profile 2.8
Features & Bug fixes over v2.7
- Now admin can create/manage offers for the 3rd party affiliate.
Eg. 500 points for 100 days @ US$ 10 [Christmas Offer] - More tighten point system with integration option for 3rd party developer.
- Free Signup BONUS point with expiry date option for new user.
- New member can enroll into the offer and that offer will be only available for selected members.
- After he/she purchased offer, same offer cannot be purchased again.
How to update from ODude Profile 2.7.x to 2.8
There is no automatic upload yet. Please manually update.
- Extract zip file into computer desktop.
- overwrite files of site folder into site_root/component/com_odudeprofile
- overwrite files of admin folder into site_root/administrator/component/com_odudeprofile
- copy com_odudeprofile.xml , config.xml and all other remaining files into site_root/administrator/component/com_odudeprofile
- Open Parameters at ODude Profile and click on save at least once.
- Execute following SQL statement from phpmyadmin
Note: jos_ table name may be different. Pleaes repalce table prefix with currently you are using.
Alter table jos_odude_profile_setting
Added two column
`bonuspt` int(10) NOT NULL,
`bonusdays` int(3) NOT NULL,
CREATE TABLE IF NOT EXISTS `jos_odude_profile_enroll` (
`fid` int(10) NOT NULL,
`email` varchar(150) NOT NULL,
`samaya` date NOT NULL,
`enrolled` int(1) NOT NULL
) ENGINE=MyISAM;
CREATE TABLE IF NOT EXISTS `jos_odude_profile_offer` (
`fid` int(10) NOT NULL,
`point` int(10) NOT NULL,
`days` int(3) NOT NULL,
`cost` int(4) NOT NULL,
`offer` text NOT NULL,
`member` varchar(100) NOT NULL,
PRIMARY KEY (`fid`)
) ENGINE=MyISAM;


