<?php
if( !defined( 'DATALIFEENGINE' ) ) {
header( "HTTP/1.1 403 Forbidden" );
header ( 'Location: ../../../' );
die( "Hacking attempt!" );
}
$config['version_id'] = "13.0";
$config['allow_plugins'] = "1";
$tableSchema = array();
$tableSchema[] = "DROP TABLE IF EXISTS " . PREFIX . "_plugins";
$tableSchema[] = "CREATE TABLE " . PREFIX . "_plugins (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`icon` varchar(255) NOT NULL DEFAULT '',
`version` varchar(10) NOT NULL DEFAULT '',
`dleversion` varchar(10) NOT NULL DEFAULT '',
`versioncompare` char(2) NOT NULL DEFAULT '',
`active` tinyint(1) NOT NULL DEFAULT '0',
`mysqlinstall` text NOT NULL,
`mysqlupgrade` text NOT NULL,
`mysqlenable` text NOT NULL,
`mysqldisable` text NOT NULL,
`mysqldelete` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=" . $storage_engine . " DEFAULT CHARACTER SET " . COLLATE . " COLLATE " . COLLATE . "_general_ci";
$tableSchema[] = "DROP TABLE IF EXISTS " . PREFIX . "_plugins_files";
$tableSchema[] = "CREATE TABLE " . PREFIX . "_plugins_files (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin_id` int(11) NOT NULL DEFAULT '0',
`file` varchar(255) NOT NULL DEFAULT '',
`action` varchar(10) NOT NULL DEFAULT '',
`searchcode` text NOT NULL,
`replacecode` mediumtext NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `plugin_id` (`plugin_id`),
KEY `active` (`active`)
) ENGINE=" . $storage_engine . " DEFAULT CHARACTER SET " . COLLATE . " COLLATE " . COLLATE . "_general_ci";
$tableSchema[] = "DROP TABLE IF EXISTS " . PREFIX . "_plugins_logs";
$tableSchema[] = "CREATE TABLE " . PREFIX . "_plugins_logs (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugin_id` int(11) NOT NULL DEFAULT '0',
`area` text NOT NULL,
`error` text NOT NULL,
`type` varchar(10) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `plugin_id` (`plugin_id`)
) ENGINE=" . $storage_engine . " DEFAULT CHARACTER SET " . COLLATE . " COLLATE " . COLLATE . "_general_ci";
$tableSchema[] = "ALTER TABLE `" . PREFIX . "_metatags` CHANGE `description` `description` VARCHAR(300) NOT NULL DEFAULT ''";
$tableSchema[] = "ALTER TABLE `" . PREFIX . "_post` CHANGE `descr` `descr` VARCHAR(300) NOT NULL DEFAULT ''";
foreach($tableSchema as $table) {
$db->query ($table, false);
}
$handler = fopen(ENGINE_DIR.'/data/config.php', "w");
fwrite($handler, "<?PHP \n\n//System Configurations\n\n\$config = array (\n\n");
foreach($config as $name => $value) {
fwrite($handler, "'{$name}' => \"{$value}\",\n\n");
}
fwrite($handler, ");\n\n?>");
fclose($handler);
?>