Hi oz
You can execute following sql queries (e.g. in phpMyAdmin):
CREATE TABLE `#_opensim_moneybalances` (
`user` varchar(128) NOT NULL,
`balance` int(10) NOT NULL,
`status` tinyint(2) DEFAULT NULL,
PRIMARY KEY (`user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `#_opensim_moneytransactions` (
`UUID` varchar(36) NOT NULL,
`sender` varchar(128) NOT NULL,
`receiver` varchar(128) NOT NULL,
`amount` int(10) NOT NULL,
`objectUUID` varchar(36) DEFAULT NULL,
`regionHandle` varchar(36) NOT NULL,
`type` int(10) NOT NULL,
`time` int(11) NOT NULL,
`secure` varchar(36) NOT NULL,
`status` tinyint(1) NOT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`UUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Of course replace #_ with the correct prefix of your Joomla installation.
Is the table '#_opensim_moneysettings' still there? jOpenSim needs at least the row 'bankerUID' to work. All other rows (groupCharge,uploadCharge,groupMinDividend,startBalance) are optional.
But: the module will only start up in DEMO mode if there is no value for jOpenSimLicense in [Economy] of your OpenSim.ini ... even if you would e.g. provide an invalid key, it will rather disable itself than fall into DEMO mode (and scew up the database tables with it).
Greetz
FoTo50