IP : 3.144.38.101Hostname : 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/
moodle39/
../
advpoll/
../
./
bolt/
../
cpg/
./
cpg.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]]categorymap` --
CREATE TABLE `[[dbprefix]]categorymap` ( `cid` int(11) NOT NULL, `group_id` int(11) NOT NULL, PRIMARY KEY (`cid`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Holds the categories where groups can create albums';
-- -- Table structure for table `[[dbprefix]]ecards` --
CREATE TABLE `[[dbprefix]]ecards` ( `eid` int(11) NOT NULL AUTO_INCREMENT, `sender_name` varchar(50) NOT NULL DEFAULT '', `sender_email` text NOT NULL, `recipient_name` varchar(50) NOT NULL DEFAULT '', `recipient_email` text NOT NULL, `link` text NOT NULL, `date` tinytext NOT NULL, `sender_ip` tinytext NOT NULL, PRIMARY KEY (`eid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Used to log ecards' AUTO_INCREMENT=1 ;
-- -- Table structure for table `[[dbprefix]]exif` --
CREATE TABLE `[[dbprefix]]exif` ( `pid` int(11) NOT NULL, `exifData` text NOT NULL, PRIMARY KEY (`pid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores EXIF data from individual pics';
-- -- Table structure for table `[[dbprefix]]favpics` --
CREATE TABLE `[[dbprefix]]favpics` ( `user_id` int(11) NOT NULL, `user_favpics` text NOT NULL, PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the server side favourites';
-- -- Table structure for table `[[dbprefix]]temp_messages` --
CREATE TABLE `[[dbprefix]]temp_messages` ( `message_id` varchar(80) NOT NULL DEFAULT '', `user_id` int(11) DEFAULT '0', `time` int(11) DEFAULT NULL, `message` text NOT NULL, PRIMARY KEY (`message_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Used to store messages from one page to the other';
-- -- Table structure for table `[[dbprefix]]vote_stats` --
CREATE TABLE `[[dbprefix]]vote_stats` ( `sid` int(11) NOT NULL AUTO_INCREMENT, `pid` varchar(100) NOT NULL DEFAULT '', `rating` smallint(6) NOT NULL DEFAULT '0', `ip` varchar(20) NOT NULL DEFAULT '', `sdate` bigint(20) NOT NULL DEFAULT '0', `referer` text NOT NULL, `browser` varchar(255) NOT NULL DEFAULT '', `os` varchar(50) NOT NULL DEFAULT '', `uid` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`sid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Detailed stats about votes, only used when enabled' 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 */;