27
Download the latest multixoops
http://bin.chronolabs.org.au/multi-xoops-2.3.3.4-RC.zip 2Mbs..
There are some changes in the database you can install or run this SQL Script make sure you put the prefix in for your database.
In this version the domain control has been seperated from the config table and placed in it own group, based on the config table for minor structural changes.
The collaboration part is still there with the sitemap.php and backend.php now using the
newfeeds table so modules can collaborate and it isn't only the news that is found on the backend.
The policy ('Access policies') which is basically a firewall that can be set is implemented, this is a modified version of /kernel/policy.php
Here is that sql
#
# Table structure for table `domains`
#
CREATE TABLE `prefix_domain` (
`dom_id` INT(10) unsigned NOT NULL AUTO_INCREMENT,
`dom_pid` INT(10) unsigned NOT NULL DEFAULT '0',
`dom_modid` smallint(5) unsigned NOT NULL DEFAULT '0',
`dom_catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`dom_name` varchar(25) NOT NULL DEFAULT '',
`dom_title` varchar(255) NOT NULL DEFAULT '',
`dom_value` text,
`dom_desc` varchar(255) NOT NULL DEFAULT '',
`dom_formtype` varchar(15) NOT NULL DEFAULT '',
`dom_valuetype` varchar(10) NOT NULL DEFAULT '',
`dom_order` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`dom_id`),
KEY `dom_mod_cat_id` (`dom_modid`,`dom_catid`)
) ENGINE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table `domainscategory`
#
CREATE TABLE `prefix_domaincategory` (
`domcat_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`domcat_name` varchar(255) NOT NULL DEFAULT '',
`domcat_order` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`domcat_id`)
) ENGINE=MyISAM;
insert into `prefix_domaincategory` values (1,'XOOPS_DOMAIN',1);
# --------------------------------------------------------
#
# Table structure for table `domainsoption`
#
CREATE TABLE `prefix_domainoption` (
`domop_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`domop_name` varchar(255) NOT NULL DEFAULT '',
`domop_value` varchar(255) NOT NULL DEFAULT '',
`dom_id` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`domop_id`),
KEY `dom_id` (`dom_id`)
) ENGINE=MyISAM;