Well it's quite confusing some times, but basically osclass has:
- multisite
- subdomain split installation (by user, category, country, region or city).
For multisite, it is possible to define also other sites related to this installation and we've been restoring one table that was missing for this in 8.0.3
CREATE TABLE %st_site (
s_site VARCHAR(255) NOT NULL,
s_site_mapping VARCHAR(255) NULL,
fk_i_user_id INT(10) UNSIGNED NULL,
s_db_name VARCHAR(64) NULL,
s_db_host VARCHAR(255) NULL,
s_db_user VARCHAR(64) NULL,
s_db_password VARCHAR(255) NULL,
s_upload_path VARCHAR(255) NULL,
dt_date DATETIME NULL,
PRIMARY KEY (s_site)
) ENGINE=InnoDB DEFAULT CHARACTER SET 'UTF8' COLLATE 'UTF8_GENERAL_CI';
Honestly I was never testing this, but it sounds like it could be great feature
![Wink ;)](https://forums.osclasspoint.com/Smileys/osclass-emoji/wink.gif)
I am also not sure if it is expected that this table will be on DB_TABLE_PREFIX or is above that.
Only info I found:
Your config.php file the database configuration where the configuration for the Osclass sites are saved.
- It matches the url is trying to load with one of the ones that are in the database
- The rest of it woks as a standalone Osclass. It doesn't have a super admin to control all the Osclass yet.