[quote=Tieske;421767]1st: This Module is just what I was looking for. Thanks Gerome.

2nd: Implementing the module looks simple, but it doesn't work for me yet:


Quote Originally Posted by Gerome View Post
Hi Jvoce,

You still need to add that at the begining of your 'configure.php':
PHP Code:
include_once('includes/config_sites/sites_switch.php'); 
QUOTE]



After making (and solving) the same mistake as above, now I'm facing the following problem:

The Admin still works fine, but opening the site gives the nddbc.html page (antiekbeslag.nl).

The database seems to work/connect normal...



It wasn't a fresh install, but I carefully merged the few files I changed.
(super orders in includes/classes/order.php;
includes/modules/product_listing.php:

$listing_split = new splitPageResults($listing_sql, $max_results, 'p.products_id', 'page');

Changed in:

$listing_split = new splitPageResults(cat_filter($listing_sql), $max_results, 'p.products_id', 'page');

Instead of:

$listing_split = new splitPageResults(cat_filter($listing_sql), MAX_DISPLAY_PRODUCTS_LISTING, 'p.products_id', 'page');

(But both ways don't work)
)



Is there a simple mistake I'm overlooking? Does anybody have a clue what's obvious I did wrong?

Thanks in advance.
You have to create a file includes/config_sites/antiekbeslag.nl_config.php
This file has to contain all the different setting for your site;
For exemple, you could have:
PHP Code:
$template_dir 'classic'//Choose your template for this site
define('SITE_NAME','medea'); //Specify the name of your site

define('ENABLE_SSL''false'); //change some random config for exemple, here, remove the SLL for this site... 
Hope it helps !