-- MariaDB dump 10.19-11.4.0-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: serendipity_mamblog -- ------------------------------------------------------ -- Server version 11.4.0-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `mamblog_access` -- DROP TABLE IF EXISTS `mamblog_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_access` ( `groupid` int(10) unsigned NOT NULL DEFAULT 0, `artifact_id` int(10) unsigned NOT NULL DEFAULT 0, `artifact_type` varchar(64) NOT NULL DEFAULT '', `artifact_mode` varchar(64) NOT NULL DEFAULT '', `artifact_index` varchar(64) NOT NULL DEFAULT '', KEY `accessgroup_idx` (`groupid`), KEY `accessgroupT_idx` (`artifact_id`,`artifact_type`,`artifact_mode`), KEY `accessforeign_idx` (`artifact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_access` -- LOCK TABLES `mamblog_access` WRITE; /*!40000 ALTER TABLE `mamblog_access` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_access` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_authorgroups` -- DROP TABLE IF EXISTS `mamblog_authorgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_authorgroups` ( `groupid` int(10) unsigned NOT NULL DEFAULT 0, `authorid` int(10) unsigned NOT NULL DEFAULT 0, KEY `authorgroup_idxA` (`groupid`), KEY `authorgroup_idxB` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_authorgroups` -- LOCK TABLES `mamblog_authorgroups` WRITE; /*!40000 ALTER TABLE `mamblog_authorgroups` DISABLE KEYS */; INSERT INTO `mamblog_authorgroups` VALUES (3,1); /*!40000 ALTER TABLE `mamblog_authorgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_authors` -- DROP TABLE IF EXISTS `mamblog_authors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_authors` ( `realname` varchar(255) NOT NULL DEFAULT '', `username` varchar(20) DEFAULT NULL, `password` varchar(32) DEFAULT NULL, `authorid` int(11) NOT NULL AUTO_INCREMENT, `mail_comments` int(1) DEFAULT 1, `mail_trackbacks` int(1) DEFAULT 1, `email` varchar(128) NOT NULL DEFAULT '', `userlevel` int(4) unsigned NOT NULL DEFAULT 0, `right_publish` int(1) DEFAULT 1, PRIMARY KEY (`authorid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_authors` -- LOCK TABLES `mamblog_authors` WRITE; /*!40000 ALTER TABLE `mamblog_authors` DISABLE KEYS */; INSERT INTO `mamblog_authors` VALUES ('Markus A. Mascelli','admin','5a9361b28ee51795f1e82d9054919034',1,1,1,'mam@heimam.at',255,1); /*!40000 ALTER TABLE `mamblog_authors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_category` -- DROP TABLE IF EXISTS `mamblog_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_category` ( `categoryid` int(11) NOT NULL AUTO_INCREMENT, `category_name` varchar(255) DEFAULT NULL, `category_icon` varchar(255) DEFAULT NULL, `category_description` text DEFAULT NULL, `authorid` int(11) DEFAULT NULL, `category_left` int(11) DEFAULT 0, `category_right` int(11) DEFAULT 0, `parentid` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`categoryid`), KEY `categorya_idx` (`authorid`), KEY `categoryp_idx` (`parentid`), KEY `categorylr_idx` (`category_left`,`category_right`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_category` -- LOCK TABLES `mamblog_category` WRITE; /*!40000 ALTER TABLE `mamblog_category` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_comments` -- DROP TABLE IF EXISTS `mamblog_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL DEFAULT 0, `parent_id` int(10) unsigned NOT NULL DEFAULT 0, `timestamp` int(10) unsigned DEFAULT NULL, `title` varchar(150) DEFAULT NULL, `author` varchar(80) DEFAULT NULL, `email` varchar(200) DEFAULT NULL, `url` varchar(200) DEFAULT NULL, `ip` varchar(15) DEFAULT NULL, `body` text DEFAULT NULL, `type` varchar(100) DEFAULT 'regular', `subscribed` enum('true','false') NOT NULL DEFAULT 'true', `status` varchar(50) NOT NULL DEFAULT '', `referer` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`), KEY `commentry_idx` (`entry_id`), KEY `commpentry_idx` (`parent_id`), KEY `commtype_idx` (`type`), KEY `commstat_idx` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_comments` -- LOCK TABLES `mamblog_comments` WRITE; /*!40000 ALTER TABLE `mamblog_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_config` -- DROP TABLE IF EXISTS `mamblog_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_config` ( `name` varchar(255) NOT NULL DEFAULT '', `value` text NOT NULL, `authorid` int(11) DEFAULT 0, KEY `configauthorid_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_config` -- LOCK TABLES `mamblog_config` WRITE; /*!40000 ALTER TABLE `mamblog_config` DISABLE KEYS */; INSERT INTO `mamblog_config` VALUES ('template','default',0), ('serendipityPath','C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/mamBLOG/',0), ('uploadPath','uploads/',0), ('serendipityHTTPPath','/',0), ('templatePath','templates/',0), ('uploadHTTPPath','uploads/',0), ('baseURL','http://mamblog.mamweb.at/',0), ('autodetect_baseURL','false',0), ('indexFile','index.php',0), ('permalinkStructure','archives/%id%-%title%.html',0), ('permalinkAuthorStructure','authors/%id%-%realname%',0), ('permalinkCategoryStructure','categories/%id%-%name%',0), ('permalinkFeedCategoryStructure','feeds/categories/%id%-%name%.rss',0), ('permalinkFeedAuthorStructure','feeds/authors/%id%-%realname%.rss',0), ('permalinkArchivesPath','archives',0), ('permalinkArchivePath','archive',0), ('permalinkCategoriesPath','categories',0), ('permalinkAuthorsPath','authors',0), ('permalinkUnsubscribePath','unsubscribe',0), ('permalinkDeletePath','delete',0), ('permalinkApprovePath','approve',0), ('permalinkFeedsPath','feeds',0), ('permalinkPluginPath','plugin',0), ('permalinkAdminPath','admin',0), ('permalinkSearchPath','search',0), ('allowSubscriptions','true',0), ('blogTitle','mamBLOG',0), ('blogDescription','blog as blog can',0), ('blogMail','',0), ('lang','de',0), ('charset','UTF-8/',0), ('calendar','gregorian',0), ('lang_content_negotiation','false',0), ('fetchLimit','15',0), ('useGzip','false',0), ('wysiwyg','',0), ('XHTML11','false',0), ('enablePopup','false',0), ('embed','false',0), ('top_as_links','false',0), ('blockReferer',';',0), ('rewrite','none',0), ('serverOffsetHours','0',0), ('showFutureEntries','false',0), ('enableACL','true',0), ('magick','false',0), ('convert','C:\\\\WINDOWS\\\\system32/convert.exe',0), ('thumbSuffix','serendipityThumb',0), ('thumbSize','110',0); /*!40000 ALTER TABLE `mamblog_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entries` -- DROP TABLE IF EXISTS `mamblog_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(200) DEFAULT NULL, `timestamp` int(10) unsigned DEFAULT NULL, `body` text DEFAULT NULL, `comments` int(4) unsigned DEFAULT 0, `trackbacks` int(4) unsigned DEFAULT 0, `extended` text DEFAULT NULL, `exflag` int(1) DEFAULT NULL, `author` varchar(20) DEFAULT NULL, `authorid` int(11) DEFAULT NULL, `isdraft` enum('true','false') NOT NULL DEFAULT 'true', `allow_comments` enum('true','false') NOT NULL DEFAULT 'true', `last_modified` int(10) unsigned DEFAULT NULL, `moderate_comments` enum('true','false') NOT NULL DEFAULT 'true', PRIMARY KEY (`id`), KEY `date_idx` (`timestamp`), KEY `mod_idx` (`last_modified`), KEY `edraft_idx` (`isdraft`), KEY `eauthor_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entries` -- LOCK TABLES `mamblog_entries` WRITE; /*!40000 ALTER TABLE `mamblog_entries` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entrycat` -- DROP TABLE IF EXISTS `mamblog_entrycat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entrycat` ( `entryid` int(11) NOT NULL DEFAULT 0, `categoryid` int(11) NOT NULL DEFAULT 0, UNIQUE KEY `entryid_idx` (`entryid`,`categoryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entrycat` -- LOCK TABLES `mamblog_entrycat` WRITE; /*!40000 ALTER TABLE `mamblog_entrycat` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entrycat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_entryproperties` -- DROP TABLE IF EXISTS `mamblog_entryproperties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_entryproperties` ( `entryid` int(11) NOT NULL DEFAULT 0, `property` varchar(255) NOT NULL DEFAULT '', `value` text DEFAULT NULL, UNIQUE KEY `prop_idx` (`entryid`,`property`), KEY `entrypropid_idx` (`entryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_entryproperties` -- LOCK TABLES `mamblog_entryproperties` WRITE; /*!40000 ALTER TABLE `mamblog_entryproperties` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_entryproperties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_exits` -- DROP TABLE IF EXISTS `mamblog_exits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_exits` ( `entry_id` int(11) NOT NULL DEFAULT 0, `day` date NOT NULL DEFAULT '0000-00-00', `count` int(11) NOT NULL DEFAULT 0, `scheme` varchar(5) DEFAULT NULL, `host` varchar(128) NOT NULL DEFAULT '', `port` varchar(5) DEFAULT NULL, `path` varchar(255) DEFAULT NULL, `query` varchar(255) DEFAULT NULL, PRIMARY KEY (`host`,`day`,`entry_id`), KEY `exits_idx` (`entry_id`,`day`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_exits` -- LOCK TABLES `mamblog_exits` WRITE; /*!40000 ALTER TABLE `mamblog_exits` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_exits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_groupconfig` -- DROP TABLE IF EXISTS `mamblog_groupconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_groupconfig` ( `id` int(10) unsigned NOT NULL DEFAULT 0, `property` varchar(64) DEFAULT NULL, `value` varchar(128) DEFAULT NULL, KEY `groupid_idx` (`id`), KEY `groupprop_idx` (`id`,`property`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_groupconfig` -- LOCK TABLES `mamblog_groupconfig` WRITE; /*!40000 ALTER TABLE `mamblog_groupconfig` DISABLE KEYS */; INSERT INTO `mamblog_groupconfig` VALUES (1,'userlevel','0'), (1,'personalConfiguration','true'), (1,'personalConfigurationUserlevel','false'), (1,'personalConfigurationNoCreate','false'), (1,'personalConfigurationRightPublish','false'), (1,'siteConfiguration','false'), (1,'blogConfiguration','false'), (1,'adminEntries','true'), (1,'adminEntriesMaintainOthers','false'), (1,'adminImport','false'), (1,'adminCategories','true'), (1,'adminCategoriesMaintainOthers','false'), (1,'adminCategoriesDelete','false'), (1,'adminUsers','false'), (1,'adminUsersDelete','false'), (1,'adminUsersEditUserlevel','false'), (1,'adminUsersMaintainSame','false'), (1,'adminUsersMaintainOthers','false'), (1,'adminUsersCreateNew','false'), (1,'adminUsersGroups','false'), (1,'adminPlugins','false'), (1,'adminPluginsMaintainOthers','false'), (1,'adminImages','true'), (1,'adminImagesDirectories','false'), (1,'adminImagesAdd','true'), (1,'adminImagesDelete','true'), (1,'adminImagesMaintainOthers','false'), (1,'adminImagesViewOthers','true'), (1,'adminImagesView','true'), (1,'adminImagesSync','false'), (1,'adminComments','false'), (1,'adminTemplates','false'), (2,'userlevel','1'), (2,'personalConfiguration','true'), (2,'personalConfigurationUserlevel','true'), (2,'personalConfigurationNoCreate','true'), (2,'personalConfigurationRightPublish','true'), (2,'siteConfiguration','false'), (2,'blogConfiguration','true'), (2,'adminEntries','true'), (2,'adminEntriesMaintainOthers','true'), (2,'adminImport','true'), (2,'adminCategories','true'), (2,'adminCategoriesMaintainOthers','true'), (2,'adminCategoriesDelete','true'), (2,'adminUsers','true'), (2,'adminUsersDelete','true'), (2,'adminUsersEditUserlevel','true'), (2,'adminUsersMaintainSame','true'), (2,'adminUsersMaintainOthers','false'), (2,'adminUsersCreateNew','true'), (2,'adminUsersGroups','true'), (2,'adminPlugins','true'), (2,'adminPluginsMaintainOthers','false'), (2,'adminImages','true'), (2,'adminImagesDirectories','true'), (2,'adminImagesAdd','true'), (2,'adminImagesDelete','true'), (2,'adminImagesMaintainOthers','true'), (2,'adminImagesViewOthers','true'), (2,'adminImagesView','true'), (2,'adminImagesSync','true'), (2,'adminComments','true'), (2,'adminTemplates','true'), (3,'userlevel','255'), (3,'personalConfiguration','true'), (3,'personalConfigurationUserlevel','true'), (3,'personalConfigurationNoCreate','true'), (3,'personalConfigurationRightPublish','true'), (3,'siteConfiguration','true'), (3,'blogConfiguration','true'), (3,'adminEntries','true'), (3,'adminEntriesMaintainOthers','true'), (3,'adminImport','true'), (3,'adminCategories','true'), (3,'adminCategoriesMaintainOthers','true'), (3,'adminCategoriesDelete','true'), (3,'adminUsers','true'), (3,'adminUsersDelete','true'), (3,'adminUsersEditUserlevel','true'), (3,'adminUsersMaintainSame','true'), (3,'adminUsersMaintainOthers','true'), (3,'adminUsersCreateNew','true'), (3,'adminUsersGroups','true'), (3,'adminPlugins','true'), (3,'adminPluginsMaintainOthers','true'), (3,'adminImages','true'), (3,'adminImagesDirectories','true'), (3,'adminImagesAdd','true'), (3,'adminImagesDelete','true'), (3,'adminImagesMaintainOthers','true'), (3,'adminImagesViewOthers','true'), (3,'adminImagesView','true'), (3,'adminImagesSync','true'), (3,'adminComments','true'), (3,'adminTemplates','true'); /*!40000 ALTER TABLE `mamblog_groupconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_groups` -- DROP TABLE IF EXISTS `mamblog_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_groups` -- LOCK TABLES `mamblog_groups` WRITE; /*!40000 ALTER TABLE `mamblog_groups` DISABLE KEYS */; INSERT INTO `mamblog_groups` VALUES (1,'USERLEVEL_EDITOR_DESC'), (2,'USERLEVEL_CHIEF_DESC'), (3,'USERLEVEL_ADMIN_DESC'); /*!40000 ALTER TABLE `mamblog_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_images` -- DROP TABLE IF EXISTS `mamblog_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `extension` varchar(5) NOT NULL DEFAULT '', `mime` varchar(255) NOT NULL DEFAULT '', `size` int(11) NOT NULL DEFAULT 0, `dimensions_width` int(11) NOT NULL DEFAULT 0, `dimensions_height` int(11) NOT NULL DEFAULT 0, `date` int(11) NOT NULL DEFAULT 0, `thumbnail_name` varchar(255) NOT NULL DEFAULT '', `authorid` int(11) DEFAULT 0, `path` text DEFAULT NULL, `hotlink` int(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `imagesauthorid_idx` (`authorid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_images` -- LOCK TABLES `mamblog_images` WRITE; /*!40000 ALTER TABLE `mamblog_images` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_permalinks` -- DROP TABLE IF EXISTS `mamblog_permalinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_permalinks` ( `permalink` varchar(255) NOT NULL DEFAULT '', `entry_id` int(10) unsigned NOT NULL DEFAULT 0, `type` varchar(200) NOT NULL DEFAULT '', `data` text DEFAULT NULL, KEY `pl_idx` (`permalink`), KEY `ple_idx` (`entry_id`), KEY `plt_idx` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_permalinks` -- LOCK TABLES `mamblog_permalinks` WRITE; /*!40000 ALTER TABLE `mamblog_permalinks` DISABLE KEYS */; INSERT INTO `mamblog_permalinks` VALUES ('authors/1-Markus-A.-Mascelli',1,'author',NULL); /*!40000 ALTER TABLE `mamblog_permalinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_plugincategories` -- DROP TABLE IF EXISTS `mamblog_plugincategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_plugincategories` ( `class_name` varchar(250) DEFAULT NULL, `category` varchar(250) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_plugincategories` -- LOCK TABLES `mamblog_plugincategories` WRITE; /*!40000 ALTER TABLE `mamblog_plugincategories` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_plugincategories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_pluginlist` -- DROP TABLE IF EXISTS `mamblog_pluginlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_pluginlist` ( `plugin_file` varchar(255) NOT NULL DEFAULT '', `class_name` varchar(255) NOT NULL DEFAULT '', `plugin_class` varchar(255) NOT NULL DEFAULT '', `pluginPath` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `description` text NOT NULL, `version` varchar(12) NOT NULL DEFAULT '', `upgrade_version` varchar(12) NOT NULL DEFAULT '', `plugintype` varchar(255) NOT NULL DEFAULT '', `pluginlocation` varchar(255) NOT NULL DEFAULT '', `stackable` int(1) NOT NULL DEFAULT 0, `author` varchar(255) NOT NULL DEFAULT '', `requirements` text NOT NULL, `website` varchar(255) NOT NULL DEFAULT '', `last_modified` int(11) NOT NULL DEFAULT 0, KEY `pluginlist_f_idx` (`plugin_file`), KEY `pluginlist_cn_idx` (`class_name`), KEY `pluginlist_pt_idx` (`plugintype`), KEY `pluginlist_pl_idx` (`pluginlocation`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_pluginlist` -- LOCK TABLES `mamblog_pluginlist` WRITE; /*!40000 ALTER TABLE `mamblog_pluginlist` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_pluginlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_plugins` -- DROP TABLE IF EXISTS `mamblog_plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_plugins` ( `name` varchar(128) NOT NULL DEFAULT '', `placement` varchar(6) NOT NULL DEFAULT 'right', `sort_order` int(4) NOT NULL DEFAULT 0, `authorid` int(11) DEFAULT 0, `path` varchar(255) DEFAULT NULL, PRIMARY KEY (`name`), KEY `pluginauthorid_idx` (`authorid`), KEY `pluginplace_idx` (`placement`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_plugins` -- LOCK TABLES `mamblog_plugins` WRITE; /*!40000 ALTER TABLE `mamblog_plugins` DISABLE KEYS */; INSERT INTO `mamblog_plugins` VALUES ('@serendipity_archives_plugin:07aeab31227f5445fd9632c338573477','right',3,0,''), ('@serendipity_calendar_plugin:1c661b8bf75618917249327bf9cb0d2f','right',1,0,''), ('@serendipity_categories_plugin:bc070b3fefa6febc8a02a2e126f775d9','right',4,0,''), ('@serendipity_plug_plugin:efab4961c19dde9d4e9ec5825524570d','right',7,0,''), ('@serendipity_quicksearch_plugin:5208c3b43db2b45e4a9c0d1c29376959','right',2,0,''), ('@serendipity_superuser_plugin:d28f55f0d5d992ff3ee988ef4c8f2ce2','right',6,0,''), ('@serendipity_syndication_plugin:07bf83f9770999071669834599d882a4','right',5,0,''), ('serendipity_event_browsercompatibility:3489ebd55c7eaf550b836562d0ec5ed1','event',4,0,''), ('serendipity_event_emoticate:ddc264a1da49fad68471e2fd639c19dc','event',2,0,''), ('serendipity_event_nl2br:d1b93e8253766b17329dd5402db6c635','event',3,0,''), ('serendipity_event_s9ymarkup:1c156f243d04437ca868374e2b0dd858','event',1,0,''), ('serendipity_event_spamblock:b5501d1ac6366435c8ff8654941257ec','event',5,0,''); /*!40000 ALTER TABLE `mamblog_plugins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_references` -- DROP TABLE IF EXISTS `mamblog_references`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_references` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL DEFAULT 0, `link` text DEFAULT NULL, `name` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `refentry_idx` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_references` -- LOCK TABLES `mamblog_references` WRITE; /*!40000 ALTER TABLE `mamblog_references` DISABLE KEYS */; /*!40000 ALTER TABLE `mamblog_references` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_referrers` -- DROP TABLE IF EXISTS `mamblog_referrers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_referrers` ( `entry_id` int(11) NOT NULL DEFAULT 0, `day` date NOT NULL DEFAULT '0000-00-00', `count` int(11) NOT NULL DEFAULT 0, `scheme` varchar(5) DEFAULT NULL, `host` varchar(128) NOT NULL DEFAULT '', `port` varchar(5) DEFAULT NULL, `path` varchar(255) DEFAULT NULL, `query` varchar(255) DEFAULT NULL, PRIMARY KEY (`host`,`day`,`entry_id`), KEY `referrers_idx` (`entry_id`,`day`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_referrers` -- LOCK TABLES `mamblog_referrers` WRITE; /*!40000 ALTER TABLE `mamblog_referrers` DISABLE KEYS */; INSERT INTO `mamblog_referrers` VALUES (0,'2020-04-03',1,'http','baidu.com','','/',''), (0,'2021-06-18',1,'http','baidu.com','','/',''), (0,'2022-08-09',1,'http','baidu.com','','/',''), (0,'2022-12-26',1,'http','baidu.com','','/',''), (0,'2023-07-31',1,'http','baidu.com','','/',''), (0,'2021-05-19',1,'http','google.de','','',''), (0,'2022-11-12',1,'http','google.de','','',''), (0,'2022-12-15',1,'http','google.de','','',''), (0,'2011-06-21',3,'http','mamweb.at','','/index_top.html',''), (0,'2011-06-22',2,'http','mamweb.at','','/index_top.html',''), (0,'2023-10-19',1,'http','mamweb.at','','/index_noframes.html',''), (0,'2024-12-13',1,'http','mamweb.at','','/index_top.html',''), (0,'2025-05-24',1,'http','mamweb.at','','/index_top.html',''), (0,'2025-05-28',1,'http','mamweb.at','','/index_top.html',''), (0,'2025-10-03',1,'http','mamweb.at','','/index_top.html',''), (0,'2025-10-15',1,'http','mamweb.at','','/index_top.html',''), (0,'2026-05-12',1,'http','mamweb.at','','/index_top.html',''), (0,'2011-10-09',6,'http','www.domaincrawler.com','','/mamweb.at',''), (0,'2007-09-29',2,'http','www.google.de','','/search','hl=de&q=mamblog&btnG=Suche&meta=lr%3Dlang_de'), (0,'2007-03-15',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2007-08-01',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2007-08-14',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2008-04-30',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2009-10-18',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2010-04-06',2,'http','www.mamweb.at','','/index_top.html',''), (0,'2011-03-14',1,'http','www.mamweb.at','','/index_top.html',''), (0,'2020-06-07',1,'http','www.mamweb.at','','/index_top.html',''); /*!40000 ALTER TABLE `mamblog_referrers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mamblog_suppress` -- DROP TABLE IF EXISTS `mamblog_suppress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mamblog_suppress` ( `ip` varchar(15) DEFAULT NULL, `scheme` varchar(5) DEFAULT NULL, `host` varchar(128) DEFAULT NULL, `port` varchar(5) DEFAULT NULL, `path` varchar(255) DEFAULT NULL, `query` varchar(255) DEFAULT NULL, `last` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), KEY `url_idx` (`host`,`ip`), KEY `urllast_idx` (`last`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mamblog_suppress` -- LOCK TABLES `mamblog_suppress` WRITE; /*!40000 ALTER TABLE `mamblog_suppress` DISABLE KEYS */; INSERT INTO `mamblog_suppress` VALUES ('18.203.49.178','http','mamweb.at','','/index_top.html','','2026-03-03 12:20:21'), ('3.255.166.160','https','www.netcraft.com','','/survey/','','2026-03-03 21:09:41'), ('99.81.130.242','http','mamweb.at','','/index_top.html','','2026-03-06 12:35:15'), ('18.202.170.162','http','mamweb.at','','/index_top.html','','2026-03-10 19:04:59'), ('34.242.150.151','http','mamweb.at','','/index_top.html','','2026-03-13 14:01:41'), ('108.128.83.101','http','mamweb.at','','/index_top.html','','2026-03-17 12:49:16'), ('135.181.4.69','http','mamweb.at','','/index_noframes.html','','2026-03-18 06:47:05'), ('18.203.49.178','http','mamweb.at','','/index_top.html','','2026-03-20 04:21:12'), ('34.241.15.101','http','mamweb.at','','/index_top.html','','2026-03-24 14:41:55'), ('108.132.42.35','http','mamweb.at','','/index_top.html','','2026-03-27 15:52:38'), ('34.249.144.2','http','mamweb.at','','/index_top.html','','2026-03-31 11:56:34'), ('3.255.169.167','https','www.netcraft.com','','/survey/','','2026-04-01 19:42:04'), ('108.128.77.234','http','mamweb.at','','/index_top.html','','2026-04-03 23:10:16'), ('3.248.161.176','http','mamweb.at','','/index_top.html','','2026-04-07 23:55:52'), ('108.128.77.234','http','mamweb.at','','/index_top.html','','2026-04-11 00:30:27'), ('34.241.90.12','http','mamweb.at','','/index_top.html','','2026-04-14 21:22:28'), ('34.247.15.255','http','mamweb.at','','/index_top.html','','2026-04-21 06:09:53'), ('176.34.134.133','http','mamweb.at','','/index_top.html','','2026-04-24 16:44:24'), ('34.247.133.105','http','mamweb.at','','/index_top.html','','2026-04-28 07:10:13'), ('54.229.20.120','https','www.netcraft.com','','/survey/','','2026-04-30 20:27:44'), ('3.255.36.183','http','mamweb.at','','/index_top.html','','2026-05-05 05:09:47'), ('34.241.11.56','http','mamweb.at','','/index_top.html','','2026-05-08 23:16:39'), ('108.131.182.93','http','mamweb.at','','/index_top.html','','2026-05-12 15:04:07'), ('52.16.76.113','http','mamweb.at','','/index_top.html','','2026-05-15 06:14:43'), ('108.131.182.93','http','mamweb.at','','/index_top.html','','2026-05-19 19:22:05'), ('34.250.28.63','http','mamweb.at','','/index_top.html','','2026-05-22 09:05:59'), ('108.128.223.171','http','mamweb.at','','/index_top.html','','2026-05-26 16:18:38'), ('34.247.197.37','http','mamweb.at','','/index_top.html','','2026-05-29 14:05:27'), ('34.245.216.23','https','www.netcraft.com','','/survey/','','2026-06-04 15:37:48'), ('3.248.153.151','http','mamweb.at','','/index_top.html','','2026-06-05 19:36:45'), ('52.16.85.45','http','mamweb.at','','/index_top.html','','2026-06-10 04:13:19'), ('18.202.52.252','http','mamweb.at','','/index_top.html','','2026-06-12 18:53:34'), ('108.131.203.231','http','mamweb.at','','/index_top.html','','2026-06-16 15:50:03'), ('52.50.100.21','http','mamweb.at','','/index_top.html','','2026-06-18 22:10:40'), ('52.209.204.218','http','mamweb.at','','/index_top.html','','2026-06-23 13:31:26'), ('18.200.47.117','http','mamweb.at','','/index_top.html','','2026-06-26 12:18:51'), ('34.248.30.51','http','mamweb.at','','/index_top.html','','2026-07-01 10:13:55'), ('34.241.191.175','https','www.netcraft.com','','/survey/','','2026-07-01 21:37:07'), ('176.34.255.26','http','mamweb.at','','/index_top.html','','2026-07-03 05:28:20'), ('34.249.209.85','http','mamweb.at','','/index_top.html','','2026-07-07 14:04:09'), ('108.132.209.190','http','mamweb.at','','/index_top.html','','2026-07-10 11:53:43'), ('34.242.121.243','http','mamweb.at','','/index_top.html','','2026-07-14 12:56:04'), ('213.147.166.97','http','www.mamweb.at','','/','','2026-07-16 06:27:48'), ('108.132.121.157','http','mamweb.at','','/index_top.html','','2026-07-17 10:47:12'), ('108.133.42.187','http','mamweb.at','','/index_top.html','','2026-07-22 06:10:56'), ('54.228.163.207','http','mamweb.at','','/index_top.html','','2026-07-24 17:05:06'), ('108.133.82.116','http','mamweb.at','','/index_top.html','','2026-07-28 10:10:35'), ('108.129.61.185','http','mamweb.at','','/index_top.html','','2026-07-31 19:58:41'); /*!40000 ALTER TABLE `mamblog_suppress` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2026-08-01 2:00:30