Multiple Sub-domain Access to One JR Database?
Using Jamroom
We do this on our demo system, but you need to understand how it works and what the shortcomings are - it's not going to be "easy" unless you set it up right:
1) You should have 1 "master install" in it's own directory - i.e.
public_html/master
This is where you actually do the work i.e. running the marketplace and keeping things up to date
2) you place other installs in their own directories - i.e.
public_html/install1
HOWEVER - the "modules" and "skins" directories need to be relative symbolic links that point to the master i.e.
modules -> ../master/modules
skins -> ../master/skins
3) You add the skin you want to use on the site to the data/config/config.php file - i.e.
$_conf['jrCore_active_skin'] = 'jrElastic2';
That's how we do it here. Note that this will NOT work on our hosting - you'll need to be self hosting for this to work.