IP : 18.117.138.246Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
slims/
../
vty/
../
igniter/
../
ocart2/
../
anchor/
anchor.sql/
/
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00";
/*!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 utf8 */;
-- -- Table structure for table `[[dbprefix]]posts` --
CREATE TABLE `[[dbprefix]]posts` ( `id` int(6) NOT NULL AUTO_INCREMENT, `title` varchar(150) NOT NULL, `slug` varchar(150) NOT NULL, `description` text NOT NULL, `markdown` text NOT NULL, `html` mediumtext NOT NULL, `css` text NOT NULL, `js` text NOT NULL, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `author` int(6) NOT NULL, `category` int(6) NOT NULL, `status` enum('draft','published','archived') NOT NULL, `comments` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`), KEY `status` (`status`), KEY `slug` (`slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;
-- -- Dumping data for table `[[dbprefix]]posts` --
INSERT INTO `[[dbprefix]]posts` VALUES (1, 'Hello World', 'hello-world', 'This is the first post.', 'Hello World!\r\n\r\nThis is the first post.', '<p>Hello World!</p>\n<p>This is the first post.</p>', '', '', '[[regtime]]', '[[regtime]]', 1, 1, 'published', 0);
-- -- Table structure for table `[[dbprefix]]users` --
CREATE TABLE `[[dbprefix]]users` ( `id` int(6) NOT NULL AUTO_INCREMENT, `username` varchar(100) NOT NULL, `password` text NOT NULL, `email` varchar(140) NOT NULL, `real_name` varchar(140) NOT NULL, `bio` text NOT NULL, `status` enum('inactive','active') NOT NULL, `role` enum('administrator','editor','user') NOT NULL, `updated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=2 ;
-- -- Dumping data for table `[[dbprefix]]users` --
INSERT INTO `[[dbprefix]]users` VALUES (1, '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', 'Administrator', 'The bouse', 'active', 'administrator', '[[regtime]]');
-- -- Table structure for table `[[dbprefix]]user_meta` --
CREATE TABLE `[[dbprefix]]user_meta` ( `id` int(6) NOT NULL AUTO_INCREMENT, `user` int(6) NOT NULL, `extend` int(6) NOT NULL, `data` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `item` (`user`), KEY `extend` (`extend`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
/*!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 */;