CMSMadeSimple is fully compatible with OutSite-In.
In order to take your CMS Made Simple web site on CD or simply offline, we recommend you to:
Modify the "\config.php" file by editing your offline files directory:
Find the line starting with:
$config['db_hostname']=...
and change it to:
$config['db_hostname'] = 'localhost';
Find the line starting with:
$config['root_url']=...
and change it to:
$config['root_url'] ='http://'.$_SERVER["HTTP_HOST"];
Find the line starting with:
$config['root_path'] =...
and change it to:
$config['root_path'] =$_SERVER['DOCUMENT_ROOT'];
Find the line starting with:
$config['previews_path'] =...
and change it to:
$config['previews_path'] = $_SERVER['DOCUMENT_ROOT'].'/tmp/cache';
Find the line starting with:
$config['uploads_url'] =...
and change it to:
$config['uploads_url'] = 'http://'.$_SERVER["HTTP_HOST"].'/uploads';
Find the line starting with:
$config['image_uploads_path'] =...
and change it to:
$config['image_uploads_path'] = $_SERVER['DOCUMENT_ROOT'].'/uploads/images';
Find the line starting with:
$config['image_uploads_url'] =...
and change it to:
$config['image_uploads_url'] = 'http://'.$_SERVER["HTTP_HOST"].'/uploads/images';
(testes with CMS Made Simple 1.0.6)