Hi Vasileff
The module requires the table "region" to be present, same as the component needs also the table "Presence" there.
If you e.g. use the architecture "Standalone", "StandaloneHypergrid" or "SimianGrid" (this is set as the last part in your OpenSim.ini), there are the regions blurred out for mysql by default:
[GridService]
...
StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
...
The best way would be for "Standalone" and "StandaloneHypergrid" to change this value in the /config-include/StandaloneCommon.ini (this one is included by those 2 by default as last one) into:
StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
For "SimianGrid" you would need to change this directly in /config-include/SimianGrid.ini
Also, to get the user status working with jOpenSim, the Presence Service needs to be changed to MySQL. In Grid-Mode, it is on by default, but when including any Standalone architecture, this is unfortunately missing by default. To enable it, you can add a new section in your StandalineCommon.ini:
[PresenceService]
LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
StorageProvider = "OpenSim.Data.MySQL.dll"
... after a restart, you should see the tables "region" and "Presence" turning up.
Hope this helps
Greetz
FoTo50