# MODx Database Script for New/Upgrade Installations # MODx was created By Raymond Irving - Nov 2004 # # Each sql command is separated by double lines \n\n CREATE TABLE IF NOT EXISTS `{PREFIX}active_users` ( `internalKey` int(9) NOT NULL default '0', `username` varchar(50) NOT NULL default '', `lasthit` int(20) NOT NULL default '0', `id` int(10) default NULL, `action` varchar(10) NOT NULL default '', `ip` varchar(20) NOT NULL default '', PRIMARY KEY (`internalKey`) ) TYPE=MyISAM COMMENT='Contains data about active users.'; CREATE TABLE IF NOT EXISTS `{PREFIX}categories` ( `id` integer NOT NULL AUTO_INCREMENT, `category` varchar(45) NOT NULL DEFAULT '', PRIMARY KEY(`id`) ) Type=MyISAM COMMENT='Categories to be used snippets,tv,chunks, etc'; CREATE TABLE IF NOT EXISTS `{PREFIX}document_groups` ( `id` int(10) NOT NULL auto_increment, `document_group` int(10) NOT NULL default '0', `document` int(10) NOT NULL default '0', PRIMARY KEY (`id`), KEY `document` (document), KEY `document_group` (document_group) ) TYPE=MyISAM COMMENT='Contains data used for access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}documentgroup_names` ( `id` int(10) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `private_memgroup` tinyint DEFAULT 0 COMMENT 'determine whether the document group is private to manager users', `private_webgroup` tinyint DEFAULT 0 COMMENT 'determines whether the document is private to web users', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) TYPE=MyISAM COMMENT='Contains data used for access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}event_log` ( `id` integer NOT NULL AUTO_INCREMENT, `eventid` integer DEFAULT 0, `createdon` integer NOT NULL DEFAULT 0, `type` tinyint NOT NULL DEFAULT 1 COMMENT '1- information, 2 - warning, 3- error', `user` integer NOT NULL DEFAULT 0 COMMENT 'link to user table', `usertype` tinyint NOT NULL DEFAULT 0 COMMENT '0 - manager, 1 - web', `source` varchar(50) NOT NULL DEFAULT '', `description` text, PRIMARY KEY(`id`), KEY `user`(`user`) ) TYPE=MYISAM COMMENT='Stores event and error logs'; CREATE TABLE IF NOT EXISTS `{PREFIX}keyword_xref` ( `content_id` int(11) NOT NULL default '0', `keyword_id` int(11) NOT NULL default '0', KEY `content_id` (`content_id`), KEY `keyword_id` (`keyword_id`) ) TYPE=MyISAM COMMENT='Cross reference bewteen keywords and content'; CREATE TABLE IF NOT EXISTS `{PREFIX}manager_log` ( `id` int(10) NOT NULL auto_increment, `timestamp` int(20) NOT NULL default '0', `internalKey` int(10) NOT NULL default '0', `username` varchar(255) default NULL, `action` int(10) NOT NULL default '0', `itemid` varchar(10) default '0', `itemname` varchar(255) default NULL, `message` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains a record of user interaction.'; CREATE TABLE IF NOT EXISTS `{PREFIX}manager_users` ( `id` int(10) NOT NULL auto_increment, `username` varchar(100) NOT NULL default '', `password` varchar(100) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) TYPE=MyISAM COMMENT='Contains login information for backend users.'; CREATE TABLE IF NOT EXISTS `{PREFIX}member_groups` ( `id` int(10) NOT NULL auto_increment, `user_group` int(10) NOT NULL default '0', `member` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains data used for access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}membergroup_access` ( `id` int(10) NOT NULL auto_increment, `membergroup` int(10) NOT NULL default '0', `documentgroup` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains data used for access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}membergroup_names` ( `id` int(10) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) TYPE=MyISAM COMMENT='Contains data used for access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_content` ( `id` int(10) NOT NULL auto_increment, `type` varchar(20) NOT NULL default 'document', `contentType` varchar(50) NOT NULL default 'text/html', `pagetitle` varchar(255) NOT NULL default '', `longtitle` varchar(255) NOT NULL default '', `description` varchar(255) NOT NULL default '', `alias` varchar(255) default '', `link_attributes` varchar(255) NOT NULL default '', `published` int(1) NOT NULL default '0', `pub_date` int(20) NOT NULL default '0', `unpub_date` int(20) NOT NULL default '0', `parent` int(10) NOT NULL default '0', `isfolder` int(1) NOT NULL default '0', `introtext` text COMMENT 'Used to provide quick summary of the document', `content` mediumtext, `richtext` tinyint(1) NOT NULL default '1', `template` int(10) NOT NULL default '1', `menuindex` int(10) NOT NULL default '0', `searchable` int(1) NOT NULL default '1', `cacheable` int(1) NOT NULL default '1', `createdby` int(10) NOT NULL default '0', `createdon` int(20) NOT NULL default '0', `editedby` int(10) NOT NULL default '0', `editedon` int(20) NOT NULL default '0', `deleted` int(1) NOT NULL default '0', `deletedon` int(20) NOT NULL default '0', `deletedby` int(10) NOT NULL default '0', `publishedon` int(20) NOT NULL default '0', `publishedby` int(10) NOT NULL default '0', `menutitle` varchar(255) NOT NULL DEFAULT '' COMMENT 'Menu title', `donthit` tinyint(1) NOT NULL default '0' COMMENT 'Disable page hit count', `haskeywords` tinyint(1) NOT NULL default '0' COMMENT 'has links to keywords', `hasmetatags` tinyint(1) NOT NULL default '0' COMMENT 'has links to meta tags', `privateweb` tinyint(1) NOT NULL default '0' COMMENT 'Private web document', `privatemgr` tinyint(1) NOT NULL default '0' COMMENT 'Private manager document', `content_dispo` tinyint(1) NOT NULL default '0' COMMENT '0-inline, 1-attachment', `hidemenu` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Hide document from menu', PRIMARY KEY (`id`), KEY `id` (`id`), KEY `parent` (`parent`), KEY aliasidx (alias), FULLTEXT KEY `content_ft_idx` (`pagetitle`,`description`,`content`) ) TYPE=MyISAM COMMENT='Contains the site document tree.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_content_metatags` ( `content_id` int(11) NOT NULL default '0', `metatag_id` int(11) NOT NULL default '0', KEY `content_id` (`content_id`), KEY `metatag_id` (`metatag_id`) ) TYPE=MyISAM COMMENT='Reference table between meta tags and content'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_htmlsnippets` ( `id` int(10) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `description` varchar(255) NOT NULL default 'Chunk', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `cache_type` tinyint(1) NOT NULL default '0' COMMENT 'Cache option', `snippet` mediumtext, `locked` tinyint(4) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains the site chunks.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_keywords` ( `id` int(11) NOT NULL auto_increment, `keyword` varchar(40) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `keyword` (`keyword`) ) TYPE=MyISAM COMMENT='Site keyword list'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_metatags` ( `id` integer NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `tag` varchar(50) NOT NULL DEFAULT '' COMMENT 'tag name', `tagvalue` varchar(255) NOT NULL DEFAULT '', `http_equiv` tinyint NOT NULL DEFAULT 0 COMMENT '1 - use http_equiv tag style, 0 - use name', PRIMARY KEY(`id`) ) TYPE=MYISAM COMMENT='Site meta tags'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_modules` ( `id` integer NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '0', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `disabled` tinyint NOT NULL DEFAULT '0', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `wrap` tinyint NOT NULL DEFAULT '0', `locked` tinyint NOT NULL default '0', `icon` varchar(255) NOT NULL DEFAULT '' COMMENT 'url to module icon', `enable_resource` tinyint NOT NULL DEFAULT '0' COMMENT 'enables the resource file feature', `resourcefile` varchar(255) NOT NULL DEFAULT '' COMMENT 'a physical link to a resource file', `createdon` integer NOT NULL DEFAULT '0', `editedon` integer NOT NULL DEFAULT '0', `guid` varchar(32) NOT NULL DEFAULT '' COMMENT 'globally unique identifier', `enable_sharedparams` tinyint NOT NULL DEFAULT '0', `properties` text, `modulecode` mediumtext COMMENT 'module boot up code', PRIMARY KEY(`id`) ) TYPE=MyISAM COMMENT='Site Modules'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_module_depobj` ( `id` integer NOT NULL AUTO_INCREMENT, `module` integer NOT NULL DEFAULT 0, `resource` integer NOT NULL DEFAULT 0, `type` integer(2) NOT NULL DEFAULT 0 COMMENT '10-chunks, 20-docs, 30-plugins, 40-snips, 50-tpls, 60-tvs', PRIMARY KEY(`id`) ) TYPE=MYISAM COMMENT='Module Dependencies'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_module_access` ( `id` integer UNSIGNED NOT NULL AUTO_INCREMENT, `module` integer NOT NULL DEFAULT 0, `usergroup` integer NOT NULL DEFAULT 0, PRIMARY KEY(`id`) ) TYPE=MYISAM COMMENT='Module users group access permission'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_plugins` ( `id` int(10) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `description` varchar(255) NOT NULL default 'Plugin', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `cache_type` tinyint(1) NOT NULL default '0' COMMENT 'Cache option', `plugincode` mediumtext, `locked` tinyint(4) NOT NULL default '0', `properties` text COMMENT 'Default Properties', `disabled` tinyint NOT NULL DEFAULT '0' COMMENT 'Disables the plugin', `moduleguid` varchar(32) NOT NULL default '' COMMENT 'GUID of module from which to import shared parameters', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains the site plugins.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_plugin_events` ( `pluginid` INT(10) NOT NULL, `evtid` INT(10) NOT NULL default 0, `priority` INT(10) NOT NULL default 0 COMMENT 'determines plugin run order' ) TYPE=MyISAM COMMENT='Links to system events'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_snippets` ( `id` int(10) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `description` varchar(255) NOT NULL default 'Snippet', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `cache_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Cache option', `snippet` mediumtext, `locked` tinyint(4) NOT NULL default '0', `properties` text COMMENT 'Default Properties', `moduleguid` varchar(32) NOT NULL default '' COMMENT 'GUID of module from which to import shared parameters', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains the site snippets.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_templates` ( `id` int(10) NOT NULL auto_increment, `templatename` varchar(50) NOT NULL default '', `description` varchar(255) NOT NULL default 'Template', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `icon` varchar(255) NOT NULL default '' COMMENT 'url to icon file', `template_type` integer NOT NULL DEFAULT '0' COMMENT '0-page,1-content', `content` mediumtext, `locked` tinyint(4) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains the site templates.'; CREATE TABLE IF NOT EXISTS `{PREFIX}system_eventnames` ( `id` INT(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL default '', `service` tinyint NOT NULL default '0' COMMENT 'System Service number', `groupname` varchar(20) NOT NULL default '', PRIMARY KEY(`id`) ) TYPE=MYISAM COMMENT='System Event Names.'; CREATE TABLE IF NOT EXISTS `{PREFIX}system_settings` ( `setting_name` varchar(50) NOT NULL default '', `setting_value` text, UNIQUE KEY `setting_name` (`setting_name`) ) TYPE=MyISAM COMMENT='Contains Content Manager settings.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_tmplvar_access` ( `id` int(10) NOT NULL auto_increment, `tmplvarid` int(10) NOT NULL default '0', `documentgroup` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) Type=MyISAM COMMENT='Contains data used for template variable access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_tmplvar_contentvalues` ( `id` int(11) NOT NULL auto_increment, `tmplvarid` int(10) NOT NULL default '0' COMMENT 'Template Variable id', `contentid` int(10) NOT NULL default '0' COMMENT 'Site Content Id', `value` text, PRIMARY KEY (id), KEY idx_tmplvarid (tmplvarid), KEY idx_id (contentid) ) TYPE=MyISAM COMMENT='Site Template Variables Content Values Link Table'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_tmplvar_templates` ( `tmplvarid` int(10) NOT NULL default '0' COMMENT 'Template Variable id', `templateid` int(11) NOT NULL default '0', `rank` int(11) NOT NULL default '0', PRIMARY KEY (`tmplvarid`, `templateid`) ) TYPE=MyISAM COMMENT='Site Template Variables Templates Link Table'; CREATE TABLE IF NOT EXISTS `{PREFIX}site_tmplvars` ( `id` INT(11) NOT NULL auto_increment, `type` varchar(20) NOT NULL default '', `name` varchar(50) NOT NULL default '', `caption` varchar(80) NOT NULL default '', `description` varchar(255) NOT NULL default '', `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor', `category` integer NOT NULL DEFAULT '0' COMMENT 'category id', `locked` tinyint(4) NOT NULL default '0', `elements` text, `rank` int(11) NOT NULL default '0', `display` varchar(20) NOT NULL default '' COMMENT 'Display Control', `display_params` text COMMENT 'Display Control Properties', `default_text` text, PRIMARY KEY (id), KEY `indx_rank`(`rank`) ) TYPE=MyISAM COMMENT='Site Template Variables'; CREATE TABLE IF NOT EXISTS `{PREFIX}user_attributes` ( `id` int(10) NOT NULL auto_increment, `internalKey` int(10) NOT NULL default '0', `fullname` varchar(100) NOT NULL default '', `role` int(10) NOT NULL default '0', `email` varchar(100) NOT NULL default '', `phone` varchar(100) NOT NULL default '', `mobilephone` varchar(100) NOT NULL default '', `blocked` int(1) NOT NULL default '0', `blockeduntil` int(11) NOT NULL default '0', `blockedafter` int(11) NOT NULL default '0', `logincount` int(11) NOT NULL default '0', `lastlogin` int(11) NOT NULL default '0', `thislogin` int(11) NOT NULL default '0', `failedlogincount` int(10) NOT NULL default '0', `sessionid` varchar(100) NOT NULL default '', `dob` int(10) NOT NULL DEFAULT '0', `gender` int(1) NOT NULL DEFAULT '0' COMMENT '0 - unknown, 1 - Male 2 - female', `country` varchar(5) NOT NULL default '', `state` varchar(25) NOT NULL default '', `zip` varchar(25) NOT NULL default '', `fax` varchar(100) NOT NULL default '', `photo` varchar(255) NOT NULL default '' COMMENT 'link to photo', `comment` varchar(255) NOT NULL default '' COMMENT 'short comment', PRIMARY KEY (`id`), KEY `userid` (`internalKey`) ) TYPE=MyISAM COMMENT='Contains information about the backend users.'; CREATE TABLE IF NOT EXISTS `{PREFIX}user_messages` ( `id` int(10) NOT NULL auto_increment, `type` varchar(15) NOT NULL default '', `subject` varchar(60) NOT NULL default '', `message` text, `sender` int(10) NOT NULL default '0', `recipient` int(10) NOT NULL default '0', `private` tinyint(4) NOT NULL default '0', `postdate` int(20) NOT NULL default '0', `messageread` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains messages for the Content Manager messaging system.'; CREATE TABLE IF NOT EXISTS `{PREFIX}user_roles` ( `id` int(10) NOT NULL auto_increment, `name` varchar(50) NOT NULL default '', `description` varchar(255) NOT NULL default '', `frames` int(1) NOT NULL default '0', `home` int(1) NOT NULL default '0', `view_document` int(1) NOT NULL default '0', `new_document` int(1) NOT NULL default '0', `save_document` int(1) NOT NULL default '0', `publish_document` int(1) NOT NULL default '0', `delete_document` int(1) NOT NULL default '0', `empty_trash` int(1) NOT NULL default '0', `action_ok` int(1) NOT NULL default '0', `logout` int(1) NOT NULL default '0', `help` int(1) NOT NULL default '0', `messages` int(1) NOT NULL default '0', `new_user` int(1) NOT NULL default '0', `edit_user` int(1) NOT NULL default '0', `logs` int(1) NOT NULL default '0', `edit_parser` int(1) NOT NULL default '0', `save_parser` int(1) NOT NULL default '0', `edit_template` int(1) NOT NULL default '0', `settings` int(1) NOT NULL default '0', `credits` int(1) NOT NULL default '0', `new_template` int(1) NOT NULL default '0', `save_template` int(1) NOT NULL default '0', `delete_template` int(1) NOT NULL default '0', `edit_snippet` int(1) NOT NULL default '0', `new_snippet` int(1) NOT NULL default '0', `save_snippet` int(1) NOT NULL default '0', `delete_snippet` int(1) NOT NULL default '0', `edit_chunk` int(1) NOT NULL default '0', `new_chunk` int(1) NOT NULL default '0', `save_chunk` int(1) NOT NULL default '0', `delete_chunk` int(1) NOT NULL default '0', `empty_cache` int(1) NOT NULL default '0', `edit_document` int(1) NOT NULL default '0', `change_password` int(1) NOT NULL default '0', `error_dialog` int(1) NOT NULL default '0', `about` int(1) NOT NULL default '0', `file_manager` int(1) NOT NULL default '0', `save_user` int(1) NOT NULL default '0', `delete_user` int(1) NOT NULL default '0', `save_password` int(11) NOT NULL default '0', `edit_role` int(1) NOT NULL default '0', `save_role` int(1) NOT NULL default '0', `delete_role` int(1) NOT NULL default '0', `new_role` int(1) NOT NULL default '0', `access_permissions` int(1) NOT NULL default '0', `bk_manager` int(1) NOT NULL DEFAULT 0, `new_plugin` int(1) NOT NULL DEFAULT 0, `edit_plugin` int(1) NOT NULL DEFAULT 0, `save_plugin` int(1) NOT NULL DEFAULT 0, `delete_plugin` int(1) NOT NULL DEFAULT 0, `new_module` int(1) NOT NULL DEFAULT 0, `edit_module` int(1) NOT NULL DEFAULT 0, `save_module` int(1) NOT NULL DEFAULT 0, `delete_module` int(1) NOT NULL DEFAULT 0, `exec_module` int(1) NOT NULL DEFAULT 0, `view_eventlog` int(1) NOT NULL DEFAULT 0, `delete_eventlog` int(1) NOT NULL DEFAULT 0, `manage_metatags` int(1) NOT NULL DEFAULT 0 COMMENT 'manage site meta tags and keywords', `edit_doc_metatags` int(1) NOT NULL DEFAULT 0 COMMENT 'edit document meta tags and keywords' , `new_web_user` int(1) NOT NULL default '0', `edit_web_user` int(1) NOT NULL default '0', `save_web_user` int(1) NOT NULL default '0', `delete_web_user` int(1) NOT NULL default '0', `web_access_permissions` int(1) NOT NULL default '0', `view_unpublished` int(1) NOT NULL default '0', `import_static` int(1) NOT NULL default '0', `export_static` int(1) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM COMMENT='Contains information describing the user roles.'; CREATE TABLE IF NOT EXISTS `{PREFIX}user_settings` ( `user` integer NOT NULL, `setting_name` varchar(50) NOT NULL default '', `setting_value` text, KEY `setting_name` (`setting_name`), KEY `user` (`user`) ) Type=MyISAM COMMENT='Contains backend user settings.'; CREATE TABLE IF NOT EXISTS `{PREFIX}web_groups` ( `id` int(10) NOT NULL auto_increment, `webgroup` int(10) NOT NULL default '0', `webuser` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) Type=MyISAM COMMENT='Contains data used for web access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}webgroup_access` ( `id` int(10) NOT NULL auto_increment, `webgroup` int(10) NOT NULL default '0', `documentgroup` int(10) NOT NULL default '0', PRIMARY KEY (`id`) ) Type=MyISAM COMMENT='Contains data used for web access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}webgroup_names` ( `id` int(10) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) Type=MyISAM COMMENT='Contains data used for web access permissions.'; CREATE TABLE IF NOT EXISTS `{PREFIX}web_user_attributes` ( `id` int(10) NOT NULL auto_increment, `internalKey` int(10) NOT NULL default '0', `fullname` varchar(100) NOT NULL default '', `role` int(10) NOT NULL default '0', `email` varchar(100) NOT NULL default '', `phone` varchar(100) NOT NULL default '', `mobilephone` varchar(100) NOT NULL default '', `blocked` int(1) NOT NULL default '0', `blockeduntil` int(11) NOT NULL default '0', `blockedafter` int(11) NOT NULL default '0', `logincount` int(11) NOT NULL default '0', `lastlogin` int(11) NOT NULL default '0', `thislogin` int(11) NOT NULL default '0', `failedlogincount` int(10) NOT NULL default '0', `sessionid` varchar(100) NOT NULL default '', `dob` int(10) NOT NULL DEFAULT '0', `gender` int(1) NOT NULL DEFAULT '0' COMMENT '0 - unknown, 1 - Male 2 - female', `country` varchar(5) NOT NULL default '', `state` varchar(25) NOT NULL default '', `zip` varchar(25) NOT NULL default '', `fax` varchar(100) NOT NULL default '', `photo` varchar(255) NOT NULL default '' COMMENT 'link to photo', `comment` varchar(255) NOT NULL default '' COMMENT 'short comment', PRIMARY KEY (`id`), KEY `userid` (`internalKey`) ) Type=MyISAM COMMENT='Contains information for web users.'; CREATE TABLE IF NOT EXISTS `{PREFIX}web_users` ( `id` int(10) NOT NULL auto_increment, `username` varchar(100) NOT NULL default '', `password` varchar(100) NOT NULL default '', `cachepwd` varchar(100) NOT NULL default '' COMMENT 'Store new unconfirmed password', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) Type=MyISAM; CREATE TABLE IF NOT EXISTS `{PREFIX}web_user_settings` ( `webuser` integer NOT NULL, `setting_name` varchar(50) NOT NULL default '', `setting_value` text, KEY `setting_name` (`setting_name`), KEY `webuserid` (`webuser`) ) Type=MyISAM COMMENT='Contains web user settings.'; # upgrade-able[[ - This block of code will be executed during upgrades # For backward compatibilty with early versions #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ALTER TABLE `{PREFIX}web_users` ADD COLUMN `cachepwd` varchar(100) NOT NULL default '' COMMENT 'Store new unconfirmed password' AFTER `password`; ALTER TABLE `{PREFIX}site_tmplvars` ADD COLUMN `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor' AFTER `description`, ADD COLUMN `category` integer NOT NULL DEFAULT '0' COMMENT 'category id' AFTER `editor_type`; ALTER TABLE `{PREFIX}site_tmplvars` MODIFY COLUMN `name` varchar(50) NOT NULL default ''; ALTER TABLE `{PREFIX}site_tmplvars` ADD INDEX `indx_rank`(`rank`); ALTER TABLE `{PREFIX}site_content` ADD INDEX `aliasidx` (alias); ALTER TABLE `{PREFIX}site_content` ADD COLUMN `introtext` text COMMENT 'Used to provide quick summary of the document' AFTER `isfolder`; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `menutitle` varchar(255) NOT NULL default '' COMMENT 'Menu title' AFTER `deletedby`, ADD COLUMN `donthit` tinyint(1) NOT NULL default '0' COMMENT 'Disable page hit count' AFTER `menutitle`, ADD COLUMN `haskeywords` tinyint(1) NOT NULL default '0' COMMENT 'has links to keywords' AFTER `donthit`, ADD COLUMN `hasmetatags` tinyint(1) NOT NULL default '0' COMMENT 'has links to meta tags' AFTER `haskeywords`, ADD COLUMN `privateweb` tinyint(1) NOT NULL default '0' COMMENT 'Private web document' AFTER `hasmetatags`, ADD COLUMN `privatemgr` tinyint(1) NOT NULL default '0' COMMENT 'Private manager document' AFTER `privateweb`; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `content_dispo` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-inline, 1-attachment' AFTER `privatemgr`; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `hidemenu` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Hide document from menu' AFTER `content_dispo`; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `publishedon` int(20) NOT NULL DEFAULT '0' COMMENT 'Date the document was published' AFTER `deletedby`; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `publishedby` int(10) NOT NULL DEFAULT '0' COMMENT 'ID of user who published the document' AFTER `publishedon`; ALTER TABLE `{PREFIX}site_plugins` ADD COLUMN `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor' AFTER `description`, ADD COLUMN `category` integer NOT NULL DEFAULT '0' COMMENT 'category id' AFTER `editor_type`, ADD COLUMN `cache_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'cache option' AFTER `category`; ALTER TABLE `{PREFIX}site_plugins` ADD COLUMN `disabled` tinyint NOT NULL DEFAULT '0' COMMENT 'Disables the plugin' AFTER `properties`; ALTER TABLE `{PREFIX}site_plugins` ADD COLUMN `moduleguid` varchar(32) NOT NULL DEFAULT '' COMMENT 'GUID of module from which to import shared parameters' AFTER `disabled`; ALTER TABLE `{PREFIX}site_htmlsnippets` ADD COLUMN `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor' AFTER `description`, ADD COLUMN `category` integer NOT NULL DEFAULT '0' COMMENT 'category id' AFTER `editor_type`, ADD COLUMN `cache_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'cache option' AFTER `category`; ALTER TABLE `{PREFIX}site_snippets` ADD COLUMN `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor' AFTER `description`, ADD COLUMN `category` integer NOT NULL DEFAULT '0' COMMENT 'category id' AFTER `editor_type`, ADD COLUMN `cache_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'cache option' AFTER `category`; ALTER TABLE `{PREFIX}site_snippets` ADD COLUMN `properties` varchar(255) NOT NULL default '' COMMENT 'Default Properties' AFTER `locked`; ALTER TABLE `{PREFIX}site_snippets` ADD COLUMN `moduleguid` varchar(32) NOT NULL default '' COMMENT 'GUID of module from which to import shared parameters' AFTER `properties`; ALTER TABLE `{PREFIX}site_templates` ADD COLUMN `editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor' AFTER `description`, ADD COLUMN `category` integer NOT NULL DEFAULT '0' COMMENT 'category id' AFTER `editor_type`, ADD COLUMN `icon` varchar(255) NOT NULL default '' COMMENT 'url to icon file' AFTER `category`, ADD COLUMN `template_type` integer NOT NULL DEFAULT '0' COMMENT '0-page,1-content' AFTER `icon`; ALTER TABLE `{PREFIX}document_groups` DROP INDEX `indx_doc_groups`; ALTER TABLE `{PREFIX}document_groups` ADD INDEX `document` (`document`); ALTER TABLE `{PREFIX}document_groups` ADD INDEX `document_group` (`document_group`); ALTER TABLE `{PREFIX}system_settings` MODIFY COLUMN `setting_value` text; ALTER TABLE `{PREFIX}site_plugins` MODIFY COLUMN `properties` text; ALTER TABLE `{PREFIX}site_snippets` MODIFY COLUMN `properties` text; ALTER TABLE `{PREFIX}system_eventnames` ADD COLUMN `groupname` varchar(20) NOT NULL default '' AFTER `service`; ALTER TABLE `{PREFIX}documentgroup_names` ADD COLUMN `private_memgroup` tinyint DEFAULT '0' COMMENT 'determine whether the document group is private to manager users' AFTER `name`, ADD COLUMN `private_webgroup` tinyint DEFAULT '0' COMMENT 'determines whether the document is private to web users' AFTER `private_memgroup`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `bk_manager` int(1) NOT NULL DEFAULT '0' AFTER `access_permissions`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `new_plugin` int(1) NOT NULL DEFAULT '0' AFTER `bk_manager`, ADD COLUMN `edit_plugin` int(1) NOT NULL DEFAULT '0' AFTER `new_plugin`, ADD COLUMN `save_plugin` int(1) NOT NULL DEFAULT '0' AFTER `edit_plugin`, ADD COLUMN `delete_plugin` int(1) NOT NULL DEFAULT '0' AFTER `save_plugin`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `new_module` int(1) NOT NULL DEFAULT '0' AFTER `delete_plugin`, ADD COLUMN `edit_module` int(1) NOT NULL DEFAULT '0' AFTER `new_module`, ADD COLUMN `save_module` int(1) NOT NULL DEFAULT '0' AFTER `edit_module`, ADD COLUMN `delete_module` int(1) NOT NULL DEFAULT '0' AFTER `save_module`, ADD COLUMN `exec_module` int(1) NOT NULL DEFAULT '0' AFTER `delete_module`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `view_eventlog` int(1) NOT NULL DEFAULT '0' AFTER `exec_module`, ADD COLUMN `delete_eventlog` int(1) NOT NULL DEFAULT '0' AFTER `view_eventlog`, ADD COLUMN `manage_metatags` int(1) NOT NULL DEFAULT '0' AFTER `delete_eventlog`, ADD COLUMN `edit_doc_metatags` int(1) NOT NULL DEFAULT '0' AFTER `manage_metatags`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `new_web_user` int(1) NOT NULL DEFAULT '0' AFTER `edit_doc_metatags`, ADD COLUMN `edit_web_user` int(1) NOT NULL DEFAULT '0' AFTER `new_web_user`, ADD COLUMN `save_web_user` int(1) NOT NULL DEFAULT '0' AFTER `edit_web_user`, ADD COLUMN `delete_web_user` int(1) NOT NULL DEFAULT '0' AFTER `save_web_user`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `web_access_permissions` int(1) NOT NULL DEFAULT '0' AFTER `delete_web_user`, ADD COLUMN `view_unpublished` int(1) NOT NULL DEFAULT '0'AFTER `web_access_permissions`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `publish_document` int(1) NOT NULL DEFAULT '0' AFTER `save_document`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `new_chunk` int(1) NOT NULL DEFAULT '0' AFTER `delete_snippet`, ADD COLUMN `edit_chunk` int(1) NOT NULL DEFAULT '0' AFTER `new_chunk`, ADD COLUMN `save_chunk` int(1) NOT NULL DEFAULT '0' AFTER `edit_chunk`, ADD COLUMN `delete_chunk` int(1) NOT NULL DEFAULT '0' AFTER `save_chunk`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `import_static` int(1) NOT NULL DEFAULT '0' AFTER `view_unpublished`, ADD COLUMN `export_static` int(1) NOT NULL DEFAULT '0' AFTER `import_static`; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `empty_trash` int(1) NOT NULL DEFAULT '0' AFTER `delete_document`; ALTER TABLE `{PREFIX}user_attributes` ADD COLUMN `dob` integer(10) NOT NULL DEFAULT 0 AFTER `sessionid`, ADD COLUMN `gender` integer(1) NOT NULL DEFAULT 0 COMMENT '0 - unknown, 1 - Male 2 - female' AFTER `dob`, ADD COLUMN `country` varchar(5) NOT NULL DEFAULT '' AFTER `gender`, ADD COLUMN `state` varchar(5) NOT NULL DEFAULT '' AFTER `country`, ADD COLUMN `zip` varchar(5) NOT NULL DEFAULT '' AFTER `state`, ADD COLUMN `fax` varchar(100) NOT NULL DEFAULT '' AFTER `zip`, ADD COLUMN `blockedafter` integer(11) NOT NULL DEFAULT 0 AFTER `blockeduntil`, ADD COLUMN `photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'link to photo' AFTER `fax`, ADD COLUMN `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'short comment' AFTER `photo`; ALTER TABLE `{PREFIX}web_users` MODIFY COLUMN `username` varchar(100) NOT NULL DEFAULT ''; ALTER TABLE `{PREFIX}web_user_attributes` ADD COLUMN `dob` integer(10) NOT NULL DEFAULT 0 AFTER `sessionid`, ADD COLUMN `gender` integer(1) NOT NULL DEFAULT 0 COMMENT '0 - unknown, 1 - Male 2 - female' AFTER `dob`, ADD COLUMN `country` varchar(5) NOT NULL DEFAULT '' AFTER `gender`, ADD COLUMN `state` varchar(5) NOT NULL DEFAULT '' AFTER `country`, ADD COLUMN `zip` varchar(5) NOT NULL DEFAULT '' AFTER `state`, ADD COLUMN `fax` varchar(100) NOT NULL DEFAULT '' AFTER `zip`, ADD COLUMN `blockedafter` integer(11) NOT NULL DEFAULT 0 AFTER `blockeduntil`, ADD COLUMN `photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'link to photo' AFTER `fax`, ADD COLUMN `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'short comment' AFTER `photo`, MODIFY COLUMN `state` varchar(25) NOT NULL DEFAULT '', MODIFY COLUMN `zip` varchar(25) NOT NULL DEFAULT ''; ALTER TABLE `{PREFIX}user_roles` ADD COLUMN `view_unpublished` int(1) NOT NULL DEFAULT '0' AFTER `web_access_permissions`; ALTER TABLE `{PREFIX}site_tmplvar_templates` DROP INDEX `idx_tmplvarid`, DROP INDEX `idx_templateid`, ADD PRIMARY KEY ( `tmplvarid` , `templateid` ); ALTER TABLE `{PREFIX}site_content` MODIFY COLUMN `pagetitle` varchar(255) NOT NULL default '', MODIFY COLUMN `alias` varchar(255) default '', MODIFY COLUMN `menutitle` varchar(255) NOT NULL DEFAULT '' COMMENT 'Menu title'; ALTER TABLE `{PREFIX}site_content` ADD COLUMN `link_attributes` varchar(255) NOT NULL DEFAULT '' COMMENT 'Link attriubtes' AFTER `alias`; ALTER TABLE `{PREFIX}site_plugin_events` ADD COLUMN `priority` INT(10) NOT NULL default 0 COMMENT 'determines the run order of the plugin' AFTER `evtid`; ALTER TABLE `{PREFIX}site_tmplvar_templates` ADD COLUMN `rank` integer(11) NOT NULL DEFAULT '0' AFTER `templateid`; ALTER TABLE `{PREFIX}manager_users` MODIFY COLUMN `username` varchar(100) NOT NULL DEFAULT ''; ALTER TABLE `{PREFIX}user_settings` MODIFY COLUMN `setting_value` text; ALTER TABLE `{PREFIX}web_user_settings` MODIFY COLUMN `setting_value` text; ALTER TABLE `{PREFIX}user_attributes` MODIFY COLUMN `state` varchar(25) NOT NULL default '', MODIFY COLUMN `zip` varchar(25) NOT NULL default ''; ALTER TABLE `{PREFIX}site_metatags` MODIFY COLUMN `name` varchar(50) NOT NULL DEFAULT '', MODIFY COLUMN `tag` varchar(50) NOT NULL DEFAULT '' COMMENT 'tag name', MODIFY COLUMN `tagvalue` varchar(255) NOT NULL DEFAULT ''; ALTER TABLE `{PREFIX}web_user_attributes` MODIFY COLUMN `state` varchar(25) NOT NULL default '', MODIFY COLUMN `zip` varchar(25) NOT NULL default ''; # Set the private manager group flag UPDATE {PREFIX}documentgroup_names AS dgn LEFT JOIN {PREFIX}membergroup_access AS mga ON mga.documentgroup = dgn.id LEFT JOIN {PREFIX}webgroup_access AS wga ON wga.documentgroup = dgn.id SET dgn.private_memgroup = (mga.membergroup IS NOT NULL), dgn.private_webgroup = (wga.webgroup IS NOT NULL); # ]]upgrade-able # Insert / Replace system records #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: # non-upgrade-able[[ - This block of code will not be executed during upgrades # Default Site Template REPLACE INTO `{PREFIX}site_templates` (id, templatename, description, editor_type, category, icon, template_type, content, locked) VALUES ('3','Minimal Template','Default minimal empty template','0','0','','0','\r\n\r\n\r\n
\r\nYou have successfully installed and configured MODx. We hope you find this site an adequate starting configuration for many small business, organization or personal websites; just change out the template and add your own content and snippets, and you\'ll be good to go!
\r\n\r\nThe team behind MODx strives to contantly add to and refine the documentation to help you get up to speed with MODx:
\r\nAnd don\'t forget, you can always learn and ask questions at the MODx forums. \r\n',1,3,0,1,1,1,1130304721,1,1130304927,0,0,0,1130304721,1,'Base Install',0,0,0,0,0,0,0); REPLACE INTO `{PREFIX}manager_users` (id, username, password)VALUES (1, '{ADMIN}', MD5('{ADMINPASS}')); REPLACE INTO `{PREFIX}user_attributes` (id, internalKey, fullname, role, email, phone, mobilephone, blocked, blockeduntil, blockedafter, logincount, lastlogin, thislogin, failedlogincount, sessionid, dob, gender, country, state, zip, fax, photo, comment) VALUES (1, 1, 'Default admin account', 1, '{ADMINEMAIL}', '', '', 0, 0, 0, 0, 0, 0, 0, '', 0, 0, '', '', '', '', '', ''); # ]]non-upgrade-able # Default Site Settings INSERT IGNORE INTO `{PREFIX}system_settings` (setting_name, setting_value) VALUES ('manager_theme','MODxLight'), ('settings_version','0.9.6.2'), ('server_offset_time','0'), ('server_protocol','http'), ('manager_language','{MANAGERLANGUAGE}'), ('modx_charset','UTF-8'), ('site_name','My MODx Site'), ('site_start','1'), ('error_page','1'), ('unauthorized_page','1'), ('site_status','1'), ('site_unavailable_message','The site is currently unavailable'), ('track_visitors','0'), ('resolve_hostnames','0'), ('top_howmany','10'), ('default_template','1'), ('old_template',''), ('publish_default','0'), ('cache_default','1'), ('search_default','1'), ('friendly_urls','0'), ('friendly_url_prefix',''), ('friendly_url_suffix','.html'), ('friendly_alias_urls','1'), ('use_alias_path','0'), ('use_udperms','1'), ('udperms_allowroot','0'), ('failed_login_attempts','3'), ('blocked_minutes','60'), ('use_captcha','0'), ('captcha_words','MODx,Access,Better,BitCode,Cache,Desc,Design,Excell,Enjoy,URLs,TechView,Gerald,Griff,Humphrey,Holiday,Intel,Integration,Joystick,Join(),Tattoo,Genetic,Light,Likeness,Marit,Maaike,Niche,Netherlands,Ordinance,Oscillo,Parser,Phusion,Query,Question,Regalia,Righteous,Snippet,Sentinel,Template,Thespian,Unity,Enterprise,Verily,Veri,Website,WideWeb,Yap,Yellow,Zebra,Zygote'), ('emailsender','you@yourdomain.com'), ('emailsubject','Your login details'), ('signupemail_message','Hello [+uid+] \r\n\r\nHere are your login details for [+sname+] Content Manager:\r\n\r\nUsername: [+uid+]\r\nPassword: [+pwd+]\r\n\r\nOnce you log into the Content Manager at [+surl+], you can change your password.\r\n\r\nRegards,\r\nSite Administrator'), ('websignupemail_message','Hello [+uid+] \r\n\r\nHere are your login details for [+sname+]:\r\n\r\nUsername: [+uid+]\r\nPassword: [+pwd+]\r\n\r\nOnce you log into [+sname+] at [+surl+], you can change your password.\r\n\r\nRegards,\r\nSite Administrator'), ('webpwdreminder_message','Hello [+uid+]\r\n\r\nTo active you new password click the following link:\r\n\r\n[+surl+]\r\n\r\nIf successful you can use the following password to login:\r\n\r\nPassword:[+pwd+]\r\n\r\nIf you did not request this email then please ignore it.\r\n\r\nRegards,\r\nSite Administrator'), ('number_of_logs','100'), ('number_of_messages','30'), ('number_of_results','20'), ('use_editor','1'), ('use_browser','1'), ('rb_base_dir','{IMAGEPATH}'), ('rb_base_url','{IMAGEURL}'), ('which_editor','TinyMCE'), ('fe_editor_lang','english'), ('fck_editor_toolbar','standard'), ('fck_editor_autolang','0'), ('editor_css_path',''), ('editor_css_selectors',''), ('strip_image_paths','1'), ('upload_images','jpg,jpeg,png,gif,psd,ico,bmp'), ('upload_media','mp3,wav,au,wmv,avi,mpg,mpeg'), ('upload_flash','swf,fla'), ('upload_files','txt,php,html,htm,xml,js,css,cache,zip,gz,rar,z,tgz,tar,htaccess,mp3,mp4,aac,wav,au,wmv,avi,mpg,mpeg,pdf,doc,xls,txt'), ('upload_maxsize','1048576'), ('new_file_permissions','0644'), ('new_folder_permissions','0755'), ('show_preview','0'), ('filemanager_path','{FILEMANAGERPATH}'), ('theme_refresher',''), ('manager_layout','4'), ('custom_contenttype','text/css,text/html,text/javascript,text/plain,text/xml'), ('auto_menuindex','1'), ('session.cookie.lifetime','604800'), ('mail_check_timeperiod','60'), ('manager_lang_attribute','en'), ('manager_direction','ltr'), ('tinymce_editor_theme','editor'), ('tinymce_custom_plugins','style,advimage,advlink,searchreplace,print,contextmenu,paste,fullscreen,nonbreaking,xhtmlxtras,visualchars,media'), ('tinymce_custom_buttons1','undo,redo,selectall,separator,pastetext,pasteword,separator,search,replace,separator,nonbreaking,hr,charmap,separator,image,link,unlink,anchor,media,separator,cleanup,removeformat,separator,fullscreen,print,code,help'), ('tinymce_custom_buttons2','bold,italic,underline,strikethrough,sub,sup,separator,bullist,numlist,outdent,indent,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,styleselect,formatselect,separator,styleprops'), ('tree_show_protected', '0'), ('validate_referer', '0'); REPLACE INTO `{PREFIX}user_roles` (id, name, description, frames, home, view_document, new_document, save_document, publish_document, delete_document, empty_trash, action_ok, logout, help, messages, new_user, edit_user, logs, edit_parser, save_parser, edit_template, settings, credits, new_template, save_template, delete_template, edit_snippet, new_snippet, save_snippet, delete_snippet, edit_chunk, new_chunk, save_chunk, delete_chunk, empty_cache, edit_document, change_password, error_dialog, about, file_manager, save_user, delete_user, save_password, edit_role, save_role, delete_role, new_role, access_permissions, bk_manager, new_plugin, edit_plugin, save_plugin, delete_plugin, new_module, edit_module, save_module, exec_module, delete_module, view_eventlog, delete_eventlog, manage_metatags, edit_doc_metatags, new_web_user, edit_web_user, save_web_user, delete_web_user, web_access_permissions, view_unpublished, import_static, export_static ) VALUES (1, 'Administrator', 'Site administrators have full access to all functions', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1); # 1 - "Parser Service Events", 2 - "Manager Access Events", 3 - "Web Access Service Events", 4 - "Cache Service Events", 5 - "Template Service Events", 6 - Custom Events REPLACE INTO `{PREFIX}system_eventnames` (id,name,service,groupname) VALUES ('1','OnDocPublished','5',''), ('2','OnDocUnPublished','5',''), ('3','OnWebPagePrerender','5',''), ('4','OnWebLogin','3',''), ('5','OnBeforeWebLogout','3',''), ('6','OnWebLogout','3',''), ('7','OnWebSaveUser','3',''), ('8','OnWebDeleteUser','3',''), ('9','OnWebChangePassword ','3',''), ('10','OnWebCreateGroup','3',''), ('11','OnManagerLogin','2',''), ('12','OnBeforeManagerLogout','2',''), ('13','OnManagerLogout','2',''), ('14','OnManagerSaveUser ','2',''), ('15','OnManagerDeleteUser','2',''), ('16','OnManagerChangePassword ','2',''), ('17','OnManagerCreateGroup','2',''), ('18','OnBeforeCacheUpdate','4',''), ('19','OnCacheUpdate','4',''), ('20','OnLoadWebPageCache','4',''), ('21','OnBeforeSaveWebPageCache','4',''), ('22','OnChunkFormPrerender','1','Chunks'), ('23','OnChunkFormRender','1','Chunks'), ('24','OnBeforeChunkFormSave','1','Chunks'), ('25','OnChunkFormSave','1','Chunks'), ('26','OnBeforeChunkFormDelete','1','Chunks'), ('27','OnChunkFormDelete','1','Chunks'), ('28','OnDocFormPrerender','1','Documents'), ('29','OnDocFormRender','1','Documents'), ('30','OnBeforeDocFormSave','1','Documents'), ('31','OnDocFormSave','1','Documents'), ('32','OnBeforeDocFormDelete','1','Documents'), ('33','OnDocFormDelete','1','Documents'), ('34','OnPluginFormPrerender','1','Plugins'), ('35','OnPluginFormRender','1','Plugins'), ('36','OnBeforePluginFormSave','1','Plugins'), ('37','OnPluginFormSave','1','Plugins'), ('38','OnBeforePluginFormDelete','1','Plugins'), ('39','OnPluginFormDelete','1','Plugins'), ('40','OnSnipFormPrerender','1','Snippets'), ('41','OnSnipFormRender','1','Snippets'), ('42','OnBeforeSnipFormSave','1','Snippets'), ('43','OnSnipFormSave','1','Snippets'), ('44','OnBeforeSnipFormDelete','1','Snippets'), ('45','OnSnipFormDelete','1','Snippets'), ('46','OnTempFormPrerender','1','Templates'), ('47','OnTempFormRender','1','Templates'), ('48','OnBeforeTempFormSave','1','Templates'), ('49','OnTempFormSave','1','Templates'), ('50','OnBeforeTempFormDelete','1','Templates'), ('51','OnTempFormDelete','1','Templates'), ('52','OnTVFormPrerender','1','Template Variables'), ('53','OnTVFormRender','1','Template Variables'), ('54','OnBeforeTVFormSave','1','Template Variables'), ('55','OnTVFormSave','1','Template Variables'), ('56','OnBeforeTVFormDelete','1','Template Variables'), ('57','OnTVFormDelete','1','Template Variables'), ('58','OnUserFormPrerender','1','Users'), ('59','OnUserFormRender','1','Users'), ('60','OnBeforeUserFormSave','1','Users'), ('61','OnUserFormSave','1','Users'), ('62','OnBeforeUserFormDelete','1','Users'), ('63','OnUserFormDelete','1','Users'), ('64','OnWUsrFormPrerender','1','Web Users'), ('65','OnWUsrFormRender','1','Web Users'), ('66','OnBeforeWUsrFormSave','1','Web Users'), ('67','OnWUsrFormSave','1','Web Users'), ('68','OnBeforeWUsrFormDelete','1','Web Users'), ('69','OnWUsrFormDelete','1','Web Users'), ('70','OnSiteRefresh','1',''), ('71','OnFileManagerUpload','1',''), ('72','OnModFormPrerender','1','Modules'), ('73','OnModFormRender','1','Modules'), ('74','OnBeforeModFormDelete','1','Modules'), ('75','OnModFormDelete','1','Modules'), ('76','OnBeforeModFormSave','1','Modules'), ('77','OnModFormSave','1','Modules'), ('78','OnBeforeWebLogin','3',''), ('79','OnWebAuthentication','3',''), ('80','OnBeforeManagerLogin','2',''), ('81','OnManagerAuthentication','2',''), ('82','OnSiteSettingsRender','1','System Settings'), ('83','OnFriendlyURLSettingsRender','1','System Settings'), ('84','OnUserSettingsRender','1','System Settings'), ('85','OnInterfaceSettingsRender','1','System Settings'), ('86','OnMiscSettingsRender','1','System Settings'), ('87','OnRichTextEditorRegister','1','RichText Editor'), ('88','OnRichTextEditorInit','1','RichText Editor'), ('89','OnManagerPageInit','2',''), ('90','OnWebPageInit','5',''), ('91','OnLoadWebDocument','5',''), ('92','OnParseDocument','5',''), ('93','OnManagerLoginFormRender','2',''), ('94','OnWebPageComplete','5',''), ('95','OnLogPageHit','5',''), ('96','OnBeforeManagerPageInit','2',''), ('97','OnBeforeEmptyTrash','1','Documents'), ('98','OnEmptyTrash','1','Documents'), ('99','OnManagerLoginFormPrerender','2',''), ('200','OnCreateDocGroup','1','Documents'), ('999','OnPageUnauthorized','1',''), ('1000','OnPageNotFound','1',''); # ^ I don't think we need more than 1000 built-in events. Custom events will start at 1001 # Update System Tables #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: UPDATE `{PREFIX}user_roles` SET bk_manager=1, new_plugin=1, edit_plugin=1, save_plugin=1, delete_plugin=1, new_module=1, edit_module=1, save_module=1, delete_module=1, exec_module=1, view_eventlog = 1, delete_eventlog = 1, manage_metatags = 1, edit_doc_metatags = 1, new_web_user = 1, edit_web_user = 1, save_web_user = 1, delete_web_user = 1, new_chunk = 1, edit_chunk = 1, save_chunk = 1, delete_chunk = 1, web_access_permissions = 1, view_unpublished = 1, publish_document = 1, import_static = 1, export_static = 1, empty_trash = 1 WHERE `id`=1; # Update any invalid Manager Themes in User Settings and reset the default theme UPDATE `{PREFIX}user_settings` SET `setting_value`='MODxLight' WHERE `setting_name`='manager_theme' AND `setting_value`='default'; REPLACE INTO `{PREFIX}system_settings` (setting_name, setting_value) VALUES ('manager_theme','MODxLight');