Файл: adultscript-2.0.3-pro/files/install/sqls/asp.sql
Строк: 6883
-- MySQL dump 10.15 Distrib 10.0.17-MariaDB, for Linux (x86_64)
--
--
Host: localhost Database: asp203
--
------------------------------------------------------
-- Server
version 10.0.17-MariaDB-log
/*!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 */;
/*!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 `adv`
--
DROP TABLE IF EXISTS `adv`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `adv` (
`adv_id` int(11)
unsigned NOT NULL AUTO_INCREMENT,
`adv_group_id` int(11) unsigned NOT
NULL DEFAULT '0',
`adv_name` varchar(100) NOT NULL DEFAULT '',
`adv_desc` varchar(255) NOT NULL DEFAULT '',
`type`
enum('text','html','image') NOT NULL DEFAULT 'image',
`title`
varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL
DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`code` text NOT
NULL,
`image_type` enum('url','file') NOT NULL DEFAULT 'url',
`image_url` varchar(255) NOT NULL DEFAULT '',
`image_ext` varchar(4) NOT
NULL DEFAULT '',
`clicks` int(11) unsigned NOT NULL DEFAULT '0',
`views` bigint(20) NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL
DEFAULT '1',
`user_id` int(11) NOT NULL DEFAULT '0',
`expire` date NOT
NULL DEFAULT '0000-00-00',
`blank` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`adv_id`),
KEY `adv_group_id` (`adv_group_id`),
KEY
`status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv`
--
LOCK TABLES `adv`
WRITE;
/*!40000 ALTER TABLE `adv` DISABLE KEYS */;
/*!40000 ALTER TABLE
`adv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`adv_category`
--
DROP TABLE IF EXISTS `adv_category`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `adv_category` (
`adv_group_id` int(11) unsigned NOT NULL DEFAULT '0',
`cat_id` int(11)
unsigned NOT NULL DEFAULT '0',
`adv_id` int(11) unsigned NOT NULL DEFAULT
'0',
KEY `adv_group_cat` (`adv_group_id`,`cat_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv_category`
--
LOCK TABLES
`adv_category` WRITE;
/*!40000 ALTER TABLE `adv_category` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `adv_category` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `adv_clicks`
--
DROP TABLE IF
EXISTS `adv_clicks`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `adv_clicks` (
`adv_id` int(11) unsigned NOT NULL
DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT '0',
`referer`
varchar(255) NOT NULL DEFAULT '',
`click_date` datetime NOT NULL DEFAULT
'0000-00-00 00:00:00',
KEY `ip` (`ip`),
KEY `click_date`
(`click_date`),
KEY `adv_id` (`adv_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv_clicks`
--
LOCK TABLES `adv_clicks`
WRITE;
/*!40000 ALTER TABLE `adv_clicks` DISABLE KEYS */;
/*!40000 ALTER
TABLE `adv_clicks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `adv_embed_category`
--
DROP TABLE IF EXISTS
`adv_embed_category`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `adv_embed_category` (
`adv_id` int(11) unsigned NOT
NULL DEFAULT '0',
`cat_id` int(11) unsigned NOT NULL DEFAULT '0',
KEY
`adv_id` (`adv_id`),
KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv_embed_category`
--
LOCK TABLES
`adv_embed_category` WRITE;
/*!40000 ALTER TABLE `adv_embed_category`
DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_embed_category` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table `adv_groups`
--
DROP
TABLE IF EXISTS `adv_groups`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `adv_groups` (
`adv_group_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`adv_group_name` varchar(100) NOT NULL DEFAULT '',
`adv_group_slug` varchar(100) NOT NULL DEFAULT '',
`adv_group_desc`
varchar(255) NOT NULL DEFAULT '',
`adv_rotate` enum('0','1') NOT NULL
DEFAULT '0',
`total_ads` int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`adv_group_id`),
UNIQUE KEY `adv_group_name` (`adv_group_name`),
KEY
`adv_group_slug` (`adv_group_slug`)
) ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv_groups`
--
LOCK TABLES `adv_groups`
WRITE;
/*!40000 ALTER TABLE `adv_groups` DISABLE KEYS */;
INSERT INTO
`adv_groups` VALUES (1,'Frontpage Left','frontpage-left','Frontpage Left -
Vertical Advertising Spot','0',1,'1'),(2,'Footer
Advertising','footer','Footer - Wide Advertising Spot (will be displayed on
all pages)','0',1,'1'),(3,'FrontPage
Watched','frontpage-watched','Frontpage Watched - Square Advertising
Block','1',4,'1'),(4,'Frontpage Recent','frontpage-recent','Frontpage
Recent - Square Advertising Block','0',2,'1'),(6,'Video
Player','video-player','Video Player Bottom (used for per video, per video
category, per sponsor advertising)','0',46,'1'),(7,'Video Browse Left
Advertising','video-browse-left','Video Browse Left Advertising -
Vertical','0',1,'1'),(8,'Video Browse Square
Advertising','video-browse-square','Video Browse Square -
Square','0',1,'1'),(9,'Video Browse Bottom','video-browse-bottom','Video
Browse Bottom - Wide','0',1,'1'),(14,'Video View
Right','video-view-right','Video View Right - Vertical 2
Advertising','0',4,'1'),(76,'Playlist Bottom','playlist-bottom','Wide
Responsive Advertising','0',0,'1'),(17,'Video Search
Square','video-search-square','Video Search - Square
Advertising','0',0,'1'),(18,'Video Search
Bottom','video-search-bottom','Video Search Bottom - Wide Horizontal
Advertising','0',0,'1'),(24,'Community
Bottom','community-bottom','Community Bottom - Wide Horizontal
Advertising','0',1,'1'),(26,'Profile Left','profile-left','Profile Left -
Square Advertising','0',0,'1'),(27,'Profile
Bottom','profile-bottom','Profile Bottom - Wide Horizontal
Advertising','0',0,'1'),(28,'User Left','user-left','User Left - Vertical
Advertising','0',0,'1'),(29,'User Bottom','user-bottom','User Bottom - Wide
Horizontal Advertising','0',0,'1'),(30,'User Lost','user-lost','User Lost
Square Advertising','0',0,'1'),(31,'User Email
Verification','user-confirm','User Email Verification Square
Advertising','0',0,'1'),(32,'Pornstar View Square','pornstar-view','Square
Advertising','0',3,'1'),(33,'Pornstar View
Bottom','pornstar-view-bottom','Pornstar View Bottom Wide
Advertising','0',0,'1'),(34,'User Player','user-player','Special Group For
User Added Player Advertising','0',1,'1'),(35,'Photo Albums Browse
Left','photo-albums-browse-left','Photos Albums Browse Left Vertical
Advertising','0',0,'1'),(36,'Photo Albums Browse
Bottom','photo-albums-browse-bottom','Photos Albums Browse Bottom Wide
Advertising','0',0,'1'),(37,'Photo Album Right','photo-album-right','Photos
Album Right Vertical Advertising','0',2,'1'),(38,'Photo Album
Bottom','photo-album-bottom','Photos Album Right Bottom
Advertising','0',1,'1'),(39,'Photo Right','photo-right','Photos Right
Square Advertising','0',2,'1'),(47,'Global Top','global-top','Global Top
Wide Advertising','0',1,'1'),(48,'Embedded Player
Overlay','player-embed','Embedded Player Overlay
Advertising','0',3,'1'),(49,'Embedded Player Overlay per
Category','player-embed-category','Embedded Player Overlay Advertising per
Video Category','0',3,'1'),(54,'Video Category
Top','video-category-top','Video Category Top
Advertising','0',1,'1'),(55,'Mobile Header','mobile-header','Mobile Header
Advertising','0',1,'1'),(56,'Mobile Footer','mobile-footer','Mobile Footer
Advertising','0',1,'1'),(57,'Mobile Video View','mobile-video-view','Mobile
Video View Advertising','0',0,'1'),(58,'Mobile Photo
View','mobile-photo-view','Mobile Photo View
Advertising','0',0,'1'),(59,'Mobile Pornstar
View','mobile-pornstar-view','Mobile Pornstar View
Advertising','0',0,'1'),(60,'Video Player
Default','video-player-default','Below Flash Player
Global','0',4,'1'),(62,'Pornstar Browse
Bottom','pornstar-browse-bottom','Horizontal Wide
Advertising','0',1,'1'),(63,'Player Overlay','player-overlay','Flash Player
Overlay (preroll/pause/postroll)','0',3,'1'),(64,'Footer
1','footer-1','Footer Square Advertising','0',3,'1'),(65,'Footer
2','footer-2','Footer Square Advertising','0',3,'1'),(66,'Footer
3','footer-3','Footer Square Advertising','0',3,'1'),(67,'Video View Right
1','video-view-right-1','Video View Right Square
Advertising','0',3,'1'),(68,'Video View Right
2','video-view-right-2','Video View Right Square
Advertising','0',3,'1'),(69,'Mobile Interstitial','mobile-inter','Displays
before video play on mobile','0',2,'1'),(70,'Channel
Bottom','channel-bottom','Channel Bottom','0',5,'1'),(71,'Channel
Right','channel-right','Channel Right Square','0',3,'1'),(72,'Video View
Right 3','video-view-right-3','Video View Right
3','0',2,'1'),(73,'Frontpage Featured','frontpage-featured','Frontpage
Featured - Square Advertising','0',1,'1'),(74,'Footer 4','footer-4','Footer
Square Advertising','0',2,'1'),(75,'Playlist Right','playlist-right','Video
Playlist Right Square Advertising','0',2,'1');
/*!40000 ALTER TABLE
`adv_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `adv_player`
--
DROP TABLE IF EXISTS `adv_player`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `adv_player` (
`adv_id`
int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`adv_name` varchar(100) NOT NULL DEFAULT '',
`adv_desc` varchar(255) NOT
NULL DEFAULT '',
`type` enum('text','image','video') NOT NULL DEFAULT
'image',
`title` varchar(255) NOT NULL DEFAULT '',
`description`
varchar(255) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT
'',
`media_type` enum('file','url') NOT NULL DEFAULT 'file',
`media_url` varchar(255) NOT NULL DEFAULT '',
`media_ext` varchar(4) NOT
NULL DEFAULT '',
`cuepoint` mediumint(4) unsigned NOT NULL DEFAULT '0',
`position` mediumint(3) NOT NULL DEFAULT '0',
`duration` mediumint(3)
unsigned NOT NULL DEFAULT '0',
`clicks` int(11) unsigned NOT NULL DEFAULT
'0',
`views` bigint(11) unsigned NOT NULL DEFAULT '0',
`expire` date
NOT NULL DEFAULT '0000-00-00',
`status` enum('0','1') NOT NULL DEFAULT
'1',
PRIMARY KEY (`adv_id`),
KEY `type` (`type`),
KEY `status`
(`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`adv_player`
--
LOCK TABLES `adv_player` WRITE;
/*!40000 ALTER TABLE
`adv_player` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_player` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`adv_player_clicks`
--
DROP TABLE IF EXISTS `adv_player_clicks`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `adv_player_clicks` (
`adv_id` int(11) unsigned NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT
NULL DEFAULT '0',
`referer` varchar(255) NOT NULL DEFAULT '',
`click_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY `ip`
(`ip`),
KEY `click_date` (`click_date`),
KEY `adv_id` (`adv_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`adv_player_clicks`
--
LOCK TABLES `adv_player_clicks` WRITE;
/*!40000
ALTER TABLE `adv_player_clicks` DISABLE KEYS */;
/*!40000 ALTER TABLE
`adv_player_clicks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `adv_player_default`
--
DROP TABLE IF EXISTS
`adv_player_default`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `adv_player_default` (
`player_id` int(11) NOT NULL
DEFAULT '0',
`type` enum('text','image','video') NOT NULL DEFAULT
'text',
`adv_id` int(11) NOT NULL DEFAULT '0',
KEY `player_id`
(`player_id`),
KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `adv_player_default`
--
LOCK TABLES
`adv_player_default` WRITE;
/*!40000 ALTER TABLE `adv_player_default`
DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_player_default` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`adv_player_video`
--
DROP TABLE IF EXISTS `adv_player_video`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `adv_player_video` (
`video_id` int(11) NOT NULL DEFAULT '0',
`type`
enum('text','image','video') NOT NULL DEFAULT 'text',
`adv_id` int(11)
NOT NULL DEFAULT '0',
KEY `video_id` (`video_id`),
KEY `video_type`
(`video_id`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`adv_player_video`
--
LOCK TABLES `adv_player_video` WRITE;
/*!40000 ALTER
TABLE `adv_player_video` DISABLE KEYS */;
/*!40000 ALTER TABLE
`adv_player_video` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `ban`
--
DROP TABLE IF EXISTS `ban`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `ban` (
`ban_id` int(11) NOT
NULL AUTO_INCREMENT,
`ip` int(10) unsigned NOT NULL DEFAULT '0',
`reason` varchar(255) NOT NULL DEFAULT '',
`add_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`expire` date NOT NULL DEFAULT
'0000-00-00',
PRIMARY KEY (`ban_id`),
UNIQUE KEY `ip` (`ip`),
KEY
`add_date` (`add_date`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `ban`
--
LOCK TABLES `ban`
WRITE;
/*!40000 ALTER TABLE `ban` DISABLE KEYS */;
/*!40000 ALTER TABLE
`ban` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`channel`
--
DROP TABLE IF EXISTS `channel`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `channel` (
`channel_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`network_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(100) NOT
NULL DEFAULT '',
`slug` varchar(100) NOT NULL DEFAULT '',
`description`
text NOT NULL,
`url` varchar(255) NOT NULL DEFAULT '',
`thumb`
varchar(4) NOT NULL DEFAULT '',
`logo` varchar(4) NOT NULL DEFAULT '',
`total_videos` int(11) unsigned NOT NULL DEFAULT '0',
`total_views`
int(11) unsigned NOT NULL DEFAULT '0',
`total_duration` int(11) unsigned
NOT NULL DEFAULT '0',
`total_likes` int(11) unsigned NOT NULL DEFAULT
'0',
`total_votes` int(11) unsigned NOT NULL DEFAULT '0',
`total_subscribers` int(11) unsigned NOT NULL DEFAULT '0',
`total_size`
int(11) unsigned NOT NULL DEFAULT '0',
`last_add_time` int(11) unsigned
NOT NULL DEFAULT '0',
`adv_bottom_id` int(11) unsigned NOT NULL DEFAULT
'0',
`adv_right_id` int(11) unsigned NOT NULL DEFAULT '0',
`adv_player_id` int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11)
unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL
DEFAULT '0',
PRIMARY KEY (`channel_id`),
KEY `user_id` (`user_id`),
KEY `slug` (`slug`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `channel`
--
LOCK TABLES `channel`
WRITE;
/*!40000 ALTER TABLE `channel` DISABLE KEYS */;
/*!40000 ALTER TABLE
`channel` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`channel_models`
--
DROP TABLE IF EXISTS `channel_models`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `channel_models` (
`channel_id` int(11) unsigned NOT NULL DEFAULT '0',
`model_id` int(11)
unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`channel_id`,`model_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`channel_models`
--
LOCK TABLES `channel_models` WRITE;
/*!40000 ALTER
TABLE `channel_models` DISABLE KEYS */;
/*!40000 ALTER TABLE
`channel_models` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `channel_networks`
--
DROP TABLE IF EXISTS
`channel_networks`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `channel_networks` (
`network_id` int(11) unsigned NOT
NULL AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '',
`slug` varchar(100) NOT NULL
DEFAULT '',
`description` text NOT NULL,
`total_channels` smallint(5)
unsigned NOT NULL DEFAULT '0',
`total_videos` int(11) unsigned NOT NULL
DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
`update_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`network_id`),
KEY `slug` (`slug`)
) ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `channel_networks`
--
LOCK TABLES
`channel_networks` WRITE;
/*!40000 ALTER TABLE `channel_networks` DISABLE
KEYS */;
/*!40000 ALTER TABLE `channel_networks` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `channel_rating`
--
DROP TABLE IF
EXISTS `channel_rating`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `channel_rating` (
`rating_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`channel_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_ip` int(11)
unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`rating_id`),
KEY `rating_entry` (`channel_id`,`voter_id`,`voter_ip`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`channel_rating`
--
LOCK TABLES `channel_rating` WRITE;
/*!40000 ALTER
TABLE `channel_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE
`channel_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `channel_subscribers`
--
DROP TABLE IF EXISTS
`channel_subscribers`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `channel_subscribers` (
`channel_id` int(11) unsigned
NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`channel_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`channel_subscribers`
--
LOCK TABLES `channel_subscribers` WRITE;
/*!40000
ALTER TABLE `channel_subscribers` DISABLE KEYS */;
/*!40000 ALTER TABLE
`channel_subscribers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `channel_videos`
--
DROP TABLE IF EXISTS
`channel_videos`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `channel_videos` (
`channel_id` int(11) unsigned NOT
NULL DEFAULT '0',
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`channel_id`,`video_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `channel_videos`
--
LOCK TABLES
`channel_videos` WRITE;
/*!40000 ALTER TABLE `channel_videos` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `channel_videos` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `config`
--
DROP TABLE IF EXISTS
`config`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `config` (
`name` varchar(100) NOT NULL DEFAULT '',
`config` text NOT NULL,
`config_cache` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `config`
--
LOCK TABLES `config`
WRITE;
/*!40000 ALTER TABLE `config` DISABLE KEYS */;
INSERT INTO `config`
VALUES
('adultscriptpro','a:44:{s:9:\"site_name\";s:16:\"Adult
Script
Pro\";s:7:\"offline\";s:1:\"0\";s:15:\"offline_message\";s:60:\"Site
is currently under maintenance! Please try again
later.\";s:9:\"meta_desc\";s:27:\"Meta description goes
here!\";s:9:\"meta_keys\";s:20:\"meta, keys, go,
here\";s:10:\"meta_title\";i:1;s:11:\"meta_author\";i:1;s:10:\"email_site\";s:19:\"site@yourdomain.com\";s:11:\"email_admin\";s:20:\"admin@yourdomain.com\";s:13:\"email_noreply\";s:22:\"noreply@yourdomain.com\";s:4:\"gzip\";s:1:\"0\";s:5:\"debug\";s:1:\"1\";s:3:\"log\";s:1:\"0\";s:7:\"profile\";s:1:\"0\";s:5:\"cache\";s:1:\"0\";s:12:\"cache_driver\";s:4:\"none\";s:14:\"cache_lifetime\";i:15;s:14:\"template_cache\";i:0;s:12:\"session_name\";s:3:\"ASP\";s:14:\"session_driver\";s:4:\"none\";s:16:\"session_lifetime\";s:3:\"120\";s:3:\"ads\";s:1:\"0\";s:8:\"timezone\";s:15:\"Europe/Helsinki\";s:12:\"php_cli_path\";s:12:\"/usr/bin/php\";s:6:\"mailer\";s:4:\"mail\";s:8:\"sendmail\";s:0:\"\";s:4:\"smtp\";s:1:\"0\";s:9:\"smtp_auth\";s:1:\"0\";s:9:\"smtp_host\";s:0:\"\";s:9:\"smtp_port\";s:1:\"0\";s:13:\"smtp_username\";s:0:\"\";s:13:\"smtp_password\";s:0:\"\";s:11:\"smtp_prefix\";s:0:\"\";s:9:\"age_check\";s:1:\"0\";s:6:\"editor\";s:8:\"ckeditor\";s:8:\"template\";s:12:\"default-pink\";s:14:\"template_admin\";s:7:\"default\";s:19:\"memcache_persistent\";i:0;s:20:\"memcache_compression\";i:0;s:16:\"memcache_servers\";a:1:{i:0;a:2:{s:6:\"server\";s:9:\"127.0.0.1\";s:4:\"port\";s:5:\"11211\";}}s:17:\"google_webmasters\";s:0:\"\";s:16:\"google_analytics\";s:0:\"\";s:13:\"bing_validate\";s:0:\"\";s:14:\"yahoo_explorer\";s:0:\"\";}','a:52:{s:9:\"site_name\";s:16:\"Adult
Script
Pro\";s:7:\"offline\";s:1:\"0\";s:15:\"offline_message\";s:60:\"Site
is currently under maintenance! Please try again
later.\";s:9:\"meta_desc\";s:27:\"Meta description goes
here!\";s:9:\"meta_keys\";s:20:\"meta, keys, go,
here\";s:10:\"meta_title\";i:1;s:11:\"meta_author\";i:1;s:10:\"email_site\";s:19:\"site@yourdomain.com\";s:11:\"email_admin\";s:20:\"admin@yourdomain.com\";s:13:\"email_noreply\";s:22:\"noreply@yourdomain.com\";s:5:\"debug\";s:1:\"0\";s:3:\"log\";s:1:\"1\";s:5:\"error\";s:1:\"1\";s:7:\"profile\";s:1:\"0\";s:5:\"cache\";s:1:\"0\";s:12:\"cache_driver\";s:4:\"file\";s:14:\"cache_lifetime\";i:15;s:14:\"template_cache\";i:0;s:12:\"session_name\";s:5:\"ASPro\";s:14:\"session_driver\";s:4:\"none\";s:16:\"session_lifetime\";s:3:\"120\";s:3:\"ads\";s:1:\"0\";s:8:\"timezone\";s:3:\"UTC\";s:12:\"php_cli_path\";s:12:\"/usr/bin/php\";s:6:\"mailer\";s:4:\"mail\";s:8:\"sendmail\";s:0:\"\";s:4:\"smtp\";s:1:\"0\";s:9:\"smtp_auth\";s:1:\"1\";s:9:\"smtp_host\";s:0:\"\";s:9:\"smtp_port\";s:1:\"0\";s:13:\"smtp_username\";s:0:\"\";s:13:\"smtp_password\";s:0:\"\";s:11:\"smtp_prefix\";s:0:\"\";s:9:\"age_check\";s:1:\"0\";s:11:\"sphinx_host\";s:9:\"localhost\";s:11:\"sphinx_port\";i:3312;s:12:\"sphinx_index\";s:6:\"videos\";s:6:\"editor\";s:8:\"ckeditor\";s:8:\"template\";s:7:\"defboot\";s:14:\"template_admin\";s:7:\"default\";s:8:\"language\";s:5:\"en-US\";s:14:\"multi_language\";i:1;s:19:\"memcache_persistent\";i:0;s:20:\"memcache_compression\";i:0;s:16:\"memcache_servers\";a:1:{i:0;a:2:{s:6:\"server\";s:9:\"127.0.0.1\";s:4:\"port\";s:5:\"11211\";}}s:17:\"google_webmasters\";s:0:\"\";s:16:\"google_analytics\";s:0:\"\";s:13:\"bing_validate\";s:0:\"\";s:14:\"yahoo_explorer\";s:0:\"\";s:13:\"comment_delay\";i:30;s:15:\"akismet_enabled\";i:0;s:11:\"akismet_key\";s:0:\"\";}');
/*!40000
ALTER TABLE `config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `cron`
--
DROP TABLE IF EXISTS `cron`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `cron` (
`cron_id` int(11)
unsigned NOT NULL AUTO_INCREMENT,
`module` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL,
`slug` varchar(100) NOT NULL,
`period`
int(11) unsigned NOT NULL DEFAULT '0',
`exec_time` int(11) unsigned NOT
NULL DEFAULT '0',
`exec_status` tinyint(1) unsigned NOT NULL DEFAULT
'0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`cron_id`),
UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `cron`
--
LOCK TABLES `cron`
WRITE;
/*!40000 ALTER TABLE `cron` DISABLE KEYS */;
INSERT INTO `cron`
VALUES (9,'video','Video
Queue','video_queue',1,1428577227,1,1),(10,'video','Video
Shedule','video_shedule',10,1428576711,1,1),(11,'video','Video
Shuffle','video_shuffle',60,1417172394,1,0),(12,'video','Video
Views','video_views',1440,1428571982,1,1),(13,'video','Video
Feed','video_feed',60,1425023850,1,0),(14,'link','Backlink
Check','link_check',1440,1418142236,1,0),(15,'photo','Photo
Views','photo_views',1440,1428571982,1,1),(16,'core','Session
Cleanup','core_session',1440,1428571982,1,1),(17,'user','User Guest
Clean','user_guest',1440,1428571982,1,1),(18,'video','Extract All
Thumbs','video_thumb',5,0,0,0),(19,'video','Extract All Player
Thumbs','video_thumb_player',5,0,0,0),(20,'video','Convert all FVL to
MP4','video_convert',1,0,0,0),(21,'core','Sitemap','core_sitemap',1440,1428571982,1,1),(22,'video','Video
Sitemap','video_sitemap',1440,1428571982,1,1);
/*!40000 ALTER TABLE `cron`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`email`
--
DROP TABLE IF EXISTS `email`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `email` (
`email_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(99) NOT NULL DEFAULT '',
`description` text NOT NULL,
`subject` varchar(255) NOT NULL DEFAULT '',
`message` text NOT NULL,
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`email_id`),
KEY `name` (`name`),
KEY `status` (`status`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `email`
--
LOCK TABLES
`email` WRITE;
/*!40000 ALTER TABLE `email` DISABLE KEYS */;
INSERT INTO
`email` VALUES (1,'user-welcome','User Welcome/Register Email','Welcome to
[#SITE_NAME#]','Welcome to [#SITE_NAME#]\r\n\r\nTo login use the following
credentials:\r\nUsername: [#USERNAME#]\r\nPassword: [#PASSWORD#]\r\n\r\nTo
change your avatar, follow the link below:\r\n<a
href=\"[#AVATAR_URL#]\">[#AVATAR_URL#]</a>\r\n\r\nThanks,\r\nThe
<a href=\"[#BASE_URL#]\">[#SITE_NAME#]</a>
Team\r\n\r\n___\r\nTo control which emails you receive from [#SITE_NAME#]?
Go to: <a
href=\"[#NOTIFS_URL#]\">[#NOTIFS_URL#]</a>','1'),(2,'user-verify','User
Email Verification','[#SITE_NAME#] Email Confirmation','Dear
[#USERNAME#],\r\n\r\nYou recently registered to <a
href=\"[#BASE_URL#]\">[#SITE_NAME#]</a> using this email
address. To complete your registration, follow the link below:\r\n\r\n<a
href=\"[#CONFIRM_URL#]\">[#CONFIRM_URL#]</a> (If
clicking on the link doesn\'t work, try copying and pasting it into your
browser.)\r\n\r\nThanks,\r\nThe <a
href=\"[#BASE_URL#]\">[#SITE_NAME#]</a>
Team\r\n\r\n___\r\nTo control which emails you receive from [#SITE_NAME#]?
Go to: <a
href=\"[#NOTIFS_URL#]\">[#NOTIFS_URL#]</a>','1'),(3,'video-comment','Video
Comment Notification Email','[#USERNAME#] commented on your video!','Dear
[#OWNER#]:\r\n\r\n[#USERNAME#] just posted a comment on your <a
href=\"[#VIDEO_URL#]\">video</a>.\r\n\r\nTo checkout
your comments for this video follow the link below: <a
href=\"[#VIDEO_URL#]\">[#VIDEO_URL#]</a>\r\n\r\nTo
approve/deny comments for this video follow the link below: <a
href=\"[#DASHBOARD_URL#]\">[#DASHBOARD_URL#]</a>\r\n\r\nThanks,\r\nThe
<a href=\"[#BASE_URL#]\">[#SITE_NAME#]</a>
Team\r\n\r\n___\r\nTo control which emails you receive from [#SITE_NAME#]?
Go to: <a
href=\"[#NOTIFS_URL#]\">[#NOTIFS_URL#]</a>','1'),(4,'user-message','User
New Message Notification Email','[#USERNAME#] sent you a message:
[#SUBJECT#]','[#PROFILE_URL#] sent you a
message:\r\n\r\n<strong>[#SUBJECT#]</strong>\r\n[#MESSAGE#]\r\n\r\nYou
can reply to this message by visiting your <a
href=\"[#INBOX_URL#]\">inbox</a>.\r\n\r\n___\r\nTo
control which emails you receive from [#SITE_NAME#]? Go to: <a
href=\"[#NOTIFS_URL#]\">[#NOTIFS_URL#]</a>','1'),(5,'user-lost','Recover
password and/or useranme email!','[#SITE_NAME#] Password Recovery
Email','Dear [#USERNAME#],\r\n\r\nHere is your username and
password:\r\nUsername: [#USERNAME#]\r\nPassword: [#PASSWORD#]\r\n\r\nTo
login to your account follow the link below:\r\n\r\n<a
href=\"[#BASE_URL#]/user/login/\">[#BASE_URL#]/user/login/</a>
(If clicking on the link doesn\'t work, try copying and pasting it into
your browser.)\r\n\r\nThanks,\r\nThe [#SITE_NAME#] Team\r\n\r\n___\r\nTo
control which emails you receive from [#SITE_NAME#]? Go to: <a
href=\"[#NOTIFS_URL#]\">[#NOTIFS_URL#]</a>','1'),(6,'mobile-share-video','Mobile
Share Video Email','Great Video \"[#TITLE#]\" from
[#SITE_NAME#]','Hi,\n\nA user thaught you might enjoy this video:\n<a
href=\"[#VIDEO_URL#]\"><img src=\"[#IMG_URL#]\"
/></a>\n\n[#MESSAGE#]\n\n<a
href=\"[#VIDEO_URL#]\">Click here to watch full
video</a>\n\nThanks,\nThe <a
href=\"[#BASE_URL#]\">[#SITE_NAME#]</a>
Team','1'),(7,'mobile-share-photo','Mobile Share Photo Email','Great Photo
\"[#TITLE#]\" from [#SITE_NAME#]','Hi,\n\nA user thaught you
might enjoy this photo:\n<a href=\"[#PHOTO_URL#]\"><img
src=\"[#IMG_URL#]\" /></a>\n\n[#MESSAGE#]\n\n<a
href=\"[#PHOTO_URL#]\">Click here to view
photo</a>\n\nThanks,\nThe <a
href=\"[#BASE_URL#]\">[#SITE_NAME#]</a>
Team','1'),(8,'video-flag','Video Flag Notification','Video Flagged on
[#SITE_NAME#]','A video was flagged as [#FLAG#] on [#URL#]. Please check
your Control Panel and take the necesary actions!\n\nThank
you,\n\"Your Server\"','1'),(9,'premium-expire','Premium User
Expire Notification','Your premium subscription has expired!','Dear
[#USERNAME#],\n\nYour premium subscription on [#SITE_NAME#] ([#SITE_URL#])
has expired!\n\nYou can always renew your subscription by visiting the
following url: [#URL#]\n\nThank You,\nThe [#SITE_NAME#]
Team','1'),(10,'premium-notification','Premium User Pre Expire
Notification','Your premium subscription will expire!','Dear
[#USERNAME#],\n\nYour premium subscription on [#SITE_NAME#] ([#SITE_URL#])
will expire in [#DAYS#] day[#S#]! You can renew your subscription by
visiting the following url:\n[#URL#]\n\nThank You,\nThe [#SITE_NAME#]
Team','1');
/*!40000 ALTER TABLE `email` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `forum`
--
DROP TABLE IF EXISTS
`forum`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum` (
`forum_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`cat_id` int(11)
unsigned NOT NULL DEFAULT '0',
`slug` varchar(100) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text NOT NULL,
`meta_title` varchar(255) NOT NULL DEFAULT '',
`meta_desc` varchar(255)
NOT NULL DEFAULT '',
`meta_keys` varchar(255) NOT NULL DEFAULT '',
`total_topics` int(11) unsigned NOT NULL DEFAULT '0',
`total_posts`
int(11) unsigned NOT NULL DEFAULT '0',
`last_post_id` int(11) unsigned
NOT NULL DEFAULT '0',
`pos` int(11) unsigned NOT NULL DEFAULT '0',
`access` int(11) unsigned NOT NULL DEFAULT '0',
`perms` int(11) unsigned
NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL DEFAULT '0000-00-00
00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`forum_id`),
KEY `cat_id` (`cat_id`),
KEY `slug` (`slug`),
KEY
`access` (`access`),
KEY `pos` (`pos`),
KEY `status` (`status`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `forum`
--
LOCK TABLES
`forum` WRITE;
/*!40000 ALTER TABLE `forum` DISABLE KEYS */;
/*!40000 ALTER
TABLE `forum` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `forum_categories`
--
DROP TABLE IF EXISTS
`forum_categories`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `forum_categories` (
`cat_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`description` text NOT NULL,
`pos` int(11) NOT NULL DEFAULT '0',
`total_forums` int(11) unsigned NOT
NULL DEFAULT '0',
`access` int(11) unsigned NOT NULL DEFAULT '0',
`perms` int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT
NULL DEFAULT '1',
`slug` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY
(`cat_id`),
KEY `name` (`name`),
KEY `access` (`access`),
KEY
`status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`forum_categories`
--
LOCK TABLES `forum_categories` WRITE;
/*!40000 ALTER
TABLE `forum_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE
`forum_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `forum_posts`
--
DROP TABLE IF EXISTS `forum_posts`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `forum_posts` (
`post_id`
int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL DEFAULT
'0',
`forum_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT
NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`content`
text NOT NULL,
`total_views` bigint(20) NOT NULL DEFAULT '0',
`total_replies` int(11) NOT NULL DEFAULT '0',
`edited` enum('0','1') NOT
NULL DEFAULT '0',
`edit_username` varchar(100) NOT NULL DEFAULT '',
`edit_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`add_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_post_username`
varchar(100) NOT NULL DEFAULT '',
`last_post_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`ip` int(10) unsigned NOT NULL DEFAULT
'0',
`rating` float NOT NULL DEFAULT '0',
`rated_by` bigint(20) NOT
NULL DEFAULT '0',
`access` int(11) unsigned NOT NULL DEFAULT '0',
`perms` int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT
NULL DEFAULT '1',
`locked` enum('0','1') NOT NULL DEFAULT '0',
`closed`
enum('0','1') NOT NULL DEFAULT '0',
`sticky` enum('0','1') NOT NULL
DEFAULT '0',
`edit_reason` varchar(255) NOT NULL DEFAULT '',
PRIMARY
KEY (`post_id`),
KEY `parent_id` (`parent_id`),
KEY `forum_id`
(`forum_id`),
KEY `user_id` (`user_id`),
KEY `last_post_date`
(`last_post_date`),
KEY `access` (`access`),
KEY `status` (`status`),
KEY `title` (`title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`forum_posts`
--
LOCK TABLES `forum_posts` WRITE;
/*!40000 ALTER TABLE
`forum_posts` DISABLE KEYS */;
/*!40000 ALTER TABLE `forum_posts` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`forum_tags`
--
DROP TABLE IF EXISTS `forum_tags`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `forum_tags` (
`post_id`
int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
KEY `post_id` (`post_id`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `forum_tags`
--
LOCK TABLES `forum_tags`
WRITE;
/*!40000 ALTER TABLE `forum_tags` DISABLE KEYS */;
/*!40000 ALTER
TABLE `forum_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `guest`
--
DROP TABLE IF EXISTS `guest`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `guest` (
`guest_id` int(11)
NOT NULL AUTO_INCREMENT,
`ip` bigint(20) NOT NULL DEFAULT '0',
`last_visit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`bandwidth`
int(11) NOT NULL DEFAULT '0',
`duration` float NOT NULL DEFAULT '0',
`views` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`guest_id`),
KEY
`ip` (`ip`),
KEY `last_visit` (`last_visit`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `guest`
--
LOCK TABLES `guest`
WRITE;
/*!40000 ALTER TABLE `guest` DISABLE KEYS */;
/*!40000 ALTER TABLE
`guest` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`kb`
--
DROP TABLE IF EXISTS `kb`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `kb` (
`kb_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`cat_id` int(11) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`kb_title` varchar(255) NOT NULL DEFAULT
'',
`kb_content` text NOT NULL,
`total_views` bigint(11) NOT NULL
DEFAULT '0',
`likes` int(11) unsigned NOT NULL DEFAULT '0',
`dislikes`
int(11) unsigned NOT NULL DEFAULT '0',
`edit_id` int(11) NOT NULL DEFAULT
'0',
`edit_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status`
enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`kb_id`),
KEY `cat_id`
(`cat_id`),
KEY `user_id` (`user_id`),
KEY `total_views`
(`total_views`),
KEY `status` (`status`),
FULLTEXT KEY `kb_search`
(`kb_title`,`kb_content`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `kb`
--
LOCK TABLES `kb` WRITE;
/*!40000 ALTER TABLE `kb` DISABLE
KEYS */;
/*!40000 ALTER TABLE `kb` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `kb_categories`
--
DROP TABLE IF EXISTS
`kb_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE
`kb_categories` (
`cat_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id`
int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`slug` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT
NULL DEFAULT '',
`total_articles` int(11) NOT NULL DEFAULT '0',
`pos`
int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL
DEFAULT '1',
PRIMARY KEY (`cat_id`),
UNIQUE KEY `slug` (`slug`),
KEY
`parent_id` (`parent_id`),
KEY `pos` (`pos`),
KEY `status` (`status`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `kb_categories`
--
LOCK
TABLES `kb_categories` WRITE;
/*!40000 ALTER TABLE `kb_categories` DISABLE
KEYS */;
/*!40000 ALTER TABLE `kb_categories` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `language`
--
DROP TABLE IF
EXISTS `language`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `language` (
`code` varchar(12) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`flag` varchar(3) NOT NULL
DEFAULT '',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`code`),
KEY `name` (`name`),
KEY `status` (`status`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `language`
--
LOCK TABLES `language`
WRITE;
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
INSERT INTO
`language` VALUES ('en-US','English (United States)','us','1');
/*!40000
ALTER TABLE `language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table
structure for table `language_files`
--
DROP TABLE IF EXISTS
`language_files`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `language_files` (
`file_id` int(11) NOT NULL
AUTO_INCREMENT,
`code` varchar(12) NOT NULL DEFAULT '',
`name`
varchar(100) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL
DEFAULT '',
`type` enum('frontend','backend','plugin') NOT NULL DEFAULT
'frontend',
`file` text NOT NULL,
PRIMARY KEY (`file_id`),
KEY `code`
(`code`),
KEY `name` (`name`),
KEY `type` (`type`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`language_files`
--
LOCK TABLES `language_files` WRITE;
/*!40000 ALTER
TABLE `language_files` DISABLE KEYS */;
INSERT INTO `language_files` VALUES
(2,'en-US','video','Frontend Video Module Language
File','frontend','a:151:{s:6:\"rule-6\";s:88:\"Upload your
own porn. If the file you upload is copyrighted we will remove it
instantly!\";s:6:\"rule-5\";s:115:\"No content
involving underage persons, animals, rape, incest, violence, blood,
shitting or other disgusting
things!\";s:6:\"rule-4\";s:70:\"Supported file types:
flv, mp4, mkv, mov, avi, wmv, mpeg, 3gp and
asf!\";s:6:\"rule-3\";s:29:\"Daily file uploads limit:
10!\";s:6:\"rule-2\";s:17:\"Max categories
3!\";s:6:\"rule-1\";s:19:\"Max filesize
100MB!\";s:12:\"upload-rules\";s:17:\"Upload
Guidelines\";s:18:\"playlist-name-used\";s:47:\"You
already have a playlist with the same
name!\";s:19:\"playlist-create-new\";s:19:\"Create New
Playlist\";s:12:\"playlist-add\";s:15:\"Add to
Playlist\";s:14:\"favorite-login\";s:55:\"Please %s
Login%s to add videos to your favorites
list!\";s:14:\"playlist-login\";s:45:\"Please %s
Login%s to add videos to
playlists!\";s:12:\"no-playlists\";s:17:\"No playlists
yet!\";s:15:\"playlists-title\";s:14:\"%s
Playlists%s\";s:20:\"playlists-meta-title\";s:19:\"%s
Playlists%s -
%s\";s:23:\"playlist-favorite-login\";s:35:\"Please
login to favorite
playlists!\";s:21:\"playlist-favorite-own\";s:38:\"You
cannot favorite your own
playlist!\";s:25:\"playlist-favorite-already\";s:36:\"You
already favorited this
playlist!\";s:16:\"playlist-updated\";s:17:\"Playlist
updated!\";s:21:\"playlist-type-invalid\";s:22:\"Invalid
playlist
type!\";s:20:\"playlist-name-length\";s:53:\"Playlist
name cannot contain more than 99
characters!\";s:19:\"playlist-name-empty\";s:30:\"Playlist
name cannot be
empty!\";s:13:\"playlist-edit\";s:13:\"Edit
Playlist\";s:16:\"playlist-deleted\";s:17:\"Playlist
deleted!\";s:13:\"playlist-play\";s:13:\"Play
Playlist\";s:13:\"playlist-view\";s:13:\"View
Playlist\";s:18:\"playlist-meta-desc\";s:30:\"Watch %s
Video Playlist at
%s.\";s:19:\"playlist-meta-title\";s:24:\"%s - Video
Playlist - %s\";s:13:\"playlist-link\";s:21:\"Link to
this
playlist\";s:15:\"playlist-videos\";s:15:\"Playlist
Videos\";s:12:\"dislike-help\";s:21:\"I dislike this
video!\";s:9:\"like-help\";s:18:\"I like this
video!\";s:21:\"playlist-dislike-help\";s:24:\"I
dislike this
playlist!\";s:18:\"playlist-like-help\";s:21:\"I like
this
playlist!\";s:19:\"playlist-share-help\";s:20:\"Share
this
playlist!\";s:22:\"playlist-favorite-help\";s:41:\"Add
this playlist to your favorites
list!\";s:16:\"playlist-shuffle\";s:7:\"Shuffle\";s:13:\"playlist-prev\";s:10:\"Prev
Video\";s:13:\"playlist-next\";s:10:\"Next
Video\";s:13:\"playlist-help\";s:29:\"Add this video to
a playlist!\";s:13:\"playlist-none\";s:63:\"You didnt
create any playlists yet! Create your first
playlist!\";s:13:\"video-results\";s:13:\"Video
Results\";s:8:\"no-query\";s:33:\"Please enter your
search keyword!\";s:15:\"no-videos-found\";s:24:\"No
videos found for:
%s.\";s:11:\"select-file\";s:11:\"Select
File\";s:13:\"more-comments\";s:13:\"More
Comments\";s:12:\"more-related\";s:19:\"More Related
Videos\";s:13:\"download-help\";s:20:\"Download this
video!\";s:11:\"report-help\";s:18:\"Report this
video!\";s:10:\"share-help\";s:26:\"Share or embed this
video!\";s:13:\"favorite-help\";s:38:\"Add this video
to your favorites
list!\";s:16:\"favorite-already\";s:37:\"Video already
in your favorites
list!\";s:11:\"view-access\";s:42:\"Please login as a
%s user to watch
videos!\";s:15:\"download-access\";s:45:\"Please login
as a %s user to download
videos!\";s:5:\"Views\";s:5:\"Views\";s:12:\"report-video\";s:12:\"Report
Video\";s:14:\"related-videos\";s:14:\"Related
Videos\";s:9:\"long-desc\";s:17:\"Long (>= 20
mins)\";s:11:\"medium-desc\";s:18:\"Medium (5-20
mins)\";s:10:\"short-desc\";s:17:\"Short (<= 5
mins)\";s:13:\"all-durations\";s:13:\"All
Durations\";s:11:\"tags-length\";s:61:\"Tags must
contain at least %s and no more than %s
characters!\";s:13:\"video-deleted\";s:23:\"This video
was deleted!\";s:12:\"category-max\";s:45:\" Video can
be added to maximum %s
categories!\";s:10:\"no-related\";s:24:\"No related
videos found!\";s:16:\"playlist-private\";s:80:\"This
playlist is private! You need to be friends with %s to watch this
playlist!\";s:17:\"related-meta-desc\";s:42:\"Watch
videos related to %s, page %s at
%s!\";s:18:\"related-meta-title\";s:20:\"Videos related
to %s\";s:13:\"related-title\";s:21:\"Videos related
to: %s\";s:16:\"playlist-already\";s:26:\"Video already
in
playlist!\";s:23:\"playlist-select-success\";s:50:\"Your
video was successfuly added to your
playlist!\";s:23:\"playlist-create-success\";s:33:\"Playlist
created and video
added!\";s:16:\"playlist-invalid\";s:22:\"Invalid
playlist
type!\";s:14:\"playlist-empty\";s:41:\"Playlist name
field cannot be left
blank!\";s:15:\"playlist-select\";s:15:\"Select
Playlist\";s:15:\"playlist-create\";s:15:\"Create
Playlist\";s:9:\"tag-words\";s:35:\"Tag %s contains
more than %s words!\";s:10:\"tag-length\";s:40:\"Tag %s
contains more than %s
characters!\";s:5:\"watch\";s:5:\"Watch\";s:13:\"download-link\";s:37:\"Click
to download video in %s
format!\";s:21:\"favorite-remove-login\";s:55:\"Please
login to remove videos from your favorites
list!\";s:16:\"favorite-invalid\";s:56:\"Invalid video
favorite! Are you sure this video
exists!?\";s:23:\"favorite-remove-success\";s:39:\"Video
removed from your favorites
list!\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate videos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own video to
favorites!\";s:16:\"favorite-success\";s:39:\"Video
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
video comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:29:\"Your comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:16:\"comment-allow-no\";s:51:\"You are not
allowed to post comments on this
video!\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:15:\"submenu-related\";s:14:\"RELATED
VIDEOS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:11:\"flag-button\";s:11:\"Send
Report\";s:5:\"other\";s:5:\"Other\";s:17:\"video-not-playing\";s:18:\"Video
not
playing!\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:10:\"embed-help\";s:30:\"Embed
this video on your
site!\";s:9:\"flag-help\";s:16:\"Flag this
video!\";s:13:\"video-private\";s:74:\"This video is
private! You need to be friends with %s to watch this
video!\";s:9:\"uploading\";s:24:\"UPLOADING...PLEASE
WAIT!\";s:6:\"no-tag\";s:38:\"No videos tagged
'%s'
found!\";s:9:\"tag-title\";s:30:\"Videos Tagged
'%s'%s\";s:14:\"tag-meta-title\";s:35:\"Videos
Tagged '%s'%s -
%s\";s:9:\"no-search\";s:51:\"No videos found while
searching for
'%s'!\";s:17:\"search-meta-title\";s:27:\"%sVideo
Results for %s -
%s\";s:15:\"edit-guidelines\";s:15:\"Edit
Guidelines\";s:11:\"edit-button\";s:12:\"Update
Video\";s:5:\"thumb\";s:5:\"Thumb\";s:14:\"allow-download\";s:14:\"Allow
Download\";s:13:\"allow-comment\";s:13:\"Allow
Comment\";s:12:\"allow-rating\";s:12:\"Allow
Rating\";s:11:\"allow-embed\";s:11:\"Allow
Embed\";s:10:\"edit-title\";s:13:\"Editing
Video\";s:12:\"edit-success\";s:14:\"Video
updated!\";s:13:\"video-invalid\";s:47:\"Invalid video!
Are you sure this video
exists!?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:17:\"browse-meta-title\";s:16:\"%s Videos%s -
%s\";s:12:\"browse-title\";s:11:\"%s
Videos%s\";s:12:\"post-comment\";s:12:\"Post
Comment\";s:17:\"no-related-videos\";s:24:\"No related
videos
found!\";s:5:\"embed\";s:5:\"Embed\";s:17:\"upload-guidelines\";s:17:\"Upload
Guidelines\";s:14:\"upload-approve\";s:63:\"Uploaded!
You will receive a email once your video is
approved!\";s:12:\"upload-queue\";s:84:\"Uploaded! You
will receive a email once your video has been processed and
published!\";s:14:\"upload-success\";s:70:\"Uploaded!
Your video will be processed and published in a few
minutes!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:16:\"category-invalid\";s:52:\"Invalid
video category! What exactly did you
check!?\";s:11:\"upload-perm\";s:38:\"Please login as a
%s to upload
videos!\";s:15:\"upload-disabled\";s:61:\"Video uploads
are currently disabled! Please try again
later!\";s:12:\"upload-video\";s:12:\"Upload
Video\";s:12:\"file-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:10:\"file-empty\";s:41:\"Please select a video
file for uploading!\";s:10:\"tags-empty\";s:33:\"Please
enter tags for this
video!\";s:14:\"category-empty\";s:63:\"Please check at
least one and no more than %s video
categories!\";s:12:\"title-length\";s:58:\"Video title
field cannot contain more than 100
characters!\";s:11:\"title-empty\";s:39:\"Video title
field cannot be left
blank!\";s:17:\"video-information\";s:17:\"VIDEO
INFORMATION\";s:10:\"video-file\";s:10:\"VIDEO
FILE\";}'),(3,'en-US','global','Global Frontend Language
File','frontend','a:269:{s:5:\"visit\";s:5:\"Visit\";s:10:\"contact-us\";s:10:\"Contact
Us\";s:16:\"content-partners\";s:16:\"Content
Partners\";s:10:\"webmasters\";s:10:\"Webmasters\";s:9:\"advertise\";s:9:\"Advertise\";s:6:\"mobile\";s:6:\"Mobile\";s:5:\"reset\";s:5:\"Reset\";s:6:\"letter\";s:6:\"Letter\";s:7:\"comment\";s:7:\"Comment\";s:11:\"unsubscribe\";s:11:\"Unsubscribe\";s:9:\"subscribe\";s:9:\"Subscribe\";s:2:\"hd\";s:2:\"HD\";s:16:\"related-searches\";s:16:\"Related
Searches\";s:8:\"relevant\";s:8:\"Relevant\";s:8:\"duration\";s:8:\"Duration\";s:4:\"long\";s:4:\"Long\";s:6:\"medium\";s:6:\"Medium\";s:5:\"short\";s:5:\"Short\";s:9:\"this-year\";s:9:\"This
Year\";s:10:\"this-month\";s:10:\"This
Month\";s:9:\"this-week\";s:9:\"This
Week\";s:12:\"post-comment\";s:12:\"Post
Comment\";s:11:\"vote-thanks\";s:18:\"Thanks for
voting!\";s:12:\"vote-already\";s:14:\"Already
voted!\";s:9:\"vote-down\";s:10:\"Vote
Down!\";s:7:\"vote-up\";s:8:\"Vote
Up!\";s:9:\"show-more\";s:9:\"Show
More\";s:13:\"more-comments\";s:13:\"More
Comments\";s:15:\"characters-left\";s:16:\"characters
left.\";s:4:\"guys\";s:4:\"Guys\";s:4:\"both\";s:4:\"Both\";s:13:\"upload-photos\";s:13:\"Upload
Photos\";s:13:\"upload-videos\";s:13:\"Upload
Videos\";s:6:\"logout\";s:6:\"Logout\";s:5:\"close\";s:5:\"Close\";s:12:\"login-failed\";s:33:\"Invalid
username and/or
password!\";s:13:\"login-success\";s:17:\"Login
successful!\";s:11:\"login-empty\";s:40:\"Please enter
your username and
password!\";s:8:\"download\";s:8:\"Download\";s:6:\"thumbs\";s:6:\"Thumbs\";s:8:\"comments\";s:8:\"Comments\";s:7:\"sign-up\";s:7:\"Sign
Up\";s:16:\"create-playlists\";s:16:\"Create
Playlists\";s:13:\"add-favorites\";s:28:\"Add Videos To
Your Favorites\";s:13:\"post-comments\";s:13:\"Post
Comments\";s:19:\"create-your-profile\";s:25:\"HomCreate
Your
Profile\";s:20:\"upload-videos-photos\";s:22:\"Upload
Videos & Photos\";s:12:\"not-a-member\";s:17:\"Not
a member yet?\";s:18:\"my-favorite-photos\";s:18:\"My
Favorite Photos\";s:9:\"my-albums\";s:9:\"My
Albums\";s:18:\"my-favorite-videos\";s:18:\"My Favorite
Videos\";s:12:\"my-playlists\";s:12:\"My
Playlists\";s:12:\"edit-picture\";s:20:\"Edit Profile
Picture\";s:8:\"messages\";s:8:\"Messages\";s:11:\"my-comments\";s:11:\"My
Comments\";s:14:\"my-subscribers\";s:14:\"My
Subscribers\";s:16:\"my-subscriptions\";s:16:\"My
Subscriptions\";s:10:\"my-friends\";s:10:\"My
Friends\";s:15:\"my-view-history\";s:15:\"My View
History\";s:9:\"my-videos\";s:9:\"My
Videos\";s:16:\"edit-advertising\";s:16:\"Edit
Advertising\";s:18:\"edit-notifications\";s:18:\"Edit
Notifications\";s:16:\"edit-preferences\";s:16:\"Edit
Preferences\";s:12:\"edit-profile\";s:12:\"Edit
Profile\";s:12:\"edit-account\";s:12:\"Edit
Account\";s:10:\"downloaded\";s:10:\"Downloaded\";s:9:\"relevance\";s:9:\"Relevance\";s:9:\"favorited\";s:9:\"Favorited\";s:9:\"discussed\";s:9:\"Discussed\";s:8:\"all-time\";s:8:\"All
Time\";s:9:\"yesterday\";s:9:\"Yesterday\";s:5:\"today\";s:5:\"Today\";s:8:\"remember\";s:29:\"Remember
me on this
computer?\";s:16:\"confirm-question\";s:35:\"Did not
receive confirmation
email?\";s:13:\"lost-question\";s:35:\"Lost your
username and/or
password?\";s:11:\"login-title\";s:12:\"Member
Login\";s:8:\"channels\";s:8:\"Channels\";s:7:\"channel\";s:7:\"Channel\";s:5:\"liked\";s:5:\"Liked\";s:4:\"like\";s:4:\"Like\";s:4:\"page\";s:4:\"Page\";s:7:\"watched\";s:7:\"Watched\";s:5:\"rated\";s:5:\"Rated\";s:8:\"pornstar\";s:8:\"Pornstar\";s:5:\"watch\";s:5:\"Watch\";s:9:\"men-women\";s:13:\"Men
and
Women\";s:5:\"women\";s:5:\"Women\";s:3:\"men\";s:3:\"Men\";s:9:\"playlists\";s:9:\"Playlists\";s:8:\"playlist\";s:8:\"Playlist\";s:4:\"days\";s:4:\"days\";s:8:\"nickname\";s:8:\"Nickname\";s:3:\"day\";s:3:\"day\";s:11:\"advertising\";s:11:\"Advertising\";s:8:\"add-link\";s:8:\"Add
Link\";i:2257;s:4:\"2257\";s:4:\"DMCA\";s:4:\"DMCA\";s:3:\"faq\";s:3:\"FAQ\";s:6:\"policy\";s:14:\"Privacy
Policy\";s:5:\"terms\";s:16:\"Terms of
Service\";s:4:\"date\";s:4:\"Date\";s:13:\"message-empty\";s:26:\"Please
enter your
message!\";s:8:\"december\";s:8:\"December\";s:8:\"november\";s:8:\"November\";s:7:\"october\";s:7:\"October\";s:9:\"september\";s:9:\"September\";s:6:\"august\";s:6:\"August\";s:4:\"july\";s:4:\"July\";s:4:\"june\";s:4:\"June\";s:3:\"may\";s:3:\"May\";s:5:\"april\";s:5:\"April\";s:5:\"march\";s:5:\"March\";s:8:\"february\";s:8:\"February\";s:7:\"january\";s:7:\"January\";s:10:\"spam-login\";s:38:\"Please
login to mark comments as
spam!\";s:12:\"spam-success\";s:27:\"Comment was marked
as spam!\";s:14:\"report-already\";s:16:\"Already
flagged!\";s:14:\"reason-invalid\";s:15:\"Invalid
reason!\";s:14:\"report-success\";s:12:\"Report
sent!\";s:9:\"very-good\";s:9:\"Very
Good\";s:4:\"good\";s:4:\"Good\";s:2:\"ok\";s:2:\"OK\";s:3:\"hmm\";s:3:\"Hmm\";s:5:\"works\";s:5:\"Works\";s:7:\"average\";s:7:\"Average\";s:4:\"poor\";s:4:\"Poor\";s:9:\"very-poor\";s:9:\"Very
poor\";s:8:\"whatever\";s:8:\"Whatever\";s:6:\"bleaks\";s:6:\"Bleaks\";s:13:\"no-categories\";s:18:\"No
categories
yet!\";s:4:\"next\";s:4:\"Next\";s:4:\"prev\";s:4:\"Prev\";s:13:\"being-watched\";s:13:\"Being
Watched\";s:7:\"longest\";s:7:\"Longest\";s:15:\"most-downloaded\";s:15:\"Most
Downloaded\";s:9:\"uploading\";s:23:\"UPLOADING...PLEASE
WAIT\";s:13:\"image-invalid\";s:44:\"Invalid file
format! Allowed extensions:
%s!\";s:11:\"image-empty\";s:48:\"Please upload at
least one image for this
album!\";s:8:\"optional\";s:8:\"optional\";s:11:\"flag-button\";s:11:\"SUBMIT
FLAG\";s:5:\"other\";s:5:\"Other\";s:20:\"copyrighted-material\";s:20:\"Copyrighted
Material\";s:8:\"underage\";s:8:\"Underage\";s:13:\"inappropriate\";s:13:\"Inappropriate\";s:7:\"private\";s:7:\"Private\";s:6:\"public\";s:6:\"Public\";s:4:\"type\";s:4:\"Type\";s:4:\"link\";s:4:\"Link\";s:4:\"vids\";s:6:\"videos\";s:12:\"most-popular\";s:12:\"Most
Popular\";s:14:\"most-favorites\";s:14:\"Most
Favorites\";s:3:\"all\";s:3:\"All\";s:4:\"coms\";s:8:\"comments\";s:4:\"pics\";s:6:\"photos\";s:3:\"pic\";s:5:\"photo\";s:4:\"less\";s:4:\"less\";s:4:\"more\";s:4:\"more\";s:6:\"photos\";s:6:\"Photos\";s:6:\"albums\";s:6:\"Albums\";s:2:\"on\";s:2:\"on\";s:2:\"by\";s:2:\"by\";s:6:\"reason\";s:6:\"Reason\";s:7:\"content\";s:7:\"Content\";s:6:\"search\";s:6:\"Search\";s:7:\"404-msg\";s:57:\"We're
sorry, the page you requested cannot be
found!\";s:14:\"404-meta-title\";s:13:\"404 Not
Found\";s:6:\"remove\";s:6:\"Remove\";s:6:\"delete\";s:6:\"Delete\";s:4:\"edit\";s:4:\"Edit\";s:4:\"spam\";s:4:\"Spam\";s:13:\"login-already\";s:26:\"You
are already logged
in!\";s:8:\"password\";s:8:\"Password\";s:4:\"deny\";s:4:\"Deny\";s:6:\"accept\";s:6:\"Accept\";s:18:\"preferences-update\";s:18:\"UPDATE
PREFERENCES\";s:4:\"auto\";s:4:\"Auto\";s:7:\"approve\";s:7:\"Approve\";s:6:\"friend\";s:6:\"Friend\";s:7:\"friends\";s:7:\"Friends\";s:2:\"no\";s:2:\"No\";s:3:\"yes\";s:3:\"Yes\";s:4:\"city\";s:4:\"City\";s:3:\"age\";s:3:\"Age\";s:7:\"country\";s:7:\"Country\";s:7:\"website\";s:7:\"Website\";s:10:\"boys-girls\";s:14:\"Boys
and
Girls\";s:5:\"girls\";s:5:\"Girls\";s:4:\"boys\";s:4:\"Boys\";s:4:\"open\";s:4:\"Open\";s:5:\"taken\";s:5:\"Taken\";s:6:\"single\";s:6:\"Single\";s:6:\"hidden\";s:6:\"Hidden\";s:6:\"female\";s:6:\"Female\";s:4:\"male\";s:4:\"Male\";s:10:\"interested\";s:13:\"Interested
In\";s:8:\"relation\";s:8:\"Relation\";s:6:\"gender\";s:6:\"Gender\";s:8:\"username\";s:8:\"Username\";s:7:\"message\";s:7:\"Message\";s:5:\"email\";s:5:\"Email\";s:4:\"name\";s:4:\"Name\";s:5:\"added\";s:5:\"Added\";s:4:\"from\";s:4:\"From\";s:8:\"favorite\";s:8:\"Favorite\";s:5:\"share\";s:5:\"Share\";s:4:\"flag\";s:4:\"Flag\";s:5:\"votes\";s:5:\"votes\";s:4:\"vote\";s:4:\"vote\";s:5:\"views\";s:5:\"views\";s:4:\"view\";s:4:\"view\";s:2:\"of\";s:2:\"of\";s:2:\"to\";s:2:\"to\";s:7:\"showing\";s:7:\"Showing\";s:11:\"most-recent\";s:11:\"Most
Recent\";s:2:\"at\";s:2:\"at\";s:10:\"this-years\";s:16:\"This
Year's\";s:11:\"this-months\";s:17:\"This
Month's\";s:10:\"this-weeks\";s:16:\"This
Week's\";s:10:\"yesterdays\";s:16:\"Yesterday's\";s:6:\"todays\";s:12:\"Today's\";s:14:\"database-error\";s:52:\"Failed
to create database entry! Application
Error!?\";s:10:\"file-error\";s:49:\"Failed to move
uploaded file! Application
Error!?\";s:6:\"cancel\";s:6:\"Cancel\";s:4:\"tags\";s:4:\"Tags\";s:8:\"category\";s:8:\"Category\";s:11:\"description\";s:11:\"Description\";s:5:\"title\";s:5:\"Title\";s:4:\"file\";s:4:\"File\";s:4:\"NEXT\";s:4:\"NEXT\";s:4:\"PREV\";s:4:\"PREV\";s:5:\"LINKS\";s:5:\"LINKS\";s:4:\"help\";s:4:\"Help\";s:5:\"login\";s:5:\"Login\";s:6:\"signup\";s:6:\"Signup\";s:7:\"log-out\";s:7:\"Log
Out\";s:7:\"profile\";s:7:\"Profile\";s:9:\"dashboard\";s:9:\"Dashboard\";s:7:\"welcome\";s:7:\"Welcome\";s:10:\"no-watched\";s:22:\"No
watched videos yet!\";s:9:\"no-videos\";s:14:\"No
videos
yet!\";s:10:\"CATEGORIES\";s:10:\"CATEGORIES\";s:2:\"go\";s:2:\"Go\";s:5:\"users\";s:5:\"Users\";s:7:\"premium\";s:7:\"Premium\";s:5:\"forum\";s:5:\"Forum\";s:6:\"upload\";s:6:\"Upload\";s:9:\"community\";s:9:\"Community\";s:9:\"pornstars\";s:9:\"Pornstars\";s:5:\"years\";s:5:\"years\";s:4:\"year\";s:4:\"year\";s:5:\"weeks\";s:5:\"weeks\";s:4:\"week\";s:4:\"week\";s:6:\"months\";s:6:\"months\";s:5:\"month\";s:5:\"month\";s:7:\"minutes\";s:7:\"minutes\";s:8:\"from-now\";s:8:\"from
now\";s:3:\"ago\";s:3:\"ago\";s:6:\"minute\";s:6:\"minute\";s:7:\"seconds\";s:7:\"seconds\";s:6:\"second\";s:6:\"second\";s:5:\"hours\";s:5:\"hours\";s:4:\"hour\";s:4:\"hour\";s:14:\"most-discussed\";s:14:\"Most
Discussed\";s:9:\"top-rated\";s:9:\"Top
Rated\";s:7:\"popular\";s:7:\"Popular\";s:6:\"recent\";s:6:\"Recent\";s:10:\"categories\";s:10:\"Categories\";s:6:\"videos\";s:6:\"Videos\";s:4:\"home\";s:4:\"Home\";}'),(5,'en-US','frontpage','Frontpage
Frontend Language
File','frontend','a:14:{s:13:\"recent-albums\";s:19:\"Recent
Photo Albums\";s:14:\"popular-albums\";s:20:\"Popular
Photo Albums\";s:14:\"popular-models\";s:14:\"Popular
Models\";s:16:\"popular-channels\";s:16:\"Popular
Channels\";s:18:\"popular-categories\";s:18:\"Popular
Categories\";s:11:\"no-featured\";s:19:\"No featured
videos!\";s:9:\"read-more\";s:9:\"Read
More\";s:12:\"popular-tags\";s:12:\"Popular
Tags\";s:10:\"no-watched\";s:22:\"No watched videos
yet!\";s:7:\"refresh\";s:7:\"Refresh\";s:10:\"meta-title\";s:69:\"Free
Porn Movies, Sex Clips, Porno, Porn Tube, XXX and Porn Videos
at\";s:13:\"watched-title\";s:20:\"Being Watched
Videos\";s:12:\"recent-title\";s:18:\"Most Recent
Videos\";s:14:\"featured-title\";s:15:\"Featured
Videos\";}'),(9,'en-US','upload','Upload Library Error
Codes/Messages','frontend','a:12:{s:10:\"file-valid\";s:43:\"Uploaded
file is not a valid uploaded
file!\";s:11:\"file-select\";s:31:\"Please select a
file to upload!\";s:12:\"file-invalid\";s:56:\"Uploaded
file format is invalid! Allowed extensions:
%s!\";s:10:\"file-limit\";s:66:\"Uploaded file exceeds
the maximum allowed filesize of %s
MB!'\";s:13:\"error-unknown\";s:44:\"No error
code available! Application
error!?\";s:7:\"error-8\";s:33:\"File upload stopped by
extension!\";s:7:\"error-7\";s:29:\"Failed to write
file to disk!\";s:7:\"error-5\";s:27:\"Missing a
temporary folder!\";s:7:\"error-4\";s:21:\"No file was
uploaded!\";s:7:\"error-3\";s:46:\"The uploaded file
was only partially
uploaded!\";s:7:\"error-2\";s:69:\"The uploaded file
exceeds the MAX_FILE_SIZE defined in the html
form!\";s:7:\"error-1\";s:73:\"The uploaded file
exceeds the maximum upload_filesize defined in
php.ini!\";}'),(10,'en-US','feedback','Feedback Frontent Language
File','frontend','a:19:{s:7:\"what-is\";s:11:\"What is
%s?\";s:10:\"click-here\";s:10:\"Click
Here\";s:13:\"check-faq-txt\";s:190:\"Before sending
feedback, you might want to check out our FAQ page. This may answer
questions you have about the site, without having to type us a full
email.To visit the FAQ page, please
%s.\";s:15:\"check-faq-title\";s:33:\"Have you checked
out our FAQ
yet?\";s:12:\"verification\";s:12:\"Verification\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:12:\"captcha-help\";s:36:\"Enter the code
from the above image!\";s:9:\"cant-read\";s:10:\"Cant
read?\";s:14:\"submit-success\";s:92:\"Your message was
sent! We will respond as soon as possible! Thank you for your
contribution!\";s:14:\"message-length\";s:55:\"Message
field cannot contain more than 1000
characters!\";s:13:\"message-empty\";s:26:\"Please
enter your message!\";s:11:\"name-length\";s:51:\"Name
field cannot contain more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:13:\"email-invalid\";s:35:\"Email is not
a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email
address!\";s:15:\"submit-feedback\";s:6:\"Submit\";s:4:\"name\";s:4:\"Name\";s:5:\"title\";s:10:\"Contact
Us\";s:10:\"meta-title\";s:8:\"Feedback\";}'),(11,'en-US','user','User
Frontend Language
File','frontend','a:309:{s:10:\"read-reply\";s:12:\"Read
& Reply\";s:4:\"code\";s:20:\"HTML/Javascript
Code\";s:10:\"image-file\";s:10:\"Image
File\";s:9:\"image-url\";s:9:\"Image
Url\";s:10:\"image-type\";s:10:\"Image
Type\";s:3:\"url\";s:3:\"Url\";s:4:\"html\";s:15:\"HTML/Javascript\";s:5:\"image\";s:5:\"Image\";s:4:\"text\";s:4:\"Text\";s:8:\"reply-to\";s:12:\"Reply
to %s:\";s:13:\"messages-from\";s:17:\"Messages from
%s:\";s:21:\"spam-messages-confirm\";s:48:\"Are you
sure you want to make this user as
spam?\";s:23:\"delete-messages-confirm\";s:60:\"Are you
sure you want to delete all messages from this
user?\";s:4:\"read\";s:4:\"Read\";s:16:\"profile-comments\";s:16:\"Profile
Comments\";s:2:\"re\";s:2:\"Re\";s:21:\"comment-approve-login\";s:33:\"Please
login to approve
comments!\";s:23:\"comment-approve-success\";s:17:\"Comment
approved!\";s:4:\"crop\";s:4:\"Crop\";s:8:\"zoom-out\";s:8:\"Zoom
Out\";s:7:\"zoom-in\";s:7:\"Zoom
In\";s:3:\"fit\";s:3:\"Fit\";s:10:\"avatar-new\";s:10:\"New
Avatar\";s:19:\"avatar-success-crop\";s:47:\"Avatar
uploaded! Please crop your avatar
below!\";s:20:\"history-delete-login\";s:60:\"Please
login to delete videos from your watched videos
list!\";s:13:\"invalid-video\";s:14:\"Invalid
video!\";s:22:\"history-delete-success\";s:44:\"Video
removed from your watched videos
list!\";s:17:\"signup-meta-title\";s:19:\"Create
Account - %s\";s:14:\"existing-login\";s:30:\"Existing
users can login
here!\";s:11:\"video-views\";s:11:\"Video
Views\";s:15:\"uploaded-photos\";s:15:\"Uploaded
Photos\";s:15:\"uploaded-albums\";s:15:\"Uploaded
Albums\";s:13:\"subscriptions\";s:13:\"Subscriptions\";s:11:\"subscribers\";s:11:\"Subscribers\";s:14:\"profile-viewed\";s:14:\"Profile
Viewed\";s:14:\"video-comments\";s:14:\"Video
Comments\";s:14:\"watched-videos\";s:14:\"Watched
Videos\";s:15:\"uploaded-videos\";s:15:\"Uploaded
Videos\";s:18:\"upgrade-to-premium\";s:18:\"Upgrade To
Premium\";s:6:\"manage\";s:6:\"Manage\";s:7:\"account\";s:7:\"Account\";s:17:\"avatar-crop-title\";s:11:\"Crop
Avatar\";s:18:\"account-meta-title\";s:21:\"Edit
Account Settings\";s:13:\"account-title\";s:21:\"Edit
Account
Settings\";s:15:\"confirm-invalid\";s:42:\"Invalid
confirmation code and/or
username!\";s:21:\"delete-video-question\";s:43:\"Are
you sure you want to delete this
video?\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:15:\"my-videos-title\";s:13:\"Manage
Videos\";s:17:\"delete-video-help\";s:27:\"Click to
delete this
video!\";s:15:\"edit-video-help\";s:25:\"Click to edit
this video!\";s:7:\"no-spam\";s:27:\"No messages marked
as
spam!\";s:10:\"spam-title\";s:4:\"Spam\";s:15:\"spam-meta-title\";s:28:\"View
messages marked as
spam\";s:9:\"msg-block\";s:11:\"Block
user!\";s:8:\"msg-mark\";s:13:\"Mark as
spam!\";s:5:\"reply\";s:5:\"Reply\";s:8:\"msg-spam\";s:87:\"This
message is marked as spam! If you want to read this message please click
%shere%s!\";s:10:\"read-title\";s:7:\"READING\";s:15:\"read-meta-title\";s:12:\"Read
Message\";s:16:\"msg-spam-success\";s:23:\"Message
marked as spam!\";s:12:\"user-blocked\";s:69:\"User
blocked! You will not receive any other messages from this
user!\";s:9:\"no-outbox\";s:17:\"No sent
messages!\";s:12:\"outbox-title\";s:6:\"Outbox\";s:17:\"outbox-meta-title\";s:13:\"Sent
Messages\";s:8:\"no-inbox\";s:16:\"No new
messages!\";s:11:\"inbox-title\";s:5:\"Inbox\";s:16:\"inbox-meta-title\";s:13:\"Read
Messages\";s:10:\"msgs-empty\";s:35:\"Please select at
least one
message!\";s:19:\"msgs-delete-success\";s:26:\"Selected
messages deleted!\";s:11:\"msg-invalid\";s:51:\"Invalid
message! Are you sure this message
exists!?\";s:14:\"action-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:18:\"msg-delete-success\";s:16:\"Message
deleted!\";s:14:\"compose-button\";s:12:\"Send
Message\";s:7:\"send-to\";s:2:\"To\";s:7:\"subject\";s:7:\"Subject\";s:12:\"compose-help\";s:28:\"Write
a new private
message!\";s:13:\"compose-title\";s:15:\"Compose
Message\";s:18:\"compose-meta-title\";s:23:\"Manage
Private
Messages\";s:15:\"compose-success\";s:13:\"Message
sent!\";s:14:\"subject-length\";s:48:\"Subject cannot
contain more than 255
characters!\";s:13:\"subject-empty\";s:29:\"Subject
cannot be left
blank!\";s:16:\"receiver-invalid\";s:53:\"Invalid
receiver! Are you sure this username
exists!?\";s:15:\"receiver-friend\";s:65:\"You must be
friends with '%s' to send him/her
messages!\";s:11:\"receiver-no\";s:48:\"Recipient does
not want to receive any
messages!\";s:16:\"receiver-blocked\";s:48:\"You cannot
send messages to %s! You are
blocked!\";s:14:\"receiver-empty\";s:37:\"Please
specify at least one
receiver!\";s:13:\"request-login\";s:48:\"Please login
to approve/deny friendship
request!\";s:15:\"request-invalid\";s:44:\"Invalid
action! What exactly did you
click!?\";s:12:\"request-deny\";s:18:\"Friendship
denied!\";s:15:\"request-approve\";s:20:\"Friendship
accepted!\";s:25:\"subscription-remove-login\";s:37:\"Please
login to cancel
subscriptions!\";s:20:\"subscription-invalid\";s:53:\"Invalid
subscription! Are you sure this user
exists!?\";s:27:\"subscription-remove-success\";s:22:\"Subscription
canceled!\";s:18:\"subscriber-invalid\";s:51:\"Invalid
subscriber! Are you sure this user
exists!?\";s:23:\"subscriber-remove-login\";s:35:\"Please
login to remove
subscribers!\";s:25:\"subscriber-remove-success\";s:19:\"Subscriber
removed!\";s:14:\"friend-invalid\";s:47:\"Invalid
friend! Are you sure this user
exists!?\";s:19:\"friend-remove-login\";s:31:\"Please
login to remove
friends!\";s:21:\"friend-remove-success\";s:19:\"Friendship
removed!\";s:16:\"no-subscriptions\";s:39:\"You did not
subscribe to any users
yet!\";s:27:\"subscription-delete-confirm\";s:52:\"Are
you sure you want to unsubscribe from this
user!\";s:24:\"subscription-delete-help\";s:36:\"Click
to unsubscribe from this
user!\";s:22:\"my-subscriptions-title\";s:25:\"MANAGE
YOUR
SUBSCRIPTIONS\";s:22:\"subscriber-delete-help\";s:32:\"Click
to delete this
subscriber!\";s:25:\"subscriber-delete-confirm\";s:48:\"Are
you sure you want to remove this
subscriber?\";s:14:\"no-subscribers\";s:34:\"You dont
have any subscribers
yet!\";s:20:\"my-subscribers-title\";s:23:\"MANAGE YOUR
SUBSCRIBERS\";s:33:\"my-favorite-photos-delete-confirm\";s:68:\"Are
you sure you want to delete this photo from your favorites
list?\";s:30:\"my-favorite-photos-delete-help\";s:51:\"Click
to remove this photo from your favorite
list!\";s:18:\"no-favorite-photos\";s:53:\"You did not
add any photos to your favorite list
yet!\";s:24:\"my-favorite-photos-title\";s:27:\"MANAGE
YOUR FAVORITE PHOTOS\";s:12:\"lost-success\";s:85:\"A
email containing your username and/or password has been sent to your email
address!\";s:10:\"lost-title\";s:21:\"RECOVER YOUR
PASSWORD\";s:15:\"lost-meta-title\";s:38:\"Recover your
username and/or
password!\";s:16:\"no-videos-viewed\";s:33:\"You did
not watch any videos
yet!\";s:27:\"my-view-history-delete-help\";s:47:\"Click
to remove this video from your view
list!\";s:30:\"my-view-history-delete-confirm\";s:63:\"Are
you sure you want to remove this video from your view
list?\";s:21:\"my-view-history-title\";s:36:\"MANAGE
YOUR PREVIOUSLY VIEWED
VIDEOS\";s:21:\"friend-remove-confirm\";s:44:\"Are you
sure you want to remove this
friend?\";s:10:\"no-friends\";s:33:\"You dont have any
friends yet
:-(\";s:16:\"my-friends-title\";s:19:\"MANAGE YOUR
FRIENDS\";s:23:\"favorite-delete-confirm\";s:67:\"Are
you sure you want to remove this video from your favorite
list?\";s:12:\"no-favorites\";s:53:\"You did not add
any videos to your favorite list
yet!\";s:20:\"favorite-delete-help\";s:52:\"Click to
remove this video from your favorites
list!\";s:18:\"my-favorites-title\";s:27:\"MANAGE YOUR
FAVORITE VIDEOS\";s:12:\"confirm-sent\";s:72:\"A email
with your verification link has been sent to your email
address!\";s:15:\"confirm-missing\";s:53:\"There is no
user registered with this email
address!?\";s:12:\"user-invalid\";s:45:\"Invalid user!
Are you sure this user
exists!?\";s:15:\"confirm-success\";s:24:\"Your email
was verified!\";s:14:\"confirm-expire\";s:41:\"This
email verification code has
expired!\";s:16:\"account-verified\";s:41:\"You already
confirmed your email
address!\";s:14:\"confirm-button\";s:10:\"SEND
EMAIL\";s:13:\"confirm-title\";s:35:\"DID NOT RECEIVE
CONFIRMATION
EMAIL?\";s:18:\"confirm-meta-title\";s:27:\"Confirm
your email address!\";s:9:\"no-albums\";s:40:\"You did
not upload any photo ulbums
yet!\";s:17:\"album-delete-help\";s:43:\"Click to
completly delete this photo
album!\";s:15:\"album-edit-help\";s:31:\"Click to edit
this photo
album!\";s:15:\"my-albums-title\";s:19:\"MANAGE PHOTO
ALBUMS\";s:18:\"my-favorite-photos\";s:18:\"My Favorite
Photos\";s:9:\"my-albums\";s:9:\"My
Albums\";s:9:\"spam-help\";s:42:\"View your private
messages marked as
spam!\";s:11:\"outbox-help\";s:32:\"View your sent
private messages!\";s:10:\"inbox-help\";s:31:\"View
your new private
messages!\";s:16:\"my-comments-help\";s:29:\"Manage
your profile
comments!\";s:21:\"my-subscriptions-help\";s:26:\"Manage
your
subscriptions!\";s:19:\"my-subscribers-help\";s:24:\"Manage
your
subscribers!\";s:15:\"my-friends-help\";s:20:\"Manage
your
friends!\";s:23:\"my-favorite-photos-help\";s:28:\"Manage
your favorite
photos!\";s:14:\"my-albums-help\";s:42:\"Upload, Manage
and Edit your photo
albums!\";s:17:\"my-playlists-help\";s:42:\"Add, Manage
and Edit your video
playlists!\";s:12:\"my-playlists\";s:12:\"My
Playlists\";s:17:\"my-favorites-gelp\";s:28:\"Manage
your favorite
Videos!\";s:20:\"my-view-history-help\";s:44:\"Manage
you previously viewed videos
history!\";s:14:\"my-videos-help\";s:36:\"Upload,
Manage and Edit your
Videos!\";s:21:\"edit-advertising-help\";s:33:\"Add/Edit
your Advertising
Banner!\";s:23:\"edit-notifications-help\";s:32:\"Edit
your Notification
Settings!\";s:21:\"edit-preferences-help\";s:30:\"Edit
your Account
Preferences!\";s:17:\"edit-profile-help\";s:30:\"Edit
your Profile
Information!\";s:17:\"edit-account-help\";s:27:\"Edit
your Account
Settings!\";s:13:\"menu-messages\";s:8:\"MESSAGES\";s:11:\"menu-manage\";s:6:\"MANAGE\";s:16:\"menu-advertising\";s:11:\"ADVERTISING\";s:12:\"menu-profile\";s:7:\"PROFILE\";s:7:\"compose\";s:7:\"Compose\";s:6:\"outbox\";s:6:\"Outbox\";s:5:\"inbox\";s:5:\"Inbox\";s:14:\"signup-confirm\";s:76:\"Your
account was created! Please check your email for the verification
link!\";s:14:\"signup-approve\";s:81:\"Your account was
created! You will receive a email once your account is
approved!\";s:14:\"signup-success\";s:49:\"Your account
was successfuly created! Welcome
%s!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:11:\"terms-empty\";s:78:\"You must agree to
our Terms of Service and Privacy Policy to create a
account!\";s:9:\"age-empty\";s:72:\"You must confirm
that you are at least %s years old to create a
account!\";s:10:\"city-empty\";s:23:\"Please enter your
city!\";s:15:\"country-invalid\";s:46:\"Invalid
country! What exactly did you
select!?\";s:13:\"country-empty\";s:27:\"Please select
your country!\";s:15:\"birthdate-empty\";s:51:\"Please
enter your complete birth date
(mm-dd-yyyy)!\";s:11:\"name-length\";s:61:\"Name must
contain at least 3 and no more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";s:12:\"gender-empty\";s:26:\"Please select
your gender!\";s:15:\"password-length\";s:65:\"Password
must contain at least %s and no more than %s
characters!\";s:14:\"password-empty\";s:36:\"Password
field cannot be left
blank!\";s:15:\"signup-disabled\";s:64:\"User
registration is currently disabled! Please try again
later!\";s:11:\"age-confirm\";s:42:\"I certify that i
am at least %s years
old!\";s:13:\"terms-confirm\";s:25:\"I agree to the %s
and %s!\";s:13:\"signup-button\";s:14:\"CREATE
ACCOUNT\";s:12:\"captcha-help\";s:36:\"Enter the code
from the above image!\";s:13:\"terms_confirm\";s:25:\"I
agree to the %s and %s!\";s:11:\"age_confirm\";s:42:\"I
certify that i am at least %s years
old!\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:12:\"verification\";s:12:\"Verification\";s:12:\"signup-title\";s:23:\"CREATE
YOUR %s
ACCOUNT!\";s:12:\"login-failed\";s:35:\"Incorrect
username and/or
password!\";s:15:\"account-confirm\";s:52:\"You need to
verify your email before you can log
in!\";s:15:\"account-approve\";s:76:\"Your account is
valid, but the site administrator needs to approve it
first!\";s:17:\"account-suspended\";s:18:\"Account
Suspended!\";s:11:\"login-empty\";s:43:\"Please enter
your username and/or
password!\";s:12:\"login-button\";s:5:\"LOGIN\";s:8:\"deny-all\";s:46:\"Click
to deny all pending friendship
requests!\";s:10:\"accept-all\";s:48:\"Click to accept
all pending friendship
requests!\";s:14:\"requests-title\";s:38:\"FRIENDSHIP
REQUESTS THAT NEED
APPROVAL\";s:11:\"no-requests\";s:23:\"No friendship
requests!\";s:12:\"welcome-back\";s:12:\"Welcome
back\";s:14:\"dashboard-help\";s:83:\"You can easily
view, manage and control all your content and profile settings
here!\";s:16:\"recommended-none\";s:28:\"No recommended
videos
found!\";s:17:\"recommended-title\";s:19:\"Recommended
For You\";s:15:\"dashboard-title\";s:12:\"My
Dashboard\";s:20:\"dashboard-meta-title\";s:12:\"My
Dashboard\";s:11:\"banner-help\";s:38:\"Add or update
your advertising
banner!\";s:12:\"banner-title\";s:30:\"EDIT OR ADD
ADVERTISING
BANNER\";s:17:\"banner-meta-title\";s:23:\"Edit
Advertising
Banner\";s:12:\"banner-added\";s:95:\"Advertising
added! Your advertising will appear on the site once the administrator
approves
it!\";s:14:\"banner-updated\";s:53:\"Advertising
updated! Awaiting administrator
approval!\";s:18:\"banner-url-invalid\";s:50:\"Advertising
banner URL is not a valid URL
address!\";s:16:\"banner-url-empty\";s:44:\"Advertising
banner URL cannot be left
blank!\";s:19:\"banner-type-invalid\";s:55:\"Invalid
advertising type! What exactly did you
select!?\";s:25:\"banner-image-type-invalid\";s:61:\"Invalid
advertising image type! What exactly did you
select!?\";s:19:\"banner-image-select\";s:39:\"Please
upload a image advertising
file!\";s:17:\"banner-image-file\";s:52:\"Advertising
image file is not a valid uploaded
file!\";s:19:\"banner-image-upload\";s:80:\"Invalid
advertising image file! File is not a valid image (renders
incorrectly)!\";s:19:\"banner-image-format\";s:90:\"Invalid
advertising image file! Format not supported! Supported formats: jpg, png
and
gif!\";s:20:\"banner-image-invalid\";s:56:\"Advertising
banner image URL is not a valid URL
address!\";s:18:\"banner-image-empty\";s:50:\"Advertising
banner image URL cannot be left
blank!\";s:17:\"banner-code-empty\";s:57:\"Please enter
the advertising banner html/javascript
code!\";s:18:\"banner-title-empty\";s:63:\"Please enter
the advertising banner title (used for the a
tag)!\";s:20:\"notifications-update\";s:20:\"UPDATE
NOTIFICATIONS\";s:28:\"notification-profile-comment\";s:23:\"Comments
on my
profile!\";s:20:\"notification-message\";s:26:\"Receive
a private
message!\";s:19:\"notification-friend\";s:38:\"Approve
or deny my friendship
request!\";s:27:\"notification-friend-request\";s:19:\"Friendship
request!\";s:23:\"notification-subscribes\";s:34:\"Someone
subscribers to my
profile!\";s:25:\"notification-video-rating\";s:24:\"Someone
rates my
videos!\";s:26:\"notification-video-comment\";s:30:\"Someone
comments on my
videos!\";s:26:\"notification-video-approve\";s:32:\"Videos
are approved or
rejected!\";s:18:\"notifications-help\";s:74:\"Edit
your notifications! When do you want to receive emails from the
site!\";s:19:\"notifications-title\";s:18:\"EDIT
NOTIFICATIONS\";s:24:\"notifications-meta-title\";s:18:\"Edit
Notifications\";s:21:\"notifications-success\";s:21:\"Notifications
Updated\";s:22:\"allow-private-messages\";s:22:\"Allow
Private
Messages\";s:21:\"allow-friend-requests\";s:25:\"Allow
Friendship
Requests\";s:22:\"allow-profile-comments\";s:22:\"Allow
Profile
Comments\";s:18:\"show-my-activities\";s:18:\"Show My
Activities\";s:21:\"show-my-subscriptions\";s:21:\"Show
My
Subscriptions\";s:19:\"show-my-subscribers\";s:19:\"Show
My Subscribers\";s:15:\"show-my-friends\";s:15:\"Show
My
Friends\";s:23:\"show-my-favorite-photos\";s:23:\"Show
My Favorite
Photos\";s:20:\"show-my-photo-albums\";s:20:\"Show My
Photo
Albums\";s:20:\"show-my-rated-videos\";s:20:\"Show My
Rated
Videos\";s:23:\"show-my-video-playlists\";s:23:\"Show
My Video
Playlists\";s:23:\"show-my-favorite-videos\";s:23:\"Show
My Favorite
Videos\";s:21:\"show-my-video-history\";s:26:\"Show My
Video View
History\";s:14:\"show-my-videos\";s:14:\"Show My
Videos\";s:21:\"show-profile-comments\";s:21:\"Show
Profile Comments\";s:12:\"show-profile\";s:12:\"Show
Profile\";s:16:\"preferences-help\";s:64:\"Edit profile
preferences, profile parts and privacy
preferences!\";s:17:\"preferences-title\";s:24:\"EDIT
PROFILE
PREFERENCES\";s:22:\"preferences-meta-title\";s:24:\"Edit
Profile
Preferences\";s:19:\"preferences-success\";s:20:\"Preferences
Updated!\";s:14:\"profile-update\";s:14:\"UPDATE
PROFILE\";s:9:\"turn-offs\";s:9:\"Turn
Offs\";s:8:\"turn-ons\";s:8:\"Turn
Ons\";s:5:\"books\";s:5:\"Books\";s:5:\"music\";s:5:\"Music\";s:6:\"movies\";s:6:\"Movies\";s:9:\"interests\";s:21:\"Interests
and
Hobbies\";s:7:\"company\";s:7:\"Company\";s:6:\"school\";s:6:\"School\";s:10:\"occupation\";s:10:\"Occupation\";s:5:\"about\";s:5:\"About\";s:3:\"zip\";s:3:\"Zip\";s:9:\"birthdate\";s:10:\"Birth
Date\";s:18:\"random-information\";s:18:\"Random
Information\";s:20:\"location-information\";s:20:\"Location
Information\";s:20:\"personal-information\";s:20:\"Personal
Information\";s:12:\"profile-help\";s:110:\"You can
edit your profile information, location information, personal information
and random information
here!\";s:13:\"profile-title\";s:12:\"EDIT
PROFILE\";s:18:\"profile-meta-title\";s:12:\"Edit
Profile\";s:15:\"profile-success\";s:16:\"Profile
updated!\";s:18:\"interested-invalid\";s:49:\"Invalid
interested! What exactly did you
select!?\";s:16:\"relation-invalid\";s:47:\"Invalid
relation! What exactly did you
select!?\";s:14:\"gender-invalid\";s:45:\"Invalid
gender! What exactly did you
select!?\";s:15:\"website-invalid\";s:48:\"Personal
website URL is not a valid URL
address!\";s:17:\"birthdate-invalid\";s:39:\"Selected
birthdate is not a valid
date!\";s:20:\"birthdate-incomplete\";s:37:\"Please
select your complete
birthday!\";s:11:\"avatar-crop\";s:11:\"Crop
Avatar\";s:13:\"avatar-upload\";s:13:\"Upload
Avatar\";s:14:\"avatar-current\";s:14:\"Current
Avatar\";s:11:\"avatar-help\";s:41:\"You can change
your profile picture
here!\";s:17:\"avatar-meta-title\";s:20:\"Edit Profile
Picture\";s:12:\"avatar-title\";s:20:\"Edit Profile
Picture\";s:13:\"avatar-failed\";s:54:\"Failed to
update profile avatar! Invalid
permissions!?\";s:14:\"avatar-success\";s:32:\"Your
profile avatar was
updated!\";s:15:\"account-success\";s:25:\"Account
settings
updated!\";s:18:\"password-incorrect\";s:95:\"Invalid
account password! You need to provide yout old password to update the
account
settings!\";s:17:\"password-mismatch\";s:52:\"Password
and confirmation password are not the
same!\";s:10:\"email-used\";s:38:\"Email is already
used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:33:\"Email field
cannot be left
blank!\";s:16:\"username-changed\";s:44:\"You are not
allowed to change your
username!\";s:13:\"username-used\";s:54:\"Username is
already used by another user on this
site!\";s:16:\"username-invalid\";s:67:\"Username can
contain only letters, numbers, dashes and
underscores!\";s:15:\"username-length\";s:43:\"Username
can contain maximum %s
characters!\";s:14:\"username-empty\";s:37:\"Username
field cannot be left
blank!\";s:14:\"account-locked\";s:119:\"Account is
locked! You cannot edit your account settings! Please contact the site
administrator to unlock your
account!\";s:14:\"account-update\";s:14:\"ACCOUNT
UPDATE\";s:19:\"account-update-help\";s:68:\"You need
to enter your old password to change your account
settings!\";s:12:\"password-old\";s:12:\"Old
Password\";s:16:\"password-confirm\";s:16:\"Confirm
Password\";s:12:\"password-new\";s:12:\"New
Password\";s:12:\"account-help\";s:64:\"You can edit
your username, email and change your password
here!\";}'),(12,'en-US','link','Link Frontend Language
File','frontend','a:30:{s:6:\"rule-5\";s:16:\"Text for rule
5!\";s:6:\"rule-4\";s:16:\"Text for rule
4!\";s:6:\"rule-3\";s:16:\"Text for rule
3!\";s:6:\"rule-2\";s:16:\"Text for rule
2!\";s:6:\"rule-1\";s:16:\"Text for rule
1!\";s:12:\"link-success\";s:75:\"Link added! You link
will become active once the administrator approves
it!\";s:16:\"linkback-missing\";s:64:\"Please post a
link back to our site before submitting your
site!\";s:16:\"pagerank-invalid\";s:46:\"Your site
needs to have pagerank %s in
Google!\";s:15:\"captcha-invalid\";s:42:\"Invalid
verification code! Are you
human!?\";s:16:\"linkback-invalid\";s:40:\"Linkback URL
is not a valid URL
address!\";s:14:\"linkback-empty\";s:30:\"Please enter
the linkback URL!\";s:13:\"email-invalid\";s:35:\"Email
is not a valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email address!\";s:10:\"name-empty\";s:23:\"Please
enter your name!\";s:11:\"url-invalid\";s:36:\"Site URL
is not a valid URL
address!\";s:9:\"url-empty\";s:42:\"Please enter your
site's url
address!\";s:11:\"title-empty\";s:36:\"Please enter
your site's title!\";s:5:\"rules\";s:19:\"Link
Exchange Rules\";s:12:\"captcha-help\";s:36:\"Enter the
code from the above
image!\";s:12:\"linkback-url\";s:12:\"Linkback
URL\";s:11:\"link-button\";s:8:\"Add
Link\";s:12:\"verification\";s:12:\"Verification\";s:9:\"cant-read\";s:16:\"Can't
read?\";s:15:\"webmaster-email\";s:15:\"Webmaster
Email\";s:14:\"webmaster-name\";s:14:\"Webmaster
Name\";s:8:\"site-url\";s:3:\"URL\";s:16:\"site-description\";s:16:\"Site
Description\";s:10:\"site-title\";s:10:\"Site
Title\";s:10:\"link-title\";s:13:\"Link
Exchange\";s:15:\"link-meta-title\";s:11:\"Submit
Link\";}'),(13,'en-US','categories','Categories Frontend Language
File','frontend','a:9:{s:27:\"categories-meta-desc-videos\";s:36:\"Categories
With The Most Videos.
%s!\";s:28:\"categories-meta-title-videos\";s:37:\"Categories
With The Most Videos at
%s\";s:23:\"categories-title-videos\";s:31:\"Categories
With The Most
Videos\";s:24:\"categories-title-popular\";s:24:\"Popular
Video
Categories\";s:20:\"categories-meta-keys\";s:19:\"porn
categories,
%s\";s:20:\"categories-meta-desc\";s:24:\"%sVideo
Categories -
%s!\";s:21:\"categories-meta-title\";s:25:\"%sVideo
categories at %s!\";s:13:\"no-categories\";s:20:\"No
categories
found!\";s:16:\"categories-title\";s:16:\"Video
Categories\";}'),(14,'en-US','community','Community Frontend Language
File','frontend','a:19:{s:18:\"interested-invalid\";s:17:\"Invalid
interest!\";s:15:\"invalid-country\";s:16:\"Invalid
country!\";s:16:\"invalid-relation\";s:17:\"Invalid
relation!\";s:14:\"invalid-gender\";s:15:\"Invalid
gender!\";s:10:\"has-avatar\";s:11:\"Has
avatar?\";s:9:\"is-online\";s:10:\"Is
online?\";s:10:\"interested\";s:9:\"Interests\";s:6:\"online\";s:6:\"Online\";s:8:\"no-users\";s:15:\"No
users
found!\";s:15:\"advanced-button\";s:8:\"Advanced\";s:13:\"search-button\";s:14:\"Search
Members\";s:10:\"no-popular\";s:25:\"No popular members
found!\";s:19:\"community-meta-keys\";s:18:\"porn
community,
%s\";s:19:\"community-meta-desc\";s:14:\"Community -
%s\";s:12:\"browse-title\";s:14:\"Browse
Members\";s:12:\"search-title\";s:14:\"Search
Members\";s:13:\"popular-title\";s:15:\"Popular
Members\";s:16:\"community-search\";s:20:\"Users search
results\";s:20:\"community-meta-title\";s:15:\"Community
at %s\";}'),(15,'en-US','enter','Enter Frontend Language
File','frontend','a:6:{s:6:\"policy\";s:78:\"I have read and
I agree to the %s %sTerms of Service%s and %sPrivacy
Policy%s!\";s:14:\"certify-demand\";s:58:\"In order to
enter this website you must certify as
follows\";s:7:\"certify\";s:323:\"Under the governing
law of my country I have reached the age of majority and the age required
to view sexually explicit material and I am accessing this website from a
location where sexually explicit content is legal and permitted. I will not
permit any person to access this website who is not legally permitted to do
so.\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:12:\"enter-button\";s:5:\"ENTER\";s:11:\"enter-title\";s:49:\"This
website contains sexually explicit
material!\";}'),(16,'en-US','forum','Forum Frontend Language
File','frontend','a:63:{s:15:\"forum-view-help\";s:21:\"Click
to view topics!\";s:14:\"forum-old-help\";s:35:\"Old
forum! No posts since one
week!\";s:17:\"forum-access-help\";s:51:\"You dont have
enough privileges to view this
forum!\";s:15:\"topic-view-help\";s:20:\"Click to view
topic!\";s:17:\"topic-locked-help\";s:13:\"Locked
Topic!\";s:17:\"topic-closed-help\";s:13:\"Closed
Topic!\";s:17:\"topic-sticky-help\";s:13:\"Sticky
Topic!\";s:17:\"topic-access-help\";s:51:\"You dont
have enough privileges to view this
topic!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:15:\"advanced-button\";s:8:\"ADVANCED\";s:11:\"save-button\";s:4:\"SAVE\";s:14:\"delete-success\";s:13:\"Post
deleted!\";s:12:\"post-missing\";s:51:\"Invalid post!
Are you sure this forum post
exists!?\";s:13:\"delete-closed\";s:55:\"Thread closed!
You are not allowed to delete this
post!\";s:13:\"delete-locked\";s:54:\"Locked! You are
not allowed to delete this forum
post!\";s:13:\"delete-access\";s:67:\"Invalid
permissions! You are not allowed to delete this forum
post!\";s:9:\"spam-help\";s:34:\"Click to report this
post as
spam!\";s:5:\"quote\";s:5:\"Quote\";s:10:\"quote-help\";s:28:\"Click
to quote this
message!\";s:11:\"delete-help\";s:26:\"Click to delete
this post!\";s:9:\"edit-help\";s:24:\"Click to edit
this
post!\";s:6:\"joined\";s:6:\"Joined\";s:15:\"post-reply-help\";s:20:\"Reply
to this topic!\";s:10:\"post-reply\";s:10:\"Post
Reply\";s:17:\"search-meta-title\";s:20:\"Forum search
results\";s:12:\"reply-button\";s:10:\"POST
REPLY\";s:11:\"reply-title\";s:15:\"REPLY TO
THREAD\";s:11:\"post-button\";s:12:\"CREATE
TOPIC\";s:10:\"post-title\";s:18:\"CREATE A NEW
TOPIC\";s:13:\"reply-success\";s:34:\"Your reply was
successfuly posted!\";s:13:\"quote-missing\";s:53:\"The
message you are using as a quote cannot be
found!\";s:15:\"post-topic-perm\";s:42:\"You are not
allowed to post in this
topic!\";s:10:\"topic-perm\";s:41:\"You are not allowed
to access this
topic!\";s:12:\"reply-closed\";s:62:\"This topic is
closed! You are not allowed to post any
replies!\";s:12:\"post-success\";s:34:\"Your topic was
succesfuly
created!\";s:15:\"post-forum-perm\";s:42:\"You are not
allowed to post in this
forum!\";s:18:\"post-category-perm\";s:51:\"You are not
allowed to post in this forum
category!\";s:10:\"forum-perm\";s:41:\"You are not
allowed to access this
forum!\";s:13:\"category-perm\";s:50:\"You are not
allowed to access this forum
category!\";s:12:\"edit-success\";s:13:\"Post
updated!\";s:13:\"message-empty\";s:26:\"Please enter
your message!\";s:12:\"title-length\";s:47:\"Topic
title can contain maximum 255
characters!\";s:11:\"title-empty\";s:36:\"Please enter
a title for your
topic!\";s:11:\"edit-button\";s:11:\"UPDATE
POST\";s:10:\"edit-title\";s:9:\"EDIT
POST\";s:11:\"edit-closed\";s:52:\"Thread closed! You
are not allowed to edit or
reply!\";s:11:\"edit-locked\";s:52:\"Locked! You are
not allowed to edit this forum
post!\";s:11:\"edit-access\";s:44:\"You are not allowed
to edit this forum
post!\";s:12:\"forum-access\";s:39:\"You are not
allowed to view this
forum!\";s:15:\"category-access\";s:52:\"You are not
allowed to view forums in this
category!\";s:18:\"no-forums-category\";s:27:\"No
forums in this
category!\";s:14:\"new-topic-help\";s:19:\"Create a new
topic!\";s:9:\"no-topics\";s:24:\"No topics in this
forum!\";s:7:\"replies\";s:7:\"Replies\";s:5:\"views\";s:5:\"Views\";s:5:\"topic\";s:5:\"Topic\";s:9:\"new-topic\";s:9:\"New
Topic\";s:4:\"page\";s:4:\"Page\";s:5:\"posts\";s:5:\"Posts\";s:6:\"topics\";s:6:\"Topics\";s:9:\"no-forums\";s:14:\"No
forums yet!\";s:9:\"last-post\";s:9:\"Last
Post\";s:16:\"forum-meta-title\";s:12:\"Forums at
%s\";}'),(17,'en-US','pornstar','Pornstar Frontend Language
File','frontend','a:70:{s:8:\"no-query\";s:33:\"Please enter
your search
keyword!\";s:13:\"model-results\";s:13:\"Model
Results\";s:15:\"no-models-found\";s:24:\"No videos
found for:
%s.\";s:16:\"unsubscribe-help\";s:28:\"Unsubscribe from
this model!\";s:14:\"subscribe-help\";s:24:\"Subscribe
to this model!\";s:17:\"subscribe-already\";s:41:\"You
are already subscribed to this
model!\";s:16:\"favorite-already\";s:37:\"Model already
in your favorites
list!\";s:5:\"about\";s:5:\"About\";s:3:\"bio\";s:3:\"Bio\";s:11:\"nationality\";s:11:\"Nationality\";s:13:\"favorite-help\";s:38:\"Add
this model to your favorites
list!\";s:12:\"dislike-help\";s:21:\"I dislike this
model!\";s:9:\"like-help\";s:18:\"I like this
model!\";s:17:\"browse-meta-title\";s:24:\"%s
Pornstars%s - Page
%d\";s:16:\"pornstar-invalid\";s:53:\"Invalid pornstar!
Are you sure this pornstar
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:31:\"Please login to
rate
pornstars!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:60:\"Invalid
pornstar comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:54:\"You are
not allowed to post comments on this
pornstar!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:12:\"search-title\";s:56:\"MOST RELEVANT
PORNSTAR SEARCH RESULTS FOR
'%s'\";s:17:\"search-meta-title\";s:28:\"%s
Model Results for %s -
%s\";s:21:\"pornstar-videos-title\";s:9:\"%s
VIDEOS\";s:26:\"pornstar-videos-meta-title\";s:24:\"%s
Videos - Page %d -
%s\";s:11:\"with-letter\";s:26:\"with letter
'%s'\";s:12:\"no-pornstars\";s:17:\"No
pornstars
yet!\";s:6:\"pstars\";s:9:\"pornstars\";s:14:\"alphabetically\";s:14:\"Alphabetically\";s:12:\"browse-title\";s:9:\"PORNSTARS\";s:11:\"letter-help\";s:41:\"Browse
pornstars starting with letter
%s!\";s:8:\"all-help\";s:21:\"Browse all
pornstars!\";s:10:\"no-popular\";s:25:\"No popular
pornstars yet!\";s:6:\"top-10\";s:13:\"TOP
PORNSTARS\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:15:\"%s PHOTO
ALBUMS\";s:26:\"pornstar-albums-meta-title\";s:7:\"%s -
%s\";s:19:\"pornstar-meta-title\";s:7:\"%s -
%s\";s:13:\"no-albums-yet\";s:20:\"No photo albums
yet!\";s:9:\"no-videos\";s:14:\"No videos
yet!\";s:14:\"comment-button\";s:12:\"POST
COMMENT\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:13:\"submenu-games\";s:5:\"GAMES\";s:12:\"submenu-dvds\";s:4:\"DVDS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:7:\"watches\";s:5:\"Views\";s:8:\"comments\";s:8:\"Comments\";s:9:\"favorites\";s:9:\"Favorites\";s:9:\"ethnicity\";s:9:\"Ethnicity\";s:12:\"measurements\";s:12:\"Measurements\";s:6:\"height\";s:6:\"Height\";s:6:\"weight\";s:6:\"Weight\";s:10:\"hair-color\";s:10:\"Hair
Color\";s:9:\"eye-color\";s:9:\"Eye
Color\";s:14:\"birth-location\";s:14:\"Birth
Location\";s:10:\"birth-name\";s:10:\"Birth
Name\";s:4:\"born\";s:4:\"Born\";s:8:\"performs\";s:8:\"Performs\";s:7:\"aliases\";s:7:\"Aliases\";}'),(18,'en-US','photo','Photo
Frontend Language
File','frontend','a:115:{s:6:\"rule-6\";s:88:\"Upload your
own porn. If the file you upload is copyrighted we will remove it
instantly!\";s:6:\"rule-5\";s:115:\"No content
involving underage persons, animals, rape, incest, violence, blood,
shitting or other disgusting
things!\";s:6:\"rule-4\";s:39:\"Supported file types:
jpg, png and gif!\";s:6:\"rule-3\";s:30:\"Max album
uploads per day: 10!\";s:6:\"rule-2\";s:24:\"Max album
categories: 3!\";s:6:\"rule-1\";s:23:\"Max image
filesize: 2M!\";s:12:\"upload-rules\";s:17:\"Upload
Guidelines\";s:12:\"photo-bbcode\";s:18:\"BB Code for
forums\";s:10:\"photo-link\";s:18:\"Link to this
photo\";s:9:\"slideshow\";s:9:\"Slideshow\";s:15:\"edit-cover-help\";s:53:\"Click
on a thumb to use it as a cover for this
album!\";s:19:\"album-edit-password\";s:80:\"Enter a
password to require users to enter a password before viewing this
album!\";s:21:\"album-edit-passworded\";s:34:\"This
albums is password
protected!\";s:10:\"edit-album\";s:16:\"Edit Photo
Album\";s:13:\"photo-results\";s:13:\"Photo
Results\";s:15:\"no-albums-found\";s:30:\"No photo
albums found for:
%s.\";s:12:\"report-photo\";s:12:\"Report
Photo\";s:11:\"report-help\";s:16:\"Flag this
photo!\";s:10:\"share-help\";s:17:\"Share this
photo!\";s:12:\"dislike-help\";s:21:\"I dislike this
photo!\";s:9:\"like-help\";s:18:\"I like this
photo!\";s:13:\"album-friends\";s:70:\"This album is
private! You must be friends with %s to view this
album!\";s:13:\"photo-friends\";s:71:\"This photo is
privated! You must be friends with %s to view this
photo!\";s:12:\"select-files\";s:14:\"Select
File(s)\";s:16:\"password-invalid\";s:26:\"Invalid
password provided!\";s:10:\"view-album\";s:10:\"View
Album\";s:10:\"view-photo\";s:10:\"View
Photo\";s:15:\"password-accept\";s:18:\"Password
accepted!\";s:14:\"photo-password\";s:66:\"This photo
is password protected. Please enter the password
below:\";s:14:\"album-password\";s:66:\"This album is
password protected. Please enter the password
below:\";s:19:\"photo-password-help\";s:130:\"You can
password protect your album and only users that know the correct password
will be able to view the photos from this
album!\";s:11:\"add-success\";s:32:\"Photos were added
to your album!\";s:10:\"add-failed\";s:62:\"Failed to
process at least one image from the uploaded
images!\";s:22:\"favorite-photo-invalid\";s:56:\"Invalid
favorite photo! Are you sure this photo
exists!?\";s:27:\"favorite-photo-remove-login\";s:55:\"Please
login to remove photos from your favorites
list!\";s:29:\"favorite-photo-remove-success\";s:39:\"Photo
removed from your favorites
list!\";s:18:\"album-delete-login\";s:36:\"Please login
to delete photo
albums!\";s:13:\"photo-invalid\";s:47:\"Invalid photo!
Are you sure this photo
exists!?\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate photos!\";s:15:\"rating-disabled\";s:16:\"Rating
disabled!\";s:12:\"favorite-own\";s:43:\"You cannot add
your own photo to
favorites!\";s:16:\"favorite-success\";s:39:\"Photo
added to your %sFavorites%s
list!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"comment-missing\";s:57:\"Invalid
photo comment! Are you sure this comment
exists!?\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-success\";s:28:\"You comment
has been
posted!\";s:15:\"comment-approve\";s:49:\"Comment sent!
Once approved it will be
published!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
message!\";s:17:\"comments-disabled\";s:32:\"Comments
are currently
disabled!\";s:14:\"comments-login\";s:34:\"Please
%slogin%s to post
comments!\";s:16:\"comment-allow-no\";s:51:\"You are
not allowed to post comments on this
photo!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:13:\"cancel-button\";s:6:\"CANCEL\";s:13:\"upload-button\";s:13:\"UPLOAD
PHOTOS\";s:17:\"upload-guidelines\";s:17:\"UPLOAD
GUIDELINES\";s:11:\"add-another\";s:18:\"Add Another
Photo?\";s:12:\"album-photos\";s:12:\"ALBUM
PHOTOS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";s:13:\"submenu-games\";s:5:\"GAMES\";s:16:\"upload-box-title\";s:33:\"What
do you want to upload
today?\";s:7:\"caption\";s:7:\"Caption\";s:10:\"image-file\";s:10:\"Image
File\";s:17:\"upload-meta-title\";s:18:\"Upload Photos
- %s\";s:14:\"upload-approve\";s:74:\"Album created!
You will receive a email once your photo album is
approved!\";s:14:\"upload-success\";s:49:\"Album
created! Click %shere%s to view your
album!\";s:13:\"upload-access\";s:49:\"Please login as
a %s user to upload photo
albums!\";s:15:\"upload-disabled\";s:61:\"Photo uploads
are currently disabled! Please try again
later!\";s:7:\"no-tags\";s:43:\"No albums tagged with
'%s'
found!\";s:13:\"albums-tagged\";s:13:\"albums
tagged\";s:9:\"tag-title\";s:34:\"PHOTO ALBUMS TAGGED
'%s'\";s:14:\"tag-meta-title\";s:49:\"Photo
Albums tagged '%s' - Page %d -
%s\";s:20:\"slideshow-meta-title\";s:12:\"%s
Slideshow\";s:12:\"album-access\";s:47:\"Please login
as a %s user to view photo
albums!\";s:9:\"no-search\";s:57:\"No photo albums
found while searching for
'%s'!\";s:17:\"search-meta-title\";s:27:\"%sVideo
Results for %s - %s\";s:11:\"no-comments\";s:16:\"No
comments yet!\";s:15:\"comments-button\";s:12:\"Post
Comment\";s:16:\"comments-submenu\";s:8:\"Comments\";s:5:\"album\";s:5:\"Album\";s:13:\"favorite-help\";s:38:\"Add
this photo to your favorites
list!\";s:15:\"photo-link-help\";s:28:\"Add this photo
to your site!\";s:9:\"flag-help\";s:16:\"Flag this
photo!\";s:11:\"photos-from\";s:11:\"Photos
from\";s:21:\"edit-guidelines-title\";s:15:\"Edit
Guidelines\";s:19:\"album-cover-current\";s:19:\"Current
album cover\";s:17:\"album-cover-title\";s:11:\"Album
Cover\";s:11:\"edit-button\";s:12:\"Upload
Album\";s:16:\"album-cover-help\";s:39:\"Click on a
photo to set as album
cover!\";s:11:\"album-cover\";s:11:\"Album
Cover\";s:17:\"album-information\";s:17:\"Album
Information\";s:15:\"edit-meta-title\";s:16:\"Edit
Photo Album\";s:11:\"edit-locked\";s:88:\"This album
was locked by the site administrator! You are not allowed to edit this
album!\";s:12:\"edit-success\";s:14:\"Album
updated!\";s:12:\"tags-invalid\";s:79:\"Tags can
contain only letters, numbers, spaces and must be separated by
commas!\";s:11:\"tags-length\";s:61:\"Tags must contain
at least %s and no more than %s
characters!\";s:10:\"tags-empty\";s:39:\"Please enter
tags for this photo
album!\";s:16:\"category-invalid\";s:54:\"Invalid
category checked! What exactly did you
click!?\";s:14:\"category-empty\";s:57:\"Please select
at least one category for this photo
album!\";s:12:\"title-length\";s:68:\"Album title must
contain at least %s and no more than %s
characters!\";s:11:\"title-empty\";s:39:\"Album title
field cannot be left
blank!\";s:13:\"album-invalid\";s:59:\"Invalid photo
album! Are you sure this photo album
exists!?\";s:14:\"category-title\";s:15:\"%s Photo
Albums\";s:9:\"no-albums\";s:20:\"No photo albums
yet!\";s:12:\"photo-albums\";s:12:\"photo
albums\";s:12:\"albums-title\";s:15:\"%s Photo
Albums\";s:17:\"albums-meta-title\";s:30:\"%s Photo
Albums - Page %d - %s\";s:10:\"no-related\";s:30:\"No
related photo albums
found!\";s:13:\"related-title\";s:14:\"Related
Albums\";s:14:\"slideshow-help\";s:21:\"View album
slideshow!\";s:9:\"link-help\";s:34:\"Add this photo
album on your
site!\";s:16:\"album-meta-title\";s:8:\"%s at
%s\";}'),(20,'en-US','player','Player Frontend Language
File','frontend','a:10:{s:10:\"slowmotion\";s:10:\"Slowmotion\";s:8:\"previous\";s:8:\"Previous\";s:4:\"next\";s:4:\"Next\";s:15:\"exit-fullscreen\";s:15:\"Exit
Fullscreen\";s:10:\"fullscreen\";s:10:\"Fullscreen\";s:6:\"unmute\";s:6:\"Unmute\";s:4:\"mute\";s:4:\"Mute\";s:4:\"stop\";s:4:\"Stop\";s:5:\"pause\";s:5:\"Pause\";s:4:\"play\";s:4:\"Play\";}'),(21,'en-US','offline','Offline
Frontend Language
File','frontend','a:1:{s:18:\"offline-meta-title\";s:17:\"Under
Maintenance\";}'),(22,'en-US','kb','Knowledge Base Frontend Language
File','frontend','a:3:{s:11:\"no-articles\";s:16:\"No
articles yet!\";s:13:\"article-title\";s:14:\"Knowledge
Base\";s:18:\"article-meta-title\";s:19:\"Knowledge
Base - %s\";}'),(25,'en-US','profile','User Profile Language
File','frontend','a:118:{s:9:\"show-less\";s:9:\"Show
Less\";s:10:\"alt-avatar\";s:16:\"%s's
Avatar\";s:13:\"profile-title\";s:17:\"%s's
Profile\";s:4:\"info\";s:4:\"Info\";s:11:\"connections\";s:11:\"Connections\";s:17:\"leftmenu-reported\";s:16:\"Already
Reported\";s:21:\"leftmenu-denienfriend\";s:17:\"Friendship
Denied\";s:22:\"leftmenu-pendingfriend\";s:18:\"Friendship
Pending\";s:14:\"friend-removed\";s:19:\"Friendship
removed!\";s:16:\"subscribe-remove\";s:20:\"Subscription
removed\";s:17:\"subscribe-already\";s:18:\"Already
subscribed\";s:10:\"subscribed\";s:10:\"Subscribed\";s:12:\"friend-added\";s:17:\"Friendship
added!\";s:13:\"friend-invite\";s:11:\"Invite
Sent\";s:14:\"friend-approve\";s:35:\"Invite sent!
Requires user
approve!\";s:20:\"friend-denied-friend\";s:17:\"Friendship
Denied\";s:13:\"friend-denied\";s:44:\"User said he
doesnt want your friendship
:-)\";s:21:\"friend-already-friend\";s:15:\"Already
Friends\";s:14:\"friend-already\";s:39:\"You are
already friends with this
user!\";s:22:\"friend-invited-already\";s:15:\"Already
Invited\";s:14:\"friend-invited\";s:30:\"You already
invited this
user!\";s:9:\"unblocked\";s:9:\"Unblocked\";s:7:\"blocked\";s:7:\"Blocked\";s:7:\"unblock\";s:7:\"Unblock\";s:13:\"block-already\";s:16:\"Already
Blocked!\";s:14:\"comment-friend\";s:45:\"You must be
friends with %s to post
comments!\";s:16:\"comment-disabled\";s:36:\"User does
not allow comment
posting!\";s:15:\"comment-success\";s:14:\"Comment
added!\";s:15:\"comment-approve\";s:40:\"Comment will
be published once
approved!\";s:14:\"comment-length\";s:51:\"Comment
message can contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
write your
comment!\";s:13:\"comment-login\";s:27:\"Please %s to
post
comments!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to remove this
comment!\";s:15:\"comment-missing\";s:56:\"Invalid user
comment! Are you sure this comment
exists!?\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:18:\"no-photo-favorites\";s:54:\"%s has
not added any photos to his favorites list
yet!\";s:25:\"photo-favorites-meta-desc\";s:33:\"%s's
Favorite Photos%s at
%s\";s:26:\"photo-favorites-meta-title\";s:32:\"%s's
Favorite Photos%s -
%s\";s:17:\"no-albums-private\";s:35:\"%s has no
private photo albums
yet!\";s:24:\"albums-private-meta-desc\";s:38:\"%s's
Private Photo Albums%s at
%s\";s:25:\"albums-private-meta-title\";s:37:\"%s's
Private Photo Albums%s -
%s\";s:16:\"no-albums-public\";s:34:\"%s has no public
photo albums
yet!\";s:23:\"albums-public-meta-desc\";s:37:\"%s's
Public Photo Albums%s at
%s\";s:24:\"albums-public-meta-title\";s:36:\"%s's
Public Photo Albums%s -
%s\";s:16:\"photos-meta-desc\";s:21:\"%s's
Photos -
%s\";s:17:\"photos-meta-title\";s:22:\"%s's
Photos at %s\";s:16:\"no-subscriptions\";s:28:\"%s has
no subscriptions
yet!\";s:23:\"subscriptions-meta-desc\";s:28:\"%s's
Subscriptions -
%s\";s:24:\"subscriptions-meta-title\";s:29:\"%s's
Subscriptions at %s\";s:14:\"no-subscribers\";s:26:\"%s
has no subscribers
yet!\";s:21:\"subscribers-meta-desc\";s:26:\"%s's
Subscribers -
%s\";s:22:\"subscribers-meta-title\";s:27:\"%s's
Subscribers at %s\";s:10:\"no-friends\";s:22:\"%s has
no friends
yet!\";s:17:\"friends-meta-desc\";s:25:\"%s's
Friends%s at
%s\";s:18:\"friends-meta-title\";s:24:\"%s's
Friends%s -
%s\";s:21:\"connections-meta-desc\";s:26:\"%s's
Connections -
%s\";s:22:\"connections-meta-title\";s:27:\"%s's
Connections at
%s\";s:18:\"comments-meta-desc\";s:31:\"%s's
Profile Comments -
%s\";s:19:\"comments-meta-title\";s:32:\"%s's
Profile Comments at %s\";s:8:\"no-rated\";s:32:\"%s has
not rated any videos
yet!\";s:11:\"rated-title\";s:12:\"Rated
Videos\";s:15:\"rated-meta-desc\";s:27:\"%s's
Rated Videos -
%s\";s:16:\"rated-meta-title\";s:28:\"%s's
Rated Videos at
%s\";s:16:\"no-videos-public\";s:28:\"%s has no public
videos
yet!\";s:23:\"videos-public-meta-desc\";s:31:\"%s's
Public Videos%s at
%s\";s:24:\"videos-public-meta-title\";s:30:\"%s's
Public Videos%s -
%s\";s:17:\"no-videos-private\";s:29:\"%s has no
private videos
yet!\";s:24:\"videos-private-meta-desc\";s:32:\"%s's
Private Videos%s at
%s\";s:25:\"videos-private-meta-title\";s:31:\"%s's
Private Videos%s -
%s\";s:14:\"playlist-title\";s:15:\"Video
Playlists\";s:18:\"playlist-meta-desc\";s:33:\"%s's
Video Playlists%s at
%s\";s:19:\"playlist-meta-title\";s:32:\"%s's
Video Playlists%s - %s\";s:10:\"no-watched\";s:34:\"%s
has not watched any videos
yet!\";s:17:\"watched-meta-desc\";s:32:\"%s's
Watched Videos%s at
%s\";s:18:\"watched-meta-title\";s:31:\"%s's
Watched Videos%s - %s\";s:11:\"no-favorite\";s:54:\"%s
has not added any videos to his favorites list
yet!\";s:18:\"favorite-meta-desc\";s:33:\"%s's
Favorite Videos%s at
%s\";s:19:\"favorite-meta-title\";s:32:\"%s's
Favorite Videos%s -
%s\";s:16:\"videos-meta-desc\";s:21:\"%s's
Videos -
%s\";s:17:\"videos-meta-title\";s:22:\"%s's
Videos at
%s\";s:18:\"profile-meta-title\";s:23:\"%s's
Profile at %s\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:19:\"post-comment-button\";s:12:\"Post
Comment\";s:21:\"photo-favorites-title\";s:15:\"Favorite
Photos\";s:7:\"see-all\";s:7:\"See
All\";s:20:\"videos-private-title\";s:14:\"Private
Videos\";s:19:\"videos-public-title\";s:13:\"Public
Videos\";s:20:\"albums-private-title\";s:20:\"Private
Photo
Albums\";s:19:\"albums-public-title\";s:19:\"Public
Photo Albums\";s:14:\"favorite-title\";s:15:\"Favorite
Videos\";s:19:\"subscriptions-title\";s:13:\"Subscriptions\";s:17:\"subscribers-title\";s:11:\"Subscribers\";s:13:\"watched-title\";s:14:\"Watched
Videos\";s:13:\"friends-title\";s:7:\"Friends\";s:21:\"leftmenu-removefriend\";s:17:\"Remove
Friendship\";s:13:\"connect-title\";s:12:\"Connect
with\";s:22:\"leftmenu-alreadyfriend\";s:15:\"Already
Friends\";s:15:\"leftmenu-report\";s:11:\"Report
User\";s:16:\"leftmenu-unblock\";s:12:\"Unblock
User\";s:14:\"leftmenu-block\";s:10:\"Block
User\";s:16:\"leftmenu-comment\";s:7:\"Comment\";s:16:\"leftmenu-sendmsg\";s:12:\"Send
Message\";s:20:\"leftmenu-unsubscribe\";s:11:\"Unsubscribe\";s:18:\"leftmenu-subscribe\";s:9:\"Subscribe\";s:18:\"leftmenu-addfriend\";s:10:\"Add
Friend\";s:14:\"videos-watched\";s:14:\"Watched
Videos\";s:5:\"never\";s:5:\"never\";s:14:\"profile-viewed\";s:14:\"Profile
Viewed\";s:21:\"people-watched-videos\";s:36:\"People
have watched %s's
videos\";s:10:\"last-login\";s:10:\"Last
Login\";s:6:\"joined\";s:6:\"Joined\";s:15:\"submenu-profile\";s:7:\"PROFILE\";s:12:\"submenu-info\";s:4:\"INFO\";s:19:\"submenu-connections\";s:11:\"CONNECTIONS\";s:16:\"submenu-comments\";s:8:\"COMMENTS\";s:14:\"submenu-photos\";s:6:\"PHOTOS\";s:14:\"submenu-videos\";s:6:\"VIDEOS\";}'),(188,'en-US','mobile','Mobile
Frontend Language
File','frontend','a:184:{s:26:\"pornstar-browse-meta-title\";s:14:\"%s
Pornstars%s\";s:5:\"likes\";s:5:\"Likes\";s:11:\"most-videos\";s:11:\"Most
Videos\";s:11:\"no-comments\";s:16:\"No comments
yet!\";s:10:\"no-related\";s:24:\"No related videos
found!\";s:25:\"photo-add-guidelines-text\";s:316:\"<ul><li>Allowed
image extensions: jpg, png, gif and tif</li><li>Allowed
filesize: 2MB</li><li>No content involving underage persons,
animals, rape, incest, violence, blood, shitting or other disgusting
things!</li><li>Upload your own porn. If the file you upload is
copyrighted we will remove it
instantly!</li></ul>\";s:20:\"photo-add-meta-title\";s:24:\"Add
Photos to Album - %s\";s:10:\"add-photos\";s:10:\"Add
Photos\";s:10:\"edit-album\";s:10:\"Edit
Album\";s:21:\"photo-edit-meta-title\";s:21:\"Edit
Photo Album -
%s\";s:23:\"photo-upload-meta-title\";s:23:\"Create
Photo Album -
%s\";s:28:\"photo-upload-guidelines-text\";s:342:\"<ul><li>Allowed
image extensions: jpg, png, gif and tif</li><li>Allowed
filesize: 2MB</li><li>Max categories: 3</li><li>No
content involving underage persons, animals, rape, incest, violence, blood,
shitting or other disgusting things!</li><li>Upload your own
porn. If the file you upload is copyrighted we will remove it
instantly!</li></ul>\";s:12:\"upload-album\";s:18:\"Create
Photo
Album\";s:9:\"slideshow\";s:9:\"Slideshow\";s:20:\"slideshow-meta-title\";s:41:\"View
%s Mobile Photo Album Slideshow -
%s\";s:19:\"photo-tag-meta-desc\";s:34:\"Mobile Photo
Albums Tagged %s -
%s\";s:20:\"photo-tag-meta-title\";s:34:\"Mobile Photo
Albums Tagged %s -
%s\";s:15:\"photo-tag-title\";s:33:\"Mobile Photo
Albums Tagged `%s`%s\";s:8:\"long-min\";s:13:\"Long
(20min+)\";s:10:\"medium-min\";s:16:\"Medium
(5-20min)\";s:9:\"short-min\";s:14:\"Short
(0-5min)\";s:8:\"duration\";s:8:\"Duration\";s:9:\"this-year\";s:9:\"This
Year\";s:10:\"this-month\";s:10:\"This
Month\";s:9:\"this-week\";s:9:\"This
Week\";s:7:\"anytime\";s:7:\"Anytime\";s:9:\"yesterday\";s:9:\"Yesterday\";s:5:\"today\";s:5:\"Today\";s:16:\"search-meta-desc\";s:40:\"Mobile
Videos Search Results For %s -
%s\";s:17:\"search-meta-title\";s:40:\"Mobile Videos
Search Results For %s -
%s\";s:12:\"search-title\";s:22:\"Search Results:
`%s`%s\";s:13:\"tag-meta-desc\";s:28:\"Mobile Videos
Tagged %s - %s\";s:14:\"tag-meta-title\";s:28:\"Mobile
Videos Tagged %s - %s\";s:9:\"tag-title\";s:27:\"Mobile
Videos Tagged
`%s`%s\";s:10:\"guidelines\";s:17:\"Upload
Guidelines\";s:22:\"upload-guidelines-text\";s:420:\"<ul><li>Max
filesize: 300MB!</li><li>Max categories:
3</li><li>Max file uploads per day (per account):
5</li><li>Suppported file types: flv, mp4, m4v, avi, mp4, mpeg,
wmv, 3gp, mov and asf!</li><li>No content involving underage
persons, animals, rape, incest, violence, blood, shitting or other
disgusting things!</li><li>Upload your own porn. If the file
you upload is copyrighted we will remove it
instantly!</li></ul>\";s:6:\"thumbs\";s:6:\"Thumbs\";s:14:\"related-videos\";s:14:\"Related
Videos\";s:9:\"relevance\";s:9:\"Relevance\";s:12:\"profile-link\";s:25:\"View
your public profile:\";s:12:\"videos-title\";s:9:\"My
Videos\";s:6:\"avatar\";s:6:\"Avatar\";s:7:\"account\";s:7:\"Account\";s:5:\"thumb\";s:5:\"Thumb\";s:14:\"allow-download\";s:14:\"Allow
Download\";s:13:\"allow-comment\";s:13:\"Allow
Comment\";s:12:\"allow-rating\";s:12:\"Allow
Rating\";s:11:\"allow-embed\";s:11:\"Allow
Embed\";s:21:\"edit-video-meta-title\";s:10:\"Edit
Video\";s:16:\"edit-video-title\";s:10:\"Edit
Video\";s:10:\"play-video\";s:10:\"Play
Video\";s:14:\"upgrade-button\";s:7:\"Upgrade\";s:13:\"upgrade-title\";s:20:\"Upgrade
your
account\";s:8:\"comments\";s:8:\"Comments\";s:23:\"comment-approve-success\";s:17:\"Comment
approved!\";s:22:\"comment-approve-access\";s:44:\"You
are not allowed to approve this
comment!\";s:21:\"comment-approve-login\";s:33:\"Please
login to approve
comments!\";s:21:\"comment-delete-access\";s:43:\"You
are not allowed to delete this
comment!\";s:22:\"comment-delete-success\";s:16:\"Comment
deleted!\";s:15:\"comment-missing\";s:16:\"Video not
found!\";s:20:\"comment-login-delete\";s:32:\"Please
login to delete
comments!\";s:15:\"favorites-title\";s:15:\"Favorite
Videos\";s:16:\"favorite-already\";s:52:\"You already
added this video to your favorites
list!\";s:16:\"favorite-success\";s:35:\"Video added to
your favorites list!\";s:12:\"favorite-own\";s:43:\"You
cannot add your own video to
favorites!\";s:14:\"favorite-login\";s:32:\"Please
login to favorite
videos!\";s:8:\"favorite\";s:8:\"Favorite\";s:7:\"dislike\";s:7:\"Dislike\";s:4:\"like\";s:4:\"Like\";s:9:\"favorites\";s:9:\"Favorites\";s:5:\"views\";s:5:\"Views\";s:6:\"length\";s:6:\"Length\";s:6:\"rating\";s:6:\"Rating\";s:3:\"now\";s:3:\"now\";s:2:\"by\";s:2:\"By\";s:12:\"post-comment\";s:12:\"Post
Comment\";s:13:\"more-comments\";s:19:\"Load more
comments!\";s:15:\"comment-success\";s:15:\"Comment
posted!\";s:15:\"comment-approve\";s:49:\"Comment
posted! Will appear online once
approved!\";s:16:\"comment-allow-no\";s:45:\"You are
not allowed to comment on this
video!\";s:14:\"comment-length\";s:43:\"Comment can
contain maximum 500
characters!\";s:13:\"comment-empty\";s:26:\"Please
enter your
comment!\";s:14:\"comments-login\";s:38:\"Please login
as a %s to post
comments!\";s:17:\"comments-disabled\";s:42:\"Comments
disabled! Please try again
later!\";s:9:\"dont-spam\";s:17:\"Please dont
spam!\";s:14:\"rating-success\";s:21:\"Thank you for
rating!\";s:13:\"video-invalid\";s:14:\"Invalid
video!\";s:14:\"rating-already\";s:14:\"Already
rated!\";s:12:\"rating-login\";s:28:\"Please login to
rate videos!\";s:15:\"rating-disabled\";s:40:\"Rating
disabled. Please try again
later!\";s:12:\"free-payment\";s:54:\"Your account was
created! Please proceed with
payment!\";s:15:\"users-meta-desc\";s:23:\"%s Mobile
Profile at %s\";s:11:\"users-title\";s:17:\"%s Mobile
Profile\";s:5:\"never\";s:5:\"never\";s:10:\"last-login\";s:10:\"Last
Login\";s:14:\"profile-viewed\";s:14:\"Profile
Viewed\";s:21:\"people-watched-videos\";s:36:\"People
have watched %s's
videos\";s:6:\"joined\";s:6:\"Joined\";s:15:\"community-title\";s:9:\"Community\";s:12:\"edit-profile\";s:12:\"Edit
Profile\";s:15:\"password-retype\";s:15:\"Password
Retype\";s:12:\"password-new\";s:12:\"New
Password\";s:12:\"edit-account\";s:12:\"Edit
Account\";s:15:\"premium-upgrade\";s:29:\"Upgrade to a
Premium
Account!\";s:17:\"welcome-dashboard\";s:39:\"Welcome
%s! You have watched %s
videos!\";s:19:\"account-information\";s:19:\"Account
Information\";s:14:\"credit-invalid\";s:39:\"You need
to add credit to your
account!\";s:15:\"package-invalid\";s:33:\"Invalid
payment package
selected!\";s:15:\"payment-invalid\";s:32:\"Invalid
payment method
selected!\";s:14:\"payment-select\";s:33:\"Please
select one payment
method!\";s:14:\"password-empty\";s:25:\"Password
cannot be blank!\";s:10:\"email-used\";s:38:\"Email is
already used by another
user!\";s:13:\"email-invalid\";s:35:\"Email is not a
valid email
address!\";s:11:\"email-empty\";s:32:\"Please enter
your email
address!\";s:13:\"username-used\";s:54:\"Username is
already used by another user on this
site!\";s:16:\"username-invalid\";s:67:\"Username can
contain only letters, numbers, dashes and
underscores!\";s:15:\"username-length\";s:43:\"Username
can contain maximum %s
characters!\";s:14:\"username-emtpy\";s:37:\"Username
field cannot be left
blank!\";s:12:\"free-success\";s:31:\"Welcome %s!
Please login
below!\";s:15:\"payment-success\";s:68:\"Payment
information stored! Please proceed to our payment
processor!\";s:14:\"register-title\";s:22:\"Create Your
%s Account\";s:11:\"login-title\";s:12:\"Member
Login\";s:12:\"login-failed\";s:35:\"Incorrect username
and/or password!\";s:15:\"account-confirm\";s:52:\"You
need to verify your email before you can log
in!\";s:15:\"account-approve\";s:76:\"Your account is
valid, but the site administrator needs to approve it
first!\";s:17:\"account-suspended\";s:18:\"Account
Suspended!\";s:13:\"redirect-help\";s:121:\"Redirecting
to payment processor. If you are not automatically redirected within 5
seconds please click the button
below!\";s:16:\"redirect-payment\";s:28:\"Proceed to
Payment
Processor\";s:16:\"register-premium\";s:21:\"Proceed
with payment!\";s:13:\"register-free\";s:25:\"Create
your free
account!\";s:8:\"password\";s:8:\"Password\";s:8:\"username\";s:8:\"Username\";s:7:\"join-cc\";s:19:\"Join
by Credit Card\";s:8:\"join-sms\";s:11:\"Join by
SMS\";s:17:\"share-photo-title\";s:13:\"Share a
Photo\";s:12:\"from-invalid\";s:46:\"Share From email
is not a valid email
address!\";s:10:\"from-empty\";s:38:\"Share From field
cannot be left
blank!\";s:10:\"to-invalid\";s:44:\"Share To email is
not a valid email
address!\";s:8:\"to-empty\";s:36:\"Share To field
cannot be left
blank!\";s:4:\"send\";s:4:\"Send\";s:4:\"from\";s:4:\"From\";s:2:\"to\";s:2:\"To\";s:6:\"submit\";s:6:\"Submit\";s:7:\"message\";s:7:\"Message\";s:5:\"email\";s:5:\"Email\";s:4:\"name\";s:4:\"Name\";s:17:\"share-video-title\";s:13:\"Share
a Video\";s:18:\"pornstar-meta-desc\";s:31:\"%s Mobile
Videos and Photos.
%s\";s:19:\"pornstar-meta-title\";s:8:\"%s at
%s\";s:16:\"photos-meta-keys\";s:41:\"mobile porn
photo, mobile porn albums,
%s\";s:16:\"photos-meta-desc\";s:29:\"%s Mobile Photo
Albums%s - %s\";s:17:\"photos-meta-title\";s:29:\"%s
Mobile Photo Albums%s -
%s\";s:12:\"photos-title\";s:18:\"%s Mobile
Photos%s\";s:15:\"photo-meta-desc\";s:25:\"View Mobile
Photo %s - %s\";s:16:\"photo-meta-title\";s:25:\"View
Mobile Photo %s -
%s\";s:14:\"language-title\";s:15:\"Select
Language\";s:8:\"feedback\";s:8:\"feedback\";s:18:\"feedback-meta-desc\";s:12:\"Feedback.
%s\";s:19:\"feedback-meta-title\";s:13:\"Feedback -
%s\";s:14:\"feedback-title\";s:8:\"Feedback\";s:18:\"category-meta-desc\";s:17:\"%s
Mobile
Videos.\";s:19:\"category-meta-title\";s:33:\"Watch %s
Mobile Porn Videos at
%s\";s:14:\"category-title\";s:16:\"%s Mobile
Videos\";s:15:\"album-meta-desc\";s:30:\"View %s Mobile
Photo Album. %s\";s:16:\"album-meta-title\";s:31:\"View
%s Mobile Photo Album -
%s\";s:16:\"browse-meta-keys\";s:64:\"mobile porn,
iphone porn, android porn, porn videos, porn
movies\";s:20:\"categories-meta-keys\";s:14:\"categories,
%s\";s:20:\"categories-meta-desc\";s:35:\"Browse Mobile
Porn Categories at
%s\";s:21:\"categories-meta-title\";s:28:\"Mobile Porn
Categories at
%s\";s:16:\"categories-title\";s:22:\"Mobile Porn
Categories\";s:16:\"browse-meta-desc\";s:22:\"% Mobile
Videos%s - %s\";s:17:\"browse-meta-title\";s:23:\"%s
Mobile Videos%s - %s\";s:12:\"browse-title\";s:18:\"%s
Mobile
Videos%s\";s:17:\"not-found-message\";s:57:\"We're
sorry, the page you requested cannot be
found!\";s:15:\"not-found-title\";s:13:\"404 Not
found\";s:11:\"share-photo\";s:46:\"I just found a
great picture, check it out:
%s\";s:19:\"share-photo-myspace\";s:43:\"I just found a
great picture, check it
out!\";s:11:\"share-video\";s:46:\"I just found a great
video, check this out:
%s\";s:19:\"share-video-myspace\";s:42:\"I just watched
the video %s, check it
out!\";s:16:\"feedback-success\";s:59:\"Your message
was sent! We will respond as soon as
possible!\";s:14:\"message-length\";s:55:\"Message
field cannot contain more than 1000
characters!\";s:13:\"message-empty\";s:26:\"Please
enter your message!\";s:11:\"name-length\";s:51:\"Name
field cannot contain more than 100
characters!\";s:10:\"name-empty\";s:23:\"Please enter
your name!\";}'),(209,'en-US','news','Frontend News Module Language
File','frontend','a:5:{s:4:\"news\";s:4:\"News\";s:7:\"archive\";s:7:\"Archive\";s:2:\"on\";s:2:\"on\";s:7:\"no-news\";s:18:\"No
articles
found!\";s:7:\"ARCHIVE\";s:7:\"ARCHIVE\";}'),(604,'en-US','channel','Channel
Language
File','frontend','a:22:{s:11:\"with-letter\";s:23:\"Starting
With Letter
%s\";s:16:\"unsubscribe-help\";s:30:\"Unsubscribe from
this
channel!\";s:14:\"subscribe-help\";s:26:\"Subscribe to
this channel!\";s:12:\"dislike-help\";s:23:\"I dislike
this channel!\";s:9:\"like-help\";s:20:\"I like this
channel!\";s:11:\"no-channels\";s:12:\"No
channels!\";s:9:\"filter-by\";s:9:\"Filter
By\";s:7:\"sort-by\";s:7:\"Sort
By\";s:17:\"subscribe-already\";s:35:\"Already
subscribed to this
channel!\";s:10:\"subscribed\";s:10:\"Subscribed\";s:9:\"subscribe\";s:9:\"Subscribe\";s:15:\"subscribe-login\";s:26:\"Please
login to
subscribe!\";s:4:\"like\";s:4:\"Like\";s:10:\"visit-site\";s:10:\"Visit
Site\";s:8:\"channels\";s:8:\"Channels\";s:17:\"channel-meta-keys\";s:2:\"%s\";s:17:\"channel-meta-desc\";s:7:\"%s.
%s.\";s:18:\"channel-meta-title\";s:7:\"%s -
%s\";s:14:\"rating-already\";s:31:\"You already liked
this channel!\";s:15:\"channel-invalid\";s:16:\"Invalid
channel!\";s:5:\"liked\";s:5:\"Liked\";s:12:\"rating-login\";s:30:\"Please
login to like channels!\";}');
/*!40000 ALTER TABLE `language_files`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`link`
--
DROP TABLE IF EXISTS `link`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `link` (
`link_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT
NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`target`
enum('none','self','blank') NOT NULL DEFAULT 'none',
`type`
enum('sponsor','exchange') NOT NULL DEFAULT 'exchange',
`widget`
enum('left','right','footer') NOT NULL DEFAULT 'left',
`linkback`
varchar(255) NOT NULL DEFAULT '',
`name` varchar(100) NOT NULL DEFAULT
'',
`email` varchar(255) NOT NULL DEFAULT '',
`traffic` int(11)
unsigned NOT NULL DEFAULT '0',
`pagerank` tinyint(1) unsigned NOT NULL
DEFAULT '0',
`clicks` int(11) NOT NULL DEFAULT '0',
`views` bigint(11)
NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL DEFAULT '0000-00-00
00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
`hardlink`
enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`link_id`),
KEY `url`
(`url`),
KEY `type` (`type`),
KEY `widget` (`widget`),
KEY `clicks`
(`clicks`),
KEY `status` (`status`),
KEY `linkback` (`linkback`),
KEY
`traffic` (`traffic`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`link`
--
LOCK TABLES `link` WRITE;
/*!40000 ALTER TABLE `link` DISABLE
KEYS */;
/*!40000 ALTER TABLE `link` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `link_clicks`
--
DROP TABLE IF EXISTS
`link_clicks`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `link_clicks`
(
`link_id` int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT
NULL DEFAULT '0',
`referer` varchar(255) NOT NULL DEFAULT '',
`click_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY
`link_id` (`link_id`),
KEY `ip` (`ip`),
KEY `referer` (`referer`),
KEY `click_date` (`click_date`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `link_clicks`
--
LOCK TABLES
`link_clicks` WRITE;
/*!40000 ALTER TABLE `link_clicks` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `link_clicks` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `link_in`
--
DROP TABLE IF EXISTS
`link_in`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `link_in` (
`link_id` int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT NULL
DEFAULT '0',
`referer` varchar(255) NOT NULL DEFAULT '',
`click_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY `link_id`
(`link_id`),
KEY `ip` (`ip`),
KEY `referer` (`referer`),
KEY
`click_date` (`click_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `link_in`
--
LOCK TABLES `link_in` WRITE;
/*!40000 ALTER TABLE
`link_in` DISABLE KEYS */;
/*!40000 ALTER TABLE `link_in` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table `menu`
--
DROP TABLE
IF EXISTS `menu`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `menu` (
`menu_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL
DEFAULT '',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`menu_id`),
UNIQUE KEY `name` (`name`),
KEY `status` (`status`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`menu`
--
LOCK TABLES `menu` WRITE;
/*!40000 ALTER TABLE `menu` DISABLE
KEYS */;
INSERT INTO `menu` VALUES (1,'main','Main
Menu','1'),(2,'footer','Footer Menu','1'),(3,'mobile_main','Mobile Main
Menu','1'),(4,'mobile_footer','Mobile Footer Menu','1'),(5,'submenu','Main
Submenu','1'),(6,'footer_first','First Footer
Menu','1'),(7,'footer_second','Second Footer Menu','1');
/*!40000 ALTER
TABLE `menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `menu_links`
--
DROP TABLE IF EXISTS `menu_links`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `menu_links` (
`link_id`
int(11) NOT NULL AUTO_INCREMENT,
`menu_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(99) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL
DEFAULT '',
`link` varchar(255) NOT NULL DEFAULT '',
`type`
enum('int','ext') NOT NULL DEFAULT 'int',
`target`
enum('none','self','blank') NOT NULL DEFAULT 'none',
`current`
varchar(99) NOT NULL DEFAULT '',
`pos` int(11) NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
`lang` varchar(99) NOT NULL
DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `menu_id` (`menu_id`),
KEY
`type` (`type`),
KEY `pos` (`pos`),
KEY `status` (`status`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`menu_links`
--
LOCK TABLES `menu_links` WRITE;
/*!40000 ALTER TABLE
`menu_links` DISABLE KEYS */;
INSERT INTO `menu_links` VALUES
(6,1,'Home','','/','int','none','home',1,'1','home'),(12,1,'Categories','Browse
Free Porn Video
Categories','/categories/','int','none','categories',7,'1','categories'),(11,1,'Videos','Browse
Free Porn
Videos','/recent/','int','none','video',2,'1','videos'),(14,1,'Community','Browse
Users','/community/','int','none','community',8,'1','community'),(15,2,'FAQ','Freqvently
Asked
Questions','/static/faq/','int','none','home',1,'1','faq'),(16,2,'Terms and
Conditions','Terms and
Conditions','/static/terms/','int','none','home',2,'1','terms'),(17,2,'Privacy
Policy','Privacy
Policy','/static/privacy/','int','none','home',3,'1','policy'),(18,2,'DMCA','DMCA','/static/dmca/','int','none','home',4,'1','DMCA'),(19,2,'2257','2257','/static/2257/','int','none','home',5,'1','2257'),(21,1,'Pornstars','Browse
our Pornstars
Directory!','/pornstar/','int','none','pornstar',6,'1','pornstars'),(22,2,'Add
Link','Link
Exchange','/link/add/','int','none','link',6,'1','add-link'),(23,1,'Photos','Browse
Free Porn Photo
Albums!','/photo/','int','none','photo',3,'1','photos'),(45,6,'Home','','/','int','none','home',1,'1','home'),(26,3,'Videos','Browse
Mobile
Videos','/recent/','int','none','video',1,'1','videos'),(27,3,'Categories','Browse
Mobile
Categories','/categories/','int','none','categories',4,'1','categories'),(28,3,'Photos','Browse
Mobile
Photos','/photo/recent/','int','none','photo',2,'1','photos'),(29,3,'Pornstars','Browse
Mobile
Pornstars','/pornstars/','int','none','pornstar',3,'1','pornstars'),(30,4,'Videos','Browse
Mobile
Videos','/recent/','int','none','video',1,'1','videos'),(31,4,'Categories','Browse
Mobile
Categories','/categories/','int','none','categories',2,'1','categories'),(32,4,'Photos','Browse
Mobile
Photos','/photos/','int','none','photo',3,'1','photos'),(33,4,'Pornstars','Browse
Mobile
Pornstars','/pornstars/','int','none','pornstar',4,'1','pornstars'),(34,4,'DMCA','DMCA','/dmca/','int','none','',5,'1','DMCA'),(35,4,'2257','2257','/2257/','int','none','',6,'1','2257'),(36,4,'Feedback','Support/Feedback','/feedback/','int','none','',7,'1','feedback'),(37,4,'Help','Help','/help/','int','none','',8,'1','help'),(42,3,'Community','Browse
Users!','/community/','int','none','community',6,'1','community'),(43,1,'Channels','Browse
Channels!','/channels/','int','none','channel',4,'1','channels'),(44,3,'Channels','Browse
Channels!','/channels/','int','none','channel',5,'1','channels'),(46,6,'Advertise','','/static/advertise/','int','none','home',2,'1','advertise'),(47,6,'Webmasters','','/static/webmasters/','int','none','home',3,'1','webmasters'),(48,6,'Content
Partners','','/static/content-partners/','int','none','home',4,'1','content-partners'),(49,6,'FAQ','','/kb/','int','none','home',5,'1','faq'),(50,6,'Contact
Us','','/feedback/','int','none','home',6,'1','contact-us'),(51,7,'Terms of
Service','','/static/terms/','int','none','home',1,'1','terms'),(52,7,'Privacy
Policy','','/static/privacy/','int','none','home',2,'1','policy'),(53,7,'DMCA','','/static/DMCA/','int','none','home',3,'1','DMCA'),(54,7,'2257','','/static/2257/','int','none','home',4,'1','2257'),(55,1,'Playlists','Watch
playlists!','/playlists/','int','none','playlist',5,'1','playlists');
/*!40000
ALTER TABLE `menu_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table
structure for table `message`
--
DROP TABLE IF EXISTS `message`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `message` (
`msg_id` int(11)
unsigned NOT NULL AUTO_INCREMENT,
`sender_id` int(11) unsigned NOT NULL
DEFAULT '0',
`receiver_id` int(11) unsigned NOT NULL DEFAULT '0',
`subject` varchar(255) NOT NULL DEFAULT '',
`message` text NOT NULL,
`send_time` int(11) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1)
unsigned NOT NULL DEFAULT '1',
`spam` enum('0','1') NOT NULL DEFAULT
'0',
PRIMARY KEY (`msg_id`),
KEY `sender_id` (`sender_id`),
KEY
`receiver_id` (`receiver_id`),
KEY `status` (`status`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `message`
--
LOCK TABLES `message`
WRITE;
/*!40000 ALTER TABLE `message` DISABLE KEYS */;
/*!40000 ALTER TABLE
`message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`model`
--
DROP TABLE IF EXISTS `model`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `model` (
`model_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`slug` varchar(100) NOT NULL
DEFAULT '',
`description` text NOT NULL,
`likes` int(11) unsigned NOT
NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`rated_by`
int(11) NOT NULL DEFAULT '0',
`total_videos` int(11) NOT NULL DEFAULT
'0',
`total_albums` int(11) NOT NULL DEFAULT '0',
`total_comments`
int(11) NOT NULL DEFAULT '0',
`total_views` bigint(20) NOT NULL DEFAULT
'0',
`total_favorites` int(11) NOT NULL DEFAULT '0',
`total_subscribers` int(11) NOT NULL DEFAULT '0',
`ext` varchar(4) NOT
NULL DEFAULT '',
`bg_ext` varchar(4) NOT NULL DEFAULT '',
`edit_id`
int(11) NOT NULL DEFAULT '0',
`edit_date` datetime NOT NULL DEFAULT
'0000-00-00 00:00:00',
`add_date` datetime NOT NULL DEFAULT '0000-00-00
00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
`gender`
enum('male','female','tranny') NOT NULL DEFAULT 'female',
`adv` int(11)
NOT NULL DEFAULT '0',
`featured` enum('0','1') NOT NULL DEFAULT '0',
`feature_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY
KEY (`model_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`),
KEY `total_views` (`total_views`),
KEY `total_favorites`
(`total_favorites`),
KEY `total_comments` (`total_comments`),
KEY
`rating` (`rating`,`rated_by`),
KEY `status` (`status`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `model`
--
LOCK TABLES `model`
WRITE;
/*!40000 ALTER TABLE `model` DISABLE KEYS */;
/*!40000 ALTER TABLE
`model` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`model_albums`
--
DROP TABLE IF EXISTS `model_albums`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `model_albums` (
`model_id`
int(11) NOT NULL DEFAULT '0',
`album_id` int(11) NOT NULL DEFAULT '0',
KEY `album_id` (`album_id`),
KEY `model_id` (`model_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `model_albums`
--
LOCK TABLES
`model_albums` WRITE;
/*!40000 ALTER TABLE `model_albums` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `model_albums` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `model_bio`
--
DROP TABLE IF
EXISTS `model_bio`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `model_bio` (
`model_id` int(11) NOT NULL DEFAULT '0',
`birth_date` date NOT NULL DEFAULT '0000-00-00',
`birth_location`
varchar(255) NOT NULL DEFAULT '',
`birth_name` varchar(100) NOT NULL
DEFAULT '',
`aliases` varchar(255) NOT NULL DEFAULT '',
`eye_color`
varchar(100) NOT NULL DEFAULT '',
`hair_color` varchar(100) NOT NULL
DEFAULT '',
`weight` varchar(100) NOT NULL DEFAULT '',
`height`
varchar(100) NOT NULL DEFAULT '',
`measurements` varchar(100) NOT NULL
DEFAULT '',
`natural_bust` enum('yes','no') NOT NULL DEFAULT 'no',
`ethnicity` varchar(100) NOT NULL DEFAULT '',
`performs` text NOT NULL,
`links` text NOT NULL,
`url` varchar(255) NOT NULL DEFAULT '',
`nationality` varchar(100) NOT NULL DEFAULT '',
`skin_color` varchar(100)
NOT NULL DEFAULT '',
`age` tinyint(2) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`model_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`model_bio`
--
LOCK TABLES `model_bio` WRITE;
/*!40000 ALTER TABLE
`model_bio` DISABLE KEYS */;
/*!40000 ALTER TABLE `model_bio` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`model_comments`
--
DROP TABLE IF EXISTS `model_comments`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `model_comments` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT
NULL DEFAULT '0',
`model_id` int(11) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT
'0',
`comment` text NOT NULL,
`rated_by` int(11) unsigned NOT NULL
DEFAULT '0',
`likes` int(11) unsigned NOT NULL DEFAULT '0',
`add_time`
int(11) unsigned NOT NULL DEFAULT '0',
`spam` enum('0','1') NOT NULL
DEFAULT '1',
`status` enum('0','1') NOT NULL DEFAULT '1',
`nickname`
varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`comment_id`),
KEY
`parent_id` (`parent_id`),
KEY `model_id` (`model_id`),
KEY `user_id`
(`user_id`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `model_comments`
--
LOCK TABLES
`model_comments` WRITE;
/*!40000 ALTER TABLE `model_comments` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `model_comments` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `model_favorites`
--
DROP TABLE
IF EXISTS `model_favorites`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `model_favorites` (
`model_id` int(11) NOT NULL DEFAULT
'0',
`user_id` int(11) NOT NULL DEFAULT '0',
`add_time` int(11)
unsigned NOT NULL DEFAULT '0',
KEY `model_id` (`model_id`),
KEY
`user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`model_favorites`
--
LOCK TABLES `model_favorites` WRITE;
/*!40000 ALTER
TABLE `model_favorites` DISABLE KEYS */;
/*!40000 ALTER TABLE
`model_favorites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `model_rating`
--
DROP TABLE IF EXISTS `model_rating`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `model_rating` (
`rating_id`
int(11) NOT NULL AUTO_INCREMENT,
`model_id` int(11) NOT NULL DEFAULT
'0',
`voter_id` int(11) NOT NULL DEFAULT '0',
`voter_ip` int(10) NOT
NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`add_time`
int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`rating_id`),
KEY
`model_id` (`model_id`),
KEY `voter_id` (`voter_id`),
KEY `voter_ip`
(`voter_ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`model_rating`
--
LOCK TABLES `model_rating` WRITE;
/*!40000 ALTER TABLE
`model_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE `model_rating` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`model_subscribers`
--
DROP TABLE IF EXISTS `model_subscribers`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `model_subscribers` (
`model_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`model_id`,`user_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`model_subscribers`
--
LOCK TABLES `model_subscribers` WRITE;
/*!40000
ALTER TABLE `model_subscribers` DISABLE KEYS */;
/*!40000 ALTER TABLE
`model_subscribers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `model_videos`
--
DROP TABLE IF EXISTS `model_videos`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `model_videos` (
`model_id`
int(11) NOT NULL DEFAULT '0',
`video_id` int(11) NOT NULL DEFAULT '0',
KEY `model_id` (`model_id`),
KEY `video_id` (`video_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `model_videos`
--
LOCK TABLES
`model_videos` WRITE;
/*!40000 ALTER TABLE `model_videos` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `model_videos` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `model_views`
--
DROP TABLE IF
EXISTS `model_views`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `model_views` (
`model_id` int(11) NOT NULL DEFAULT
'0',
`user_id` int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT
NULL DEFAULT '0',
`view_time` int(11) unsigned NOT NULL DEFAULT '0',
KEY `model_id` (`model_id`),
KEY `user_id` (`user_id`),
KEY `ip`
(`ip`),
KEY `view_date` (`view_time`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `model_views`
--
LOCK TABLES
`model_views` WRITE;
/*!40000 ALTER TABLE `model_views` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `model_views` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `module`
--
DROP TABLE IF EXISTS
`module`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `module` (
`module_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL
DEFAULT '',
`description` text NOT NULL,
`slugs` varchar(255) NOT NULL
DEFAULT '',
`type` enum('core','extension') NOT NULL DEFAULT 'core',
`version` varchar(10) NOT NULL DEFAULT '',
`provider` varchar(255) NOT
NULL DEFAULT '',
`access`
enum('administrator','moderator','registered','subscriber','webmaster','all')
NOT NULL DEFAULT 'all',
`config` text NOT NULL,
`config_cache` text NOT
NULL,
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`update_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status`
enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`module_id`),
UNIQUE
KEY `name` (`name`),
KEY `status` (`status`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `module`
--
LOCK TABLES
`module` WRITE;
/*!40000 ALTER TABLE `module` DISABLE KEYS */;
INSERT INTO
`module` VALUES (1,'core','Core Module (always
enabled)','core','core','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(2,'404','404 Not Found Module
(required, never
enabled)','404','core','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','0'),(3,'video','Video
Module','video','extension','1.0.0','adultscriptpro','all','a:152:{s:10:\"components\";a:6:{s:6:\"browse\";i:1;s:4:\"view\";i:1;s:6:\"search\";i:1;s:3:\"tag\";i:1;s:3:\"rss\";i:1;s:7:\"related\";i:1;}s:15:\"browse_category\";i:1;s:12:\"browse_order\";i:1;s:15:\"browse_timeline\";i:1;s:15:\"browse_per_page\";i:28;s:11:\"search_type\";s:6:\"simple\";s:15:\"search_per_page\";i:28;s:3:\"rss\";i:1;s:8:\"rss_type\";s:6:\"simple\";s:12:\"rss_per_page\";i:20;s:12:\"tag_per_page\";i:28;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:12:\"view_related\";i:1;s:14:\"related_method\";s:6:\"simple\";s:13:\"related_total\";i:100;s:16:\"related_per_page\";i:15;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:1;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:10;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:8:\"download\";i:1;s:14:\"download_perms\";s:3:\"all\";s:14:\"upload_enabled\";i:1;s:11:\"upload_perm\";s:9:\"anonymous\";s:15:\"upload_progress\";s:4:\"none\";s:12:\"upload_limit\";i:10;s:14:\"max_categories\";i:5;s:17:\"video_allowed_ext\";a:8:{i:0;s:3:\"wmv\";i:1;s:3:\"mov\";i:2;s:3:\"avi\";i:3;s:3:\"flv\";i:4;s:2:\"rm\";i:5;s:3:\"mpg\";i:6;s:2:\"qt\";i:7;s:3:\"mp4\";}s:14:\"video_max_size\";i:100;s:5:\"queue\";i:1;s:11:\"queue_limit\";i:2;s:7:\"approve\";i:0;s:12:\"multi_server\";i:0;s:9:\"amazon_s3\";i:0;s:13:\"s3_access_key\";s:0:\"\";s:13:\"s3_secret_key\";s:0:\"\";s:9:\"s3_bucket\";s:0:\"\";s:14:\"cloudfront_url\";s:0:\"\";s:10:\"nice_level\";i:8;s:8:\"flv_copy\";i:0;s:13:\"mp4_reconvert\";i:0;s:7:\"mp4_crf\";i:20;s:10:\"mp4_resize\";i:1;s:9:\"mp4_width\";i:640;s:10:\"mp4_height\";i:360;s:10:\"mp4_preset\";s:4:\"fast\";s:9:\"mp4_level\";s:3:\"3.0\";s:11:\"mp4_profile\";s:4:\"main\";s:11:\"mp4_maxrate\";i:850;s:15:\"mp4_audio_codec\";s:3:\"aac\";s:17:\"mp4_audio_bitrate\";i:64;s:20:\"mp4_audio_samplerate\";i:22050;s:11:\"mp4_trailer\";i:0;s:13:\"mp4_watermark\";N;s:17:\"mp4_watermark_pos\";s:8:\"top-left\";s:14:\"mp4_hd_convert\";i:1;s:16:\"mp4_hd_reconvert\";i:0;s:17:\"mp4_hd_min_height\";i:720;s:16:\"mp4_hd_min_width\";i:0;s:18:\"mp4_hd_min_bitrate\";i:0;s:10:\"mp4_hd_crf\";i:20;s:13:\"mp4_hd_resize\";i:1;s:12:\"mp4_hd_width\";i:1280;s:13:\"mp4_hd_height\";i:720;s:13:\"mp4_hd_preset\";s:4:\"fast\";s:12:\"mp4_hd_level\";s:3:\"3.0\";s:14:\"mp4_hd_profile\";s:4:\"high\";s:14:\"mp4_hd_maxrate\";i:0;s:18:\"mp4_hd_audio_codec\";s:3:\"aac\";s:20:\"mp4_hd_audio_bitrate\";i:192;s:23:\"mp4_hd_audio_samplerate\";i:44100;s:14:\"mp4_hd_trailer\";i:0;s:16:\"mp4_hd_watermark\";N;s:20:\"mp4_hd_watermark_pos\";s:8:\"top-left\";s:14:\"mobile_convert\";i:1;s:13:\"mobile_resize\";i:1;s:12:\"mobile_width\";i:426;s:13:\"mobile_height\";i:240;s:13:\"mobile_preset\";s:4:\"fast\";s:12:\"mobile_level\";s:3:\"1.3\";s:14:\"mobile_profile\";s:8:\"baseline\";s:10:\"mobile_crf\";i:20;s:14:\"mobile_maxrate\";i:500;s:18:\"mobile_audio_codec\";s:3:\"aac\";s:20:\"mobile_audio_bitrate\";i:64;s:23:\"mobile_audio_samplerate\";i:22050;s:14:\"mobile_trailer\";i:0;s:16:\"mobile_watermark\";N;s:20:\"mobile_watermark_pos\";s:8:\"top-left\";s:11:\"ffmpeg_path\";s:15:\"/usr/bin/ffmpeg\";s:12:\"ffprobe_path\";s:16:\"/usr/bin/ffprobe\";s:10:\"yamdi_path\";s:14:\"/usr/bin/yamdi\";s:16:\"qtfaststart_path\";s:21:\"/usr/bin/qt-faststart\";s:3:\"log\";i:1;s:11:\"delete_orig\";i:1;s:13:\"thumb_preview\";i:1;s:6:\"thumbs\";i:20;s:11:\"thumb_width\";i:240;s:12:\"thumb_height\";i:180;s:11:\"thumb_sizes\";a:6:{i:0;s:7:\"160x120\";i:1;s:7:\"180x135\";i:2;s:7:\"200x150\";i:3;s:7:\"240x180\";i:4;s:7:\"320x240\";i:5;s:7:\"300x225\";}s:10:\"thumb_extr\";s:6:\"direct\";s:12:\"thumb_resize\";s:6:\"adjust\";s:14:\"thumb_optimize\";i:1;s:12:\"convert_path\";s:16:\"/usr/bin/convert\";s:17:\"thumb_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"thumb_max_size\";i:2;s:11:\"thumb_slide\";i:1;s:12:\"thumb_server\";i:0;s:10:\"thumb_host\";s:9:\"localhost\";s:10:\"thumb_port\";i:21;s:10:\"thumb_user\";s:7:\"mserver\";s:10:\"thumb_pass\";s:7:\"mserver\";s:10:\"thumb_root\";s:11:\"public_html\";s:11:\"embed_allow\";i:1;s:11:\"embed_track\";i:0;s:11:\"embed_width\";i:650;s:12:\"embed_height\";i:490;s:14:\"delete_enabled\";i:1;s:13:\"delete_method\";s:6:\"delete\";s:15:\"delete_username\";s:9:\"anonymous\";s:16:\"title_min_length\";i:3;s:16:\"title_max_length\";i:99;s:15:\"slug_max_length\";i:99;s:15:\"desc_min_length\";i:3;s:15:\"desc_max_length\";i:500;s:15:\"tags_min_length\";i:3;s:15:\"tags_max_length\";i:500;s:14:\"tag_max_length\";i:50;s:13:\"tag_max_words\";i:3;s:13:\"separate_meta\";i:0;s:13:\"subcategories\";i:1;s:6:\"player\";s:10:\"flowplayer\";s:11:\"track_views\";i:0;s:16:\"streaming_method\";s:11:\"progressive\";s:16:\"streaming_server\";s:5:\"nginx\";s:16:\"streaming_secure\";i:1;s:13:\"streaming_url\";s:19:\"http://localhost:81\";s:16:\"streaming_prefix\";s:8:\"/stream/\";s:13:\"streaming_key\";s:7:\"d1gw33d\";s:11:\"rtmp_stream\";s:0:\"\";s:9:\"playlists\";i:1;s:18:\"playlists_per_page\";i:10;s:15:\"playlist_rating\";i:1;s:21:\"playlist_rating_count\";i:1;s:20:\"playlist_rating_type\";s:2:\"ip\";s:17:\"playlist_comments\";i:1;s:22:\"playlist_allow_comment\";i:1;s:26:\"playlist_comments_per_page\";i:10;}','a:152:{s:10:\"components\";a:6:{s:6:\"browse\";i:1;s:4:\"view\";i:1;s:6:\"search\";i:1;s:3:\"tag\";i:1;s:3:\"rss\";i:1;s:7:\"related\";i:1;}s:15:\"browse_category\";i:1;s:12:\"browse_order\";i:1;s:15:\"browse_timeline\";i:1;s:15:\"browse_per_page\";i:28;s:11:\"search_type\";s:6:\"simple\";s:15:\"search_per_page\";i:28;s:3:\"rss\";i:1;s:8:\"rss_type\";s:6:\"simple\";s:12:\"rss_per_page\";i:20;s:12:\"tag_per_page\";i:28;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:12:\"view_related\";i:1;s:14:\"related_method\";s:6:\"simple\";s:13:\"related_total\";i:100;s:16:\"related_per_page\";i:15;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:1;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:10;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:8:\"download\";i:1;s:14:\"download_perms\";s:3:\"all\";s:14:\"upload_enabled\";i:1;s:11:\"upload_perm\";s:9:\"anonymous\";s:15:\"upload_progress\";s:4:\"none\";s:12:\"upload_limit\";i:10;s:14:\"max_categories\";i:5;s:17:\"video_allowed_ext\";a:8:{i:0;s:3:\"wmv\";i:1;s:3:\"mov\";i:2;s:3:\"avi\";i:3;s:3:\"flv\";i:4;s:2:\"rm\";i:5;s:3:\"mpg\";i:6;s:2:\"qt\";i:7;s:3:\"mp4\";}s:14:\"video_max_size\";i:100;s:5:\"queue\";i:1;s:11:\"queue_limit\";i:2;s:7:\"approve\";i:0;s:12:\"multi_server\";i:0;s:9:\"amazon_s3\";i:0;s:13:\"s3_access_key\";s:0:\"\";s:13:\"s3_secret_key\";s:0:\"\";s:9:\"s3_bucket\";s:0:\"\";s:14:\"cloudfront_url\";s:0:\"\";s:10:\"nice_level\";i:8;s:8:\"flv_copy\";i:0;s:13:\"mp4_reconvert\";i:0;s:7:\"mp4_crf\";i:20;s:10:\"mp4_resize\";i:1;s:9:\"mp4_width\";i:640;s:10:\"mp4_height\";i:360;s:10:\"mp4_preset\";s:4:\"fast\";s:9:\"mp4_level\";s:3:\"3.0\";s:11:\"mp4_profile\";s:4:\"main\";s:11:\"mp4_maxrate\";i:850;s:15:\"mp4_audio_codec\";s:3:\"aac\";s:17:\"mp4_audio_bitrate\";i:64;s:20:\"mp4_audio_samplerate\";i:22050;s:11:\"mp4_trailer\";i:0;s:13:\"mp4_watermark\";N;s:17:\"mp4_watermark_pos\";s:8:\"top-left\";s:14:\"mp4_hd_convert\";i:1;s:16:\"mp4_hd_reconvert\";i:0;s:17:\"mp4_hd_min_height\";i:720;s:16:\"mp4_hd_min_width\";i:0;s:18:\"mp4_hd_min_bitrate\";i:0;s:10:\"mp4_hd_crf\";i:20;s:13:\"mp4_hd_resize\";i:1;s:12:\"mp4_hd_width\";i:1280;s:13:\"mp4_hd_height\";i:720;s:13:\"mp4_hd_preset\";s:4:\"fast\";s:12:\"mp4_hd_level\";s:3:\"3.0\";s:14:\"mp4_hd_profile\";s:4:\"high\";s:14:\"mp4_hd_maxrate\";i:0;s:18:\"mp4_hd_audio_codec\";s:3:\"aac\";s:20:\"mp4_hd_audio_bitrate\";i:192;s:23:\"mp4_hd_audio_samplerate\";i:44100;s:14:\"mp4_hd_trailer\";i:0;s:16:\"mp4_hd_watermark\";N;s:20:\"mp4_hd_watermark_pos\";s:8:\"top-left\";s:14:\"mobile_convert\";i:1;s:13:\"mobile_resize\";i:1;s:12:\"mobile_width\";i:426;s:13:\"mobile_height\";i:240;s:13:\"mobile_preset\";s:4:\"fast\";s:12:\"mobile_level\";s:3:\"1.3\";s:14:\"mobile_profile\";s:8:\"baseline\";s:10:\"mobile_crf\";i:20;s:14:\"mobile_maxrate\";i:500;s:18:\"mobile_audio_codec\";s:3:\"aac\";s:20:\"mobile_audio_bitrate\";i:64;s:23:\"mobile_audio_samplerate\";i:22050;s:14:\"mobile_trailer\";i:0;s:16:\"mobile_watermark\";N;s:20:\"mobile_watermark_pos\";s:8:\"top-left\";s:11:\"ffmpeg_path\";s:15:\"/usr/bin/ffmpeg\";s:12:\"ffprobe_path\";s:16:\"/usr/bin/ffprobe\";s:10:\"yamdi_path\";s:14:\"/usr/bin/yamdi\";s:16:\"qtfaststart_path\";s:21:\"/usr/bin/qt-faststart\";s:3:\"log\";i:1;s:11:\"delete_orig\";i:1;s:13:\"thumb_preview\";i:1;s:6:\"thumbs\";i:20;s:11:\"thumb_width\";i:240;s:12:\"thumb_height\";i:180;s:11:\"thumb_sizes\";a:6:{i:0;s:7:\"160x120\";i:1;s:7:\"180x135\";i:2;s:7:\"200x150\";i:3;s:7:\"240x180\";i:4;s:7:\"320x240\";i:5;s:7:\"300x225\";}s:10:\"thumb_extr\";s:6:\"direct\";s:12:\"thumb_resize\";s:6:\"adjust\";s:14:\"thumb_optimize\";i:1;s:12:\"convert_path\";s:16:\"/usr/bin/convert\";s:17:\"thumb_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"thumb_max_size\";i:2;s:11:\"thumb_slide\";i:1;s:12:\"thumb_server\";i:0;s:10:\"thumb_host\";s:9:\"localhost\";s:10:\"thumb_port\";i:21;s:10:\"thumb_user\";s:7:\"mserver\";s:10:\"thumb_pass\";s:7:\"mserver\";s:10:\"thumb_root\";s:11:\"public_html\";s:11:\"embed_allow\";i:1;s:11:\"embed_track\";i:0;s:11:\"embed_width\";i:650;s:12:\"embed_height\";i:490;s:14:\"delete_enabled\";i:1;s:13:\"delete_method\";s:6:\"delete\";s:15:\"delete_username\";s:9:\"anonymous\";s:16:\"title_min_length\";i:3;s:16:\"title_max_length\";i:99;s:15:\"slug_max_length\";i:99;s:15:\"desc_min_length\";i:3;s:15:\"desc_max_length\";i:500;s:15:\"tags_min_length\";i:3;s:15:\"tags_max_length\";i:500;s:14:\"tag_max_length\";i:50;s:13:\"tag_max_words\";i:3;s:13:\"separate_meta\";i:0;s:13:\"subcategories\";i:1;s:6:\"player\";s:10:\"flowplayer\";s:11:\"track_views\";i:0;s:16:\"streaming_method\";s:11:\"progressive\";s:16:\"streaming_server\";s:5:\"nginx\";s:16:\"streaming_secure\";i:1;s:13:\"streaming_url\";s:19:\"http://localhost:81\";s:16:\"streaming_prefix\";s:8:\"/stream/\";s:13:\"streaming_key\";s:7:\"d1gw33d\";s:11:\"rtmp_stream\";s:0:\"\";s:9:\"playlists\";i:1;s:18:\"playlists_per_page\";i:10;s:15:\"playlist_rating\";i:1;s:21:\"playlist_rating_count\";i:1;s:20:\"playlist_rating_type\";s:2:\"ip\";s:17:\"playlist_comments\";i:1;s:22:\"playlist_allow_comment\";i:1;s:26:\"playlist_comments_per_page\";i:10;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(16,'grab','Mass Video Embedder Module
(admin
only)','grab','extension','1.0.4','adultscriptpro','all','a:5:{s:8:\"username\";s:9:\"anonymous\";s:7:\"user_id\";i:2;s:8:\"category\";i:0;s:4:\"urls\";a:20:{s:7:\"redtube\";s:30:\"http://www.redtube.com/?page=1\";s:7:\"pornhub\";s:29:\"http://www.pornhub.com/videos\";s:7:\"xvideos\";s:22:\"http://www.xvideos.com\";s:10:\"pornrabbit\";s:36:\"http://www.pornrabbit.com/page2.html\";s:9:\"pornative\";s:38:\"http://www.pornative.com/overview.html\";s:5:\"porn2\";s:20:\"http://www.porn2.com\";s:4:\"pron\";s:15:\"http://pron.com\";s:10:\"keezmovies\";s:33:\"http://www.keezmovies.com/?page=2\";s:7:\"shufuni\";s:30:\"http://www.shufuni.com/?page=2\";s:9:\"madthumbs\";s:42:\"http://www.madthumbs.com/videos/browse?p=2\";s:10:\"pornerbros\";s:27:\"http://pornerbros.com/best/\";s:5:\"tube8\";s:35:\"http://www.tube8.com/latest/page/2/\";s:8:\"freeporn\";s:37:\"http://www.freeporn.com/videos/page-2\";s:4:\"yobt\";s:19:\"http://www.yobt.com\";s:7:\"sextube\";s:57:\"http://www.sextube.com/categories&c=All&lo=basic&s=mr&t=a\";s:8:\"slutload\";s:30:\"http://www.slutload.com/fresh/\";s:5:\"dojki\";s:20:\"http://www.dojki.com\";s:6:\"manhub\";s:52:\"http://www.manhub.com/videos/latestloggedout/?page=2\";s:7:\"deviant\";N;s:8:\"xhamster\";s:34:\"http://www.xhamster.com/new/2.html\";}s:5:\"sites\";a:22:{s:11:\"pornhub.com\";s:7:\"pornhub\";s:11:\"redtube.com\";s:7:\"redtube\";s:11:\"empflix.com\";s:7:\"empflix\";s:11:\"tnaflix.com\";s:7:\"tnaflix\";s:9:\"porn2.com\";s:5:\"porn2\";s:8:\"pron.com\";s:4:\"pron\";s:13:\"pornative.com\";s:9:\"pornative\";s:11:\"xvideos.com\";s:7:\"xvideos\";s:14:\"pornrabbit.com\";s:10:\"pornrabbit\";s:11:\"shufuni.com\";s:7:\"shufuni\";s:14:\"keezmovies.com\";s:10:\"keezmovies\";s:13:\"madthumbs.com\";s:9:\"madthumbs\";s:8:\"yobt.com\";s:4:\"yobt\";s:11:\"sextube.com\";s:7:\"sextube\";s:12:\"slutload.com\";s:8:\"slutload\";s:9:\"tube8.com\";s:5:\"tube8\";s:14:\"pornerbros.com\";s:10:\"pornerbros\";s:12:\"freeporn.com\";s:8:\"freeporn\";s:10:\"manhub.com\";s:6:\"manhub\";s:15:\"deviantclip.com\";s:11:\"deviantclip\";s:12:\"xhamster.com\";s:8:\"xhamster\";s:9:\"dojki.com\";s:5:\"dojki\";}}','a:5:{s:8:\"username\";s:9:\"anonymous\";s:7:\"user_id\";i:2;s:8:\"category\";i:0;s:4:\"urls\";a:20:{s:7:\"redtube\";s:30:\"http://www.redtube.com/?page=1\";s:7:\"pornhub\";s:29:\"http://www.pornhub.com/videos\";s:7:\"xvideos\";s:22:\"http://www.xvideos.com\";s:10:\"pornrabbit\";s:36:\"http://www.pornrabbit.com/page2.html\";s:9:\"pornative\";s:38:\"http://www.pornative.com/overview.html\";s:5:\"porn2\";s:20:\"http://www.porn2.com\";s:4:\"pron\";s:15:\"http://pron.com\";s:10:\"keezmovies\";s:33:\"http://www.keezmovies.com/?page=2\";s:7:\"shufuni\";s:30:\"http://www.shufuni.com/?page=2\";s:9:\"madthumbs\";s:42:\"http://www.madthumbs.com/videos/browse?p=2\";s:10:\"pornerbros\";s:27:\"http://pornerbros.com/best/\";s:5:\"tube8\";s:35:\"http://www.tube8.com/latest/page/2/\";s:8:\"freeporn\";s:37:\"http://www.freeporn.com/videos/page-2\";s:4:\"yobt\";s:19:\"http://www.yobt.com\";s:7:\"sextube\";s:57:\"http://www.sextube.com/categories&c=All&lo=basic&s=mr&t=a\";s:8:\"slutload\";s:30:\"http://www.slutload.com/fresh/\";s:5:\"dojki\";s:20:\"http://www.dojki.com\";s:6:\"manhub\";s:52:\"http://www.manhub.com/videos/latestloggedout/?page=2\";s:7:\"deviant\";N;s:8:\"xhamster\";s:34:\"http://www.xhamster.com/new/2.html\";}s:5:\"sites\";a:22:{s:11:\"pornhub.com\";s:7:\"pornhub\";s:11:\"redtube.com\";s:7:\"redtube\";s:11:\"empflix.com\";s:7:\"empflix\";s:11:\"tnaflix.com\";s:7:\"tnaflix\";s:9:\"porn2.com\";s:5:\"porn2\";s:8:\"pron.com\";s:4:\"pron\";s:13:\"pornative.com\";s:9:\"pornative\";s:11:\"xvideos.com\";s:7:\"xvideos\";s:14:\"pornrabbit.com\";s:10:\"pornrabbit\";s:11:\"shufuni.com\";s:7:\"shufuni\";s:14:\"keezmovies.com\";s:10:\"keezmovies\";s:13:\"madthumbs.com\";s:9:\"madthumbs\";s:8:\"yobt.com\";s:4:\"yobt\";s:11:\"sextube.com\";s:7:\"sextube\";s:12:\"slutload.com\";s:8:\"slutload\";s:9:\"tube8.com\";s:5:\"tube8\";s:14:\"pornerbros.com\";s:10:\"pornerbros\";s:12:\"freeporn.com\";s:8:\"freeporn\";s:10:\"manhub.com\";s:6:\"manhub\";s:15:\"deviantclip.com\";s:11:\"deviantclip\";s:12:\"xhamster.com\";s:8:\"xhamster\";s:9:\"dojki.com\";s:5:\"dojki\";}}','2015-04-08
10:57:43','2014-02-10 01:02:13','1'),(11,'offline','Offline Page (required,
never
active)','offline','core','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','0'),(4,'frontpage','Front Page Module
(never
disabled)','frontpage','core','1.0.0','adultscriptpro','all','a:4:{s:7:\"watched\";i:1;s:16:\"watched_per_page\";i:6;s:6:\"videos\";s:6:\"recent\";s:15:\"videos_per_page\";i:28;}','a:4:{s:7:\"watched\";i:1;s:16:\"watched_per_page\";i:6;s:6:\"videos\";s:6:\"recent\";s:15:\"videos_per_page\";i:28;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(5,'user','User
Module','user','extension','1.0.0','adultscriptpro','all','a:35:{s:10:\"components\";a:23:{s:5:\"login\";i:1;s:6:\"logout\";i:1;s:6:\"signup\";i:1;s:7:\"account\";i:1;s:6:\"avatar\";i:1;s:7:\"profile\";i:1;s:11:\"preferences\";i:1;s:13:\"notifications\";i:1;s:4:\"lost\";i:1;s:7:\"confirm\";i:1;s:6:\"videos\";i:1;s:9:\"favorites\";i:1;s:9:\"playlists\";i:1;s:9:\"dashboard\";i:1;s:7:\"history\";i:1;s:7:\"friends\";i:1;s:11:\"subscribers\";i:1;s:13:\"subscriptions\";i:1;s:6:\"banner\";i:1;s:6:\"albums\";i:1;s:6:\"photos\";i:1;s:8:\"playlist\";i:1;s:8:\"comments\";i:1;}s:6:\"points\";a:11:{s:6:\"signup\";i:1;s:5:\"login\";i:1;s:6:\"avatar\";i:1;s:4:\"rate\";i:1;s:10:\"friend_add\";i:1;s:10:\"friend_del\";i:1;s:12:\"upload_video\";i:1;s:11:\"share_video\";i:1;s:10:\"rate_video\";i:1;s:14:\"favorite_video\";i:1;s:12:\"delete_video\";i:1;}s:14:\"signup_enabled\";i:1;s:12:\"user_approve\";i:0;s:12:\"user_confirm\";i:0;s:11:\"signup_name\";i:1;s:13:\"signup_gender\";i:1;s:14:\"signup_country\";i:1;s:11:\"signup_city\";i:1;s:10:\"signup_zip\";i:1;s:17:\"signup_birth_date\";i:1;s:10:\"signup_age\";i:18;s:14:\"signup_captcha\";i:1;s:18:\"avatar_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:15:\"avatar_max_size\";i:5;s:12:\"avatar_width\";i:160;s:13:\"avatar_height\";i:180;s:13:\"avatar_method\";s:4:\"crop\";s:11:\"guest_limit\";s:1:\"0\";s:15:\"guest_bandwidth\";i:10;s:14:\"guest_duration\";d:3600;s:11:\"guest_views\";i:3;s:11:\"guest_clean\";i:0;s:16:\"registered_limit\";i:0;s:17:\"registered_method\";i:0;s:11:\"user_points\";i:1;s:17:\"account_pwd_check\";i:1;s:23:\"account_username_change\";i:0;s:11:\"advertising\";i:1;s:13:\"online_expire\";i:5;s:13:\"verify_expire\";i:2;s:19:\"username_min_length\";i:5;s:19:\"username_max_length\";i:16;s:14:\"pwd_min_length\";i:6;s:14:\"pwd_max_length\";i:32;}','a:35:{s:10:\"components\";a:23:{s:5:\"login\";i:1;s:6:\"logout\";i:1;s:6:\"signup\";i:1;s:7:\"account\";i:1;s:6:\"avatar\";i:1;s:7:\"profile\";i:1;s:11:\"preferences\";i:1;s:13:\"notifications\";i:1;s:4:\"lost\";i:1;s:7:\"confirm\";i:1;s:6:\"videos\";i:1;s:9:\"favorites\";i:1;s:9:\"playlists\";i:1;s:9:\"dashboard\";i:1;s:7:\"history\";i:1;s:7:\"friends\";i:1;s:11:\"subscribers\";i:1;s:13:\"subscriptions\";i:1;s:6:\"banner\";i:1;s:6:\"albums\";i:1;s:6:\"photos\";i:1;s:8:\"playlist\";i:1;s:8:\"comments\";i:1;}s:6:\"points\";a:11:{s:6:\"signup\";i:1;s:5:\"login\";i:1;s:6:\"avatar\";i:1;s:4:\"rate\";i:1;s:10:\"friend_add\";i:1;s:10:\"friend_del\";i:1;s:12:\"upload_video\";i:1;s:11:\"share_video\";i:1;s:10:\"rate_video\";i:1;s:14:\"favorite_video\";i:1;s:12:\"delete_video\";i:1;}s:14:\"signup_enabled\";i:1;s:12:\"user_approve\";i:0;s:12:\"user_confirm\";i:0;s:11:\"signup_name\";i:1;s:13:\"signup_gender\";i:1;s:14:\"signup_country\";i:1;s:11:\"signup_city\";i:1;s:10:\"signup_zip\";i:1;s:17:\"signup_birth_date\";i:1;s:10:\"signup_age\";i:18;s:14:\"signup_captcha\";i:1;s:18:\"avatar_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:15:\"avatar_max_size\";i:5;s:12:\"avatar_width\";i:160;s:13:\"avatar_height\";i:180;s:13:\"avatar_method\";s:4:\"crop\";s:11:\"guest_limit\";s:1:\"0\";s:15:\"guest_bandwidth\";i:10;s:14:\"guest_duration\";d:3600;s:11:\"guest_views\";i:3;s:11:\"guest_clean\";i:0;s:16:\"registered_limit\";i:0;s:17:\"registered_method\";i:0;s:11:\"user_points\";i:1;s:17:\"account_pwd_check\";i:1;s:23:\"account_username_change\";i:0;s:11:\"advertising\";i:1;s:13:\"online_expire\";i:5;s:13:\"verify_expire\";i:2;s:19:\"username_min_length\";i:5;s:19:\"username_max_length\";i:16;s:14:\"pwd_min_length\";i:6;s:14:\"pwd_max_length\";i:32;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(8,'feedback','Feedback
Module','feedback','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(10,'static','Static Page
Module','static','core','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(12,'search','Search
Module','search','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(13,'adv','Advertising
Module','adv','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(14,'link','Link Exchange
Module','link','extension','1.0.0','adultscriptpro','all','a:8:{s:5:\"order\";s:7:\"link_id\";s:8:\"add_page\";i:1;s:14:\"backlink_check\";i:1;s:12:\"pagerank_min\";i:0;s:11:\"cheat_check\";i:1;s:13:\"referer_limit\";i:1;s:10:\"cron_check\";i:0;s:9:\"frontpage\";i:1;}','a:8:{s:5:\"order\";s:7:\"link_id\";s:8:\"add_page\";i:1;s:14:\"backlink_check\";i:1;s:12:\"pagerank_min\";i:0;s:11:\"cheat_check\";i:1;s:13:\"referer_limit\";i:1;s:10:\"cron_check\";i:0;s:9:\"frontpage\";i:1;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(21,'community','Community
Module','community','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(22,'categories','Video Categories
Module','categories,category','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(23,'message','User Private Messages
Module','message','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(26,'enter','Enter Module (never
disabled)','enter','core','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(27,'pornstar','Pornstars Directory
Module','pornstar','extension','1.0.0','adultscriptpro','all','a:17:{s:10:\"components\";a:5:{s:6:\"browse\";i:1;s:4:\"view\";i:1;s:6:\"search\";i:1;s:6:\"videos\";i:1;s:6:\"albums\";i:1;}s:15:\"models_per_page\";i:20;s:15:\"videos_per_page\";i:16;s:15:\"albums_per_page\";i:16;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:17:\"comments_per_page\";i:10;s:16:\"approve_comments\";i:0;s:17:\"photo_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"photo_max_size\";i:2;s:11:\"photo_width\";i:175;s:12:\"photo_height\";i:215;s:12:\"photo_method\";s:6:\"canvas\";s:11:\"track_views\";i:0;}','a:17:{s:10:\"components\";a:5:{s:6:\"browse\";i:1;s:4:\"view\";i:1;s:6:\"search\";i:1;s:6:\"videos\";i:1;s:6:\"albums\";i:1;}s:15:\"models_per_page\";i:20;s:15:\"videos_per_page\";i:16;s:15:\"albums_per_page\";i:16;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:17:\"comments_per_page\";i:10;s:16:\"approve_comments\";i:0;s:17:\"photo_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"photo_max_size\";i:2;s:11:\"photo_width\";i:175;s:12:\"photo_height\";i:215;s:12:\"photo_method\";s:6:\"canvas\";s:11:\"track_views\";i:0;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(28,'kb','Knowledge Base (FAQ)
Module','kb','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(30,'photo','Photo
Module','photo','extension','1.0.0','adultforge','all','a:58:{s:10:\"components\";a:12:{s:6:\"browse\";i:1;s:6:\"albums\";i:1;s:6:\"photos\";i:1;s:3:\"tag\";i:1;s:6:\"search\";i:1;s:3:\"add\";i:1;s:6:\"upload\";i:1;s:5:\"album\";i:1;s:8:\"category\";i:1;s:5:\"photo\";i:1;s:4:\"edit\";i:1;s:9:\"slideshow\";i:1;}s:11:\"browse_type\";s:6:\"albums\";s:15:\"browse_category\";i:1;s:12:\"browse_order\";i:1;s:15:\"browse_timeline\";i:1;s:15:\"browse_per_page\";i:20;s:11:\"search_type\";s:6:\"simple\";s:15:\"search_per_page\";i:20;s:3:\"rss\";i:1;s:8:\"rss_type\";s:6:\"simple\";s:12:\"rss_per_page\";i:20;s:12:\"tag_per_page\";i:20;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:14:\"album_per_page\";i:20;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:10;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:14:\"allow_password\";i:1;s:14:\"upload_enabled\";i:1;s:11:\"upload_perm\";s:9:\"anonymous\";s:17:\"photo_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"photo_max_size\";i:2;s:7:\"approve\";i:0;s:14:\"max_categories\";i:3;s:17:\"cover_resize_type\";s:4:\"crop\";s:11:\"cover_width\";i:200;s:12:\"cover_height\";i:250;s:11:\"photo_width\";i:625;s:12:\"photo_height\";i:0;s:11:\"thumb_width\";i:200;s:12:\"thumb_height\";i:250;s:6:\"mobile\";i:1;s:12:\"mobile_width\";i:300;s:13:\"mobile_height\";i:0;s:12:\"multi_server\";i:0;s:12:\"thumb_server\";i:0;s:10:\"thumb_host\";s:9:\"localhost\";s:10:\"thumb_port\";i:21;s:10:\"thumb_user\";s:7:\"mserver\";s:10:\"thumb_pass\";s:7:\"mserver\";s:10:\"thumb_root\";s:11:\"public_html\";s:11:\"track_views\";i:0;s:14:\"delete_enabled\";i:1;s:13:\"delete_method\";s:6:\"change\";s:15:\"delete_username\";s:9:\"anonymous\";s:16:\"title_min_length\";i:3;s:16:\"title_max_length\";i:100;s:15:\"desc_min_length\";i:3;s:15:\"desc_max_length\";i:1000;s:15:\"tags_min_length\";i:3;s:15:\"tags_max_length\";i:100;s:14:\"tag_max_length\";i:50;s:13:\"tag_max_words\";i:3;}','a:58:{s:10:\"components\";a:12:{s:6:\"browse\";i:1;s:6:\"albums\";i:1;s:6:\"photos\";i:1;s:3:\"tag\";i:1;s:6:\"search\";i:1;s:3:\"add\";i:1;s:6:\"upload\";i:1;s:5:\"album\";i:1;s:8:\"category\";i:1;s:5:\"photo\";i:1;s:4:\"edit\";i:1;s:9:\"slideshow\";i:1;}s:11:\"browse_type\";s:6:\"albums\";s:15:\"browse_category\";i:1;s:12:\"browse_order\";i:1;s:15:\"browse_timeline\";i:1;s:15:\"browse_per_page\";i:20;s:11:\"search_type\";s:6:\"simple\";s:15:\"search_per_page\";i:20;s:3:\"rss\";i:1;s:8:\"rss_type\";s:6:\"simple\";s:12:\"rss_per_page\";i:20;s:12:\"tag_per_page\";i:20;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:14:\"album_per_page\";i:20;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:10;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";s:14:\"allow_password\";i:1;s:14:\"upload_enabled\";i:1;s:11:\"upload_perm\";s:9:\"anonymous\";s:17:\"photo_allowed_ext\";a:4:{i:0;s:3:\"jpg\";i:1;s:4:\"jpeg\";i:2;s:3:\"png\";i:3;s:3:\"gif\";}s:14:\"photo_max_size\";i:2;s:7:\"approve\";i:0;s:14:\"max_categories\";i:3;s:17:\"cover_resize_type\";s:4:\"crop\";s:11:\"cover_width\";i:200;s:12:\"cover_height\";i:250;s:11:\"photo_width\";i:625;s:12:\"photo_height\";i:0;s:11:\"thumb_width\";i:200;s:12:\"thumb_height\";i:250;s:6:\"mobile\";i:1;s:12:\"mobile_width\";i:300;s:13:\"mobile_height\";i:0;s:12:\"multi_server\";i:0;s:12:\"thumb_server\";i:0;s:10:\"thumb_host\";s:9:\"localhost\";s:10:\"thumb_port\";i:21;s:10:\"thumb_user\";s:7:\"mserver\";s:10:\"thumb_pass\";s:7:\"mserver\";s:10:\"thumb_root\";s:11:\"public_html\";s:11:\"track_views\";i:0;s:14:\"delete_enabled\";i:1;s:13:\"delete_method\";s:6:\"change\";s:15:\"delete_username\";s:9:\"anonymous\";s:16:\"title_min_length\";i:3;s:16:\"title_max_length\";i:100;s:15:\"desc_min_length\";i:3;s:15:\"desc_max_length\";i:1000;s:15:\"tags_min_length\";i:3;s:15:\"tags_max_length\";i:100;s:14:\"tag_max_length\";i:50;s:13:\"tag_max_words\";i:3;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(33,'mobile','Mobile (Smartphone)
Module','mobile','extension','1.0.0','adultscriptpro','all','a:31:{s:10:\"components\";a:12:{s:6:\"browse\";i:1;s:6:\"search\";i:1;s:10:\"categories\";i:1;s:8:\"category\";i:1;s:8:\"feedback\";i:1;s:8:\"download\";i:1;s:4:\"view\";i:1;s:6:\"photos\";i:1;s:5:\"album\";i:1;s:5:\"photo\";i:1;s:6:\"static\";i:1;s:5:\"share\";i:1;}s:8:\"redirect\";i:0;s:9:\"site_name\";s:23:\"Mobile
Adult Script Pro\";s:9:\"meta_desc\";s:29:\"Mobile Site
Description here!\";s:9:\"meta_keys\";s:44:\"meta,
keywords, for, the, mobile, site,
here\";s:15:\"videos_per_page\";i:4;s:15:\"related_enabled\";i:1;s:16:\"related_per_page\";i:2;s:13:\"share_enabled\";i:1;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:5;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:0;s:11:\"rating_type\";s:2:\"ip\";s:8:\"download\";i:0;s:14:\"download_perms\";s:3:\"all\";s:15:\"albums_per_page\";i:4;s:15:\"photos_per_page\";i:6;s:18:\"pornstars_per_page\";i:4;s:16:\"pornstars_videos\";i:1;s:25:\"pornstars_videos_per_page\";i:2;s:16:\"pornstars_photos\";i:1;s:25:\"pornstars_photos_per_page\";i:2;s:7:\"premium\";i:0;s:12:\"interstitial\";i:1;s:13:\"inter_timeout\";i:10;s:13:\"inter_session\";i:0;}','a:31:{s:10:\"components\";a:12:{s:6:\"browse\";i:1;s:6:\"search\";i:1;s:10:\"categories\";i:1;s:8:\"category\";i:1;s:8:\"feedback\";i:1;s:8:\"download\";i:1;s:4:\"view\";i:1;s:6:\"photos\";i:1;s:5:\"album\";i:1;s:5:\"photo\";i:1;s:6:\"static\";i:1;s:5:\"share\";i:1;}s:8:\"redirect\";i:0;s:9:\"site_name\";s:23:\"Mobile
Adult Script Pro\";s:9:\"meta_desc\";s:29:\"Mobile Site
Description here!\";s:9:\"meta_keys\";s:44:\"meta,
keywords, for, the, mobile, site,
here\";s:15:\"videos_per_page\";i:4;s:15:\"related_enabled\";i:1;s:16:\"related_per_page\";i:2;s:13:\"share_enabled\";i:1;s:11:\"view_access\";s:3:\"all\";s:9:\"view_desc\";i:1;s:13:\"view_comments\";i:1;s:13:\"allow_comment\";i:2;s:16:\"approve_comments\";i:0;s:17:\"comments_per_page\";i:5;s:12:\"allow_rating\";i:1;s:12:\"rating_count\";i:0;s:11:\"rating_type\";s:2:\"ip\";s:8:\"download\";i:0;s:14:\"download_perms\";s:3:\"all\";s:15:\"albums_per_page\";i:4;s:15:\"photos_per_page\";i:6;s:18:\"pornstars_per_page\";i:4;s:16:\"pornstars_videos\";i:1;s:25:\"pornstars_videos_per_page\";i:2;s:16:\"pornstars_photos\";i:1;s:25:\"pornstars_photos_per_page\";i:2;s:7:\"premium\";i:0;s:12:\"interstitial\";i:1;s:13:\"inter_timeout\";i:10;s:13:\"inter_session\";i:0;}','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(35,'news','News
Module','news','extension','1.0.0','adultscriptpro','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1'),(38,'channel','Channel
Module','channel,channels','extension','1.0.0','adultforge','all','a:4:{s:17:\"channels_per_page\";i:16;s:15:\"videos_per_page\";i:24;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";}','a:4:{s:17:\"channels_per_page\";i:16;s:15:\"videos_per_page\";i:24;s:12:\"rating_count\";i:1;s:11:\"rating_type\";s:2:\"ip\";}','2015-04-08
10:57:43','2014-10-03 12:45:59','1'),(39,'profile','Users Profile
Module','users','extension','1.0.0','adultforge','all','','','2015-04-08
10:57:43','0000-00-00 00:00:00','1');
/*!40000 ALTER TABLE `module` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`module_files`
--
DROP TABLE IF EXISTS `module_files`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `module_files` (
`module_id`
int(11) NOT NULL DEFAULT '0',
`file` varchar(255) NOT NULL DEFAULT '',
`md5sum` varchar(32) NOT NULL DEFAULT '',
KEY `module_id` (`module_id`),
KEY `file_md5` (`file`,`md5sum`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `module_files`
--
LOCK TABLES
`module_files` WRITE;
/*!40000 ALTER TABLE `module_files` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `module_files` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS
`news`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `news` (
`news_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`slug` varchar(255) NOT NULL DEFAULT '',
`content` text NOT NULL,
`meta_title` text NOT NULL,
`meta_desc` text NOT NULL,
`meta_keys` text
NOT NULL,
`total_views` bigint(20) unsigned NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status`
enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`news_id`),
UNIQUE KEY
`slug` (`slug`),
KEY `add_date` (`add_date`),
KEY `status` (`status`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `news`
--
LOCK TABLES
`news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
/*!40000 ALTER
TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `nuevo__invideo`
--
DROP TABLE IF EXISTS `nuevo__invideo`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `nuevo__invideo` (
`ID`
int(11) NOT NULL AUTO_INCREMENT,
`channel` int(11) NOT NULL DEFAULT '0',
`invideo` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`nuevo__invideo`
--
LOCK TABLES `nuevo__invideo` WRITE;
/*!40000 ALTER
TABLE `nuevo__invideo` DISABLE KEYS */;
INSERT INTO `nuevo__invideo` VALUES
(1,0,'',0);
/*!40000 ALTER TABLE `nuevo__invideo` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `nuevo__midroll`
--
DROP TABLE IF
EXISTS `nuevo__midroll`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `nuevo__midroll` (
`ID` int(11) NOT NULL
AUTO_INCREMENT,
`owner` varchar(50) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL,
`email` varchar(255) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL,
`channel` int(11) NOT NULL DEFAULT '0',
`video_id` int(11) NOT NULL DEFAULT '0',
`duration` int(11) NOT NULL
DEFAULT '8',
`title` varchar(80) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL,
`description` varchar(150) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`link` varchar(100) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`target` varchar(6) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL DEFAULT '_self',
`image` varchar(255)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`added` varchar(40)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`expire` varchar(40)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`active` int(11) NOT
NULL DEFAULT '0',
`views` int(11) NOT NULL DEFAULT '0',
`hits` int(11)
NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `nuevo__midroll`
--
LOCK TABLES
`nuevo__midroll` WRITE;
/*!40000 ALTER TABLE `nuevo__midroll` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `nuevo__midroll` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `nuevo__midroll_settings`
--
DROP
TABLE IF EXISTS `nuevo__midroll_settings`;
/*!40101 SET @saved_cs_client
= @@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `nuevo__midroll_settings` (
`ID` int(11) NOT NULL
AUTO_INCREMENT,
`background` varchar(6) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '000000',
`opacity` int(11) NOT NULL
DEFAULT '50',
`outline` tinyint(1) NOT NULL DEFAULT '1',
`titlecolor`
varchar(6) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT
'FFFFFF',
`desccolor` varchar(6) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'BBBBBB',
`linkcolor` varchar(6)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '7D9BBF',
`hovercolor` varchar(6) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT 'FF0000',
`aboutcolor` varchar(6) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '7D9BBF',
`abouttext` varchar(30)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`abouturl` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT '',
`canclose` tinyint(1) NOT NULL DEFAULT '1',
`defstart`
int(11) NOT NULL DEFAULT '5',
`defruntime` int(11) NOT NULL DEFAULT
'10',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `nuevo__midroll_settings`
--
LOCK TABLES
`nuevo__midroll_settings` WRITE;
/*!40000 ALTER TABLE
`nuevo__midroll_settings` DISABLE KEYS */;
INSERT INTO
`nuevo__midroll_settings` VALUES
(1,'000000',50,1,'FFFFFF','BBBBBB','7D9BBF','FF0000','7D9BBF','','',1,5,10);
/*!40000
ALTER TABLE `nuevo__midroll_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `nuevo__overlay`
--
DROP TABLE IF EXISTS
`nuevo__overlay`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `nuevo__overlay` (
`ID` int(11) NOT NULL
AUTO_INCREMENT,
`title` varchar(40) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`media` varchar(200) CHARACTER SET
utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`url` varchar(200)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`target`
varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT
'_blank',
`start` int(11) NOT NULL DEFAULT '10',
`pause` int(11) NOT
NULL DEFAULT '0',
`delay` int(11) NOT NULL DEFAULT '3',
`runtime`
int(11) NOT NULL DEFAULT '5',
`active` tinyint(1) NOT NULL DEFAULT '0',
`addtime` varchar(40) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT '',
`expire` varchar(40) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`owner` varchar(50) CHARACTER SET
utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`email` varchar(200)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`channel`
int(11) NOT NULL DEFAULT '0',
`views` int(11) NOT NULL DEFAULT '0',
`hits` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `nuevo__overlay`
--
LOCK TABLES
`nuevo__overlay` WRITE;
/*!40000 ALTER TABLE `nuevo__overlay` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `nuevo__overlay` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `nuevo__player`
--
DROP TABLE IF
EXISTS `nuevo__player`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `nuevo__player` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`regkey` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`language` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT 'en_US',
`skin` varchar(20) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`playback_method` varchar(20)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'flash',
`autostart` tinyint(1) NOT NULL DEFAULT '1',
`stretching` varchar(10)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'aspect',
`volume` int(11) NOT NULL DEFAULT '60',
`usetooltips` tinyint(1) NOT NULL
DEFAULT '1',
`playbar` varchar(10) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'over',
`related_show` tinyint(1) NOT
NULL DEFAULT '1',
`embed_show` tinyint(1) NOT NULL DEFAULT '1',
`email_show` tinyint(1) NOT NULL DEFAULT '1',
`share_show` tinyint(1) NOT
NULL DEFAULT '1',
`screen_show` tinyint(1) NOT NULL DEFAULT '1',
`viral_menu` tinyint(1) NOT NULL DEFAULT '1',
`viral_share` tinyint(1)
NOT NULL DEFAULT '1',
`viral_slomo` tinyint(1) NOT NULL DEFAULT '1',
`viral_lights` tinyint(1) NOT NULL DEFAULT '0',
`viral_offset` int(11)
NOT NULL DEFAULT '10',
`viral_align` varchar(10) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL DEFAULT 'right',
`show_logo` tinyint(1)
NOT NULL DEFAULT '1',
`barlogo` varchar(255) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`logo` varchar(255) CHARACTER SET
utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`logourl` varchar(255)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`logoalign` varchar(2) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT 'RT',
`logooffsetx` int(11) NOT NULL DEFAULT '10',
`logooffsety` int(11) NOT NULL DEFAULT '10',
`menuitem` tinyint(1) NOT
NULL DEFAULT '1',
`menutext` varchar(30) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`menulink` varchar(255) CHARACTER
SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`replay_button`
tinyint(1) NOT NULL DEFAULT '1',
`zoom_button` tinyint(1) NOT NULL
DEFAULT '1',
`fullscreen_button` tinyint(1) NOT NULL DEFAULT '1',
`volume_button` tinyint(1) NOT NULL DEFAULT '1',
`size_button` tinyint(1)
NOT NULL DEFAULT '1',
`onclick` varchar(5) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'play',
`linktarget` varchar(10)
CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '_self',
`statscript` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT
NULL DEFAULT '',
`rss_url` varchar(255) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT '',
`mailsubject` varchar(255) CHARACTER
SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Cool video!',
`mailbody` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT 'Check this video:',
`player_width` int(11) NOT NULL DEFAULT
'650',
`player_width_method` varchar(5) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'px',
`player_height` int(11) NOT NULL
DEFAULT '370',
`player_height_method` varchar(5) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL DEFAULT 'px',
`playback_type`
varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT
'flash',
`related` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci
NOT NULL DEFAULT '',
`slidebackcolor` varchar(6) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL DEFAULT 'e5e5e5',
`slidetextcolor`
varchar(6) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT
'000000',
`slideversion` tinyint(1) NOT NULL DEFAULT '1',
`plugin_preroll` tinyint(1) NOT NULL DEFAULT '0',
`plugin_midroll`
tinyint(1) NOT NULL DEFAULT '0',
`plugin_overlay` tinyint(1) NOT NULL
DEFAULT '0',
`plugin_ticker` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY
KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `nuevo__player`
--
LOCK TABLES `nuevo__player` WRITE;
/*!40000 ALTER
TABLE `nuevo__player` DISABLE KEYS */;
INSERT INTO `nuevo__player` VALUES
(1,'OG1icEJYWnd4V1oyVkdaMEJYYXlOMmM','en_US','','flash',0,'aspect',60,1,'over',1,1,1,1,1,1,1,1,0,10,'right',1,'','','','RT',10,10,1,'localhost/asp20','http://localhost/asp20',1,1,1,1,1,'play','_self','http://localhost/asp20/moduleas/video/player/nuevo/nuevo/stat.php','','Cool
video!','Check this
video:',100,'%',500,'px','flash','','e5e5e5','000000',1,0,0,0,0),(2,'OG1icEJYWnd4V1oyVkdaMEJYYXlOMmM','en_US','','flash',0,'aspect',60,1,'over',1,1,1,1,1,1,1,1,0,10,'right',1,'','','http://localhost/asp20','RT',10,10,1,'localhost/asp20','http://localhost/asp20',1,1,1,1,1,'link','_self','http://localhost/asp20/moduleas/video/player/nuevo/nuevo/stat.php','','Cool
video!','Check this
video:',540,'px',380,'px','flash','','e5e5e5','000000',1,0,0,0,0),(3,'OG1icEJYWnd4V1oyVkdaMEJYYXlOMmM','en_US','','flash',0,'aspect',60,1,'over',1,1,1,1,1,1,1,1,0,10,'right',1,'','','http://localhost/asp20','RT',10,10,1,'localhost/asp20','http://localhost/asp20',1,1,1,1,1,'play','_self','http://localhost/asp20/moduleas/video/player/nuevo/nuevo/stat.php','','Cool
video!','Check this
video:',650,'px',370,'px','flash','','e5e5e5','000000',1,0,0,0,0),(4,'OG1icEJYWnd4V1oyVkdaMEJYYXlOMmM','en_US','','flash',0,'aspect',60,1,'over',1,1,1,1,1,1,1,1,0,10,'right',1,'','','http://localhost/asp20','RT',10,10,1,'localhost/asp20','http://localhost/asp20',1,1,1,1,1,'play','_self','http://localhost/asp20/moduleas/video/player/nuevo/nuevo/stat.php','','Cool
video!','Check this
video:',650,'px',370,'px','flash','','e5e5e5','000000',1,0,0,0,0);
/*!40000
ALTER TABLE `nuevo__player` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table
structure for table `nuevo__preroll`
--
DROP TABLE IF EXISTS
`nuevo__preroll`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `nuevo__preroll` (
`ID` int(11) NOT NULL
AUTO_INCREMENT,
`type` varchar(10) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'preroll',
`channel` int(11) NOT NULL
DEFAULT '0',
`video_id` int(11) NOT NULL DEFAULT '0',
`url`
varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`html5`
varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`link`
varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`target` varchar(6) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
DEFAULT '_self',
`runtime` int(11) NOT NULL DEFAULT '10',
`skip`
int(11) NOT NULL DEFAULT '0',
`owner` varchar(100) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`added` varchar(40) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`expire` varchar(40) CHARACTER SET utf8
COLLATE utf8_unicode_ci NOT NULL,
`active` int(11) NOT NULL,
`hits`
int(11) NOT NULL DEFAULT '0',
`views` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`nuevo__preroll`
--
LOCK TABLES `nuevo__preroll` WRITE;
/*!40000 ALTER
TABLE `nuevo__preroll` DISABLE KEYS */;
/*!40000 ALTER TABLE
`nuevo__preroll` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `nuevo__ticker`
--
DROP TABLE IF EXISTS `nuevo__ticker`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `nuevo__ticker` (
`ID`
int(11) NOT NULL AUTO_INCREMENT,
`content` varchar(255) CHARACTER SET
utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`start` int(11) NOT
NULL DEFAULT '3',
`runtime` int(11) NOT NULL DEFAULT '10',
`url`
varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT
'',
`target` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT
NULL DEFAULT '_blank',
`position` varchar(10) CHARACTER SET utf8 COLLATE
utf8_unicode_ci NOT NULL DEFAULT 'top',
`addtime` varchar(40) CHARACTER
SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`active`
tinyint(11) NOT NULL DEFAULT '0',
`opacity` int(11) NOT NULL DEFAULT
'50',
`scrollspeed` int(11) NOT NULL DEFAULT '5',
PRIMARY KEY (`ID`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `nuevo__ticker`
--
LOCK
TABLES `nuevo__ticker` WRITE;
/*!40000 ALTER TABLE `nuevo__ticker` DISABLE
KEYS */;
/*!40000 ALTER TABLE `nuevo__ticker` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo`
--
DROP TABLE IF EXISTS
`photo`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photo` (
`photo_id` int(11) NOT NULL AUTO_INCREMENT,
`server` int(11) unsigned NOT
NULL DEFAULT '0',
`album_id` int(11) NOT NULL DEFAULT '0',
`caption`
varchar(255) NOT NULL DEFAULT '',
`description` text NOT NULL,
`ext`
varchar(4) NOT NULL DEFAULT '',
`total_views` bigint(20) unsigned NOT
NULL DEFAULT '0',
`total_comments` int(11) unsigned NOT NULL DEFAULT
'0',
`total_favorites` int(11) unsigned NOT NULL DEFAULT '0',
`likes`
int(11) unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT
'0',
`rated_by` int(11) NOT NULL DEFAULT '0',
`status` enum('0','1')
NOT NULL DEFAULT '1',
`allow_comment` enum('0','1') NOT NULL DEFAULT
'1',
`allow_rating` enum('0','1') NOT NULL DEFAULT '1',
`add_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`add_time` int(11)
unsigned NOT NULL DEFAULT '0',
`flagged` enum('0','1') NOT NULL DEFAULT
'0',
`size` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`photo_id`),
KEY `album_id` (`album_id`),
KEY `status` (`status`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `photo`
--
LOCK TABLES
`photo` WRITE;
/*!40000 ALTER TABLE `photo` DISABLE KEYS */;
/*!40000 ALTER
TABLE `photo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `photo_album_views`
--
DROP TABLE IF EXISTS
`photo_album_views`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_album_views` (
`album_id` int(11) NOT NULL
DEFAULT '0',
`user_id` int(11) NOT NULL DEFAULT '0',
`ip` int(10)
unsigned NOT NULL DEFAULT '0',
`view_time` int(11) unsigned NOT NULL
DEFAULT '0',
KEY `album_id` (`album_id`),
KEY `user_id` (`user_id`),
KEY `ip` (`ip`),
KEY `view_date` (`view_time`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `photo_album_views`
--
LOCK TABLES
`photo_album_views` WRITE;
/*!40000 ALTER TABLE `photo_album_views` DISABLE
KEYS */;
/*!40000 ALTER TABLE `photo_album_views` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_albums`
--
DROP TABLE IF
EXISTS `photo_albums`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_albums` (
`album_id` int(11) NOT NULL
AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`slug`
varchar(100) NOT NULL DEFAULT '',
`title` varchar(100) NOT NULL DEFAULT
'',
`description` text NOT NULL,
`total_photos` int(3) unsigned NOT
NULL DEFAULT '0',
`total_views` bigint(20) unsigned NOT NULL DEFAULT
'0',
`total_comments` int(11) unsigned NOT NULL DEFAULT '0',
`total_favorites` int(5) unsigned NOT NULL DEFAULT '0',
`likes` int(11)
unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
`add_date` datetime NOT
NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('0','1','2','3') NOT
NULL DEFAULT '0',
`flagged` enum('0','1') NOT NULL DEFAULT '0',
`adv`
int(11) NOT NULL DEFAULT '0',
`locked` enum('0','1') NOT NULL DEFAULT
'0',
`cover` int(11) NOT NULL DEFAULT '0',
`view_date` datetime NOT
NULL DEFAULT '0000-00-00 00:00:00',
`type` enum('public','private') NOT
NULL DEFAULT 'public',
`add_time` int(10) unsigned NOT NULL DEFAULT '0',
`mobile` enum('0','1') NOT NULL DEFAULT '0',
`password` varchar(64) NOT
NULL DEFAULT '',
PRIMARY KEY (`album_id`),
KEY `user_id` (`user_id`),
KEY `slug` (`slug`),
KEY `total_photos` (`total_photos`),
KEY
`total_views` (`total_views`),
KEY `total_favorites`
(`total_favorites`),
KEY `total_comments` (`total_comments`),
KEY
`rating` (`rating`,`rated_by`),
KEY `status` (`status`),
KEY `mobile`
(`mobile`),
FULLTEXT KEY `title` (`title`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `photo_albums`
--
LOCK
TABLES `photo_albums` WRITE;
/*!40000 ALTER TABLE `photo_albums` DISABLE
KEYS */;
/*!40000 ALTER TABLE `photo_albums` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_categories`
--
DROP TABLE
IF EXISTS `photo_categories`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_categories` (
`cat_id` int(11) NOT NULL
AUTO_INCREMENT,
`slug` varchar(100) NOT NULL DEFAULT '',
`name`
varchar(100) NOT NULL DEFAULT '',
`description` text NOT NULL,
`total_albums` int(11) unsigned NOT NULL DEFAULT '0',
`adv` int(11) NOT
NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`auto_term`
varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`cat_id`),
UNIQUE KEY
`slug` (`slug`),
KEY `status` (`status`),
KEY `name` (`name`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`photo_categories`
--
LOCK TABLES `photo_categories` WRITE;
/*!40000 ALTER
TABLE `photo_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE
`photo_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `photo_category`
--
DROP TABLE IF EXISTS
`photo_category`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_category` (
`album_id` int(11) NOT NULL DEFAULT
'0',
`cat_id` int(11) NOT NULL DEFAULT '0',
KEY `cat_id` (`cat_id`),
KEY `album_id` (`album_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `photo_category`
--
LOCK TABLES `photo_category` WRITE;
/*!40000
ALTER TABLE `photo_category` DISABLE KEYS */;
/*!40000 ALTER TABLE
`photo_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `photo_comments`
--
DROP TABLE IF EXISTS `photo_comments`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `photo_comments` (
`comment_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`parent_id`
int(11) unsigned NOT NULL DEFAULT '0',
`photo_id` int(11) unsigned NOT
NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`ip`
int(10) NOT NULL DEFAULT '0',
`comment` text NOT NULL,
`add_time`
int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL
DEFAULT '1',
`spam` int(11) unsigned NOT NULL DEFAULT '0',
`nickname`
varchar(100) NOT NULL DEFAULT '',
`likes` int(11) unsigned NOT NULL
DEFAULT '0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY
KEY (`comment_id`),
KEY `parent_id` (`parent_id`),
KEY `photo_id`
(`photo_id`),
KEY `user_id` (`user_id`),
KEY `ip` (`ip`),
KEY
`status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`photo_comments`
--
LOCK TABLES `photo_comments` WRITE;
/*!40000 ALTER
TABLE `photo_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE
`photo_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `photo_comments_votes`
--
DROP TABLE IF EXISTS
`photo_comments_votes`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_comments_votes` (
`comment_id` int(11) unsigned
NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`vote_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`comment_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`photo_comments_votes`
--
LOCK TABLES `photo_comments_votes`
WRITE;
/*!40000 ALTER TABLE `photo_comments_votes` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_comments_votes` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_favorites`
--
DROP TABLE
IF EXISTS `photo_favorites`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_favorites` (
`photo_id` int(11) NOT NULL DEFAULT
'0',
`user_id` int(11) NOT NULL DEFAULT '0',
KEY `photo_id`
(`photo_id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `photo_favorites`
--
LOCK TABLES
`photo_favorites` WRITE;
/*!40000 ALTER TABLE `photo_favorites` DISABLE
KEYS */;
/*!40000 ALTER TABLE `photo_favorites` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_flags`
--
DROP TABLE IF
EXISTS `photo_flags`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_flags` (
`flag_id` int(11) NOT NULL
AUTO_INCREMENT,
`photo_id` int(11) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT
'0',
`reason` varchar(20) NOT NULL DEFAULT '',
`message` text NOT
NULL,
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`flag_id`),
KEY `photo_id` (`photo_id`),
KEY `user_id` (`user_id`),
KEY `ip`
(`ip`),
KEY `reason` (`reason`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `photo_flags`
--
LOCK TABLES
`photo_flags` WRITE;
/*!40000 ALTER TABLE `photo_flags` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_flags` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_rating`
--
DROP TABLE IF
EXISTS `photo_rating`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_rating` (
`rating_id` bigint(10) NOT NULL
AUTO_INCREMENT,
`photo_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_ip` int(11)
unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`rating_id`),
KEY `photo_id` (`photo_id`),
KEY `voter_id`
(`voter_id`),
KEY `voter_ip` (`voter_ip`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `photo_rating`
--
LOCK TABLES
`photo_rating` WRITE;
/*!40000 ALTER TABLE `photo_rating` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_rating` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_search`
--
DROP TABLE IF
EXISTS `photo_search`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_search` (
`keyword` varchar(30) NOT NULL DEFAULT
'',
`hits` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`keyword`,`hits`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`photo_search`
--
LOCK TABLES `photo_search` WRITE;
/*!40000 ALTER TABLE
`photo_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `photo_search` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`photo_servers`
--
DROP TABLE IF EXISTS `photo_servers`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `photo_servers` (
`server_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`server_name`
varchar(100) NOT NULL DEFAULT '',
`ftp_host` varchar(255) NOT NULL
DEFAULT '',
`ftp_port` tinyint(5) unsigned NOT NULL DEFAULT '21',
`ftp_username` varchar(100) NOT NULL DEFAULT '',
`ftp_password`
varchar(100) NOT NULL DEFAULT '',
`ftp_root` varchar(100) NOT NULL
DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`total_photos`
int(11) unsigned NOT NULL DEFAULT '0',
`last_used` int(11) unsigned NOT
NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`server_id`,`status`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `photo_servers`
--
LOCK TABLES
`photo_servers` WRITE;
/*!40000 ALTER TABLE `photo_servers` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_servers` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `photo_tags`
--
DROP TABLE IF
EXISTS `photo_tags`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `photo_tags` (
`tag_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`album_id` int(11) NOT NULL DEFAULT '0',
`name`
varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`tag_id`),
KEY
`album_id` (`album_id`),
KEY `name` (`name`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `photo_tags`
--
LOCK
TABLES `photo_tags` WRITE;
/*!40000 ALTER TABLE `photo_tags` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `photo_views`
--
DROP TABLE IF EXISTS
`photo_views`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `photo_views`
(
`photo_id` int(11) NOT NULL DEFAULT '0',
`user_id` int(11) NOT NULL
DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT '0',
`view_time`
int(11) unsigned NOT NULL DEFAULT '0',
KEY `photo_id` (`photo_id`),
KEY
`user_id` (`user_id`),
KEY `ip` (`ip`),
KEY `view_date` (`view_time`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `photo_views`
--
LOCK
TABLES `photo_views` WRITE;
/*!40000 ALTER TABLE `photo_views` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `photo_views` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `player`
--
DROP TABLE IF EXISTS
`player`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `player` (
`player_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL
DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`type`
tinyint(1) NOT NULL DEFAULT '0',
`config` text NOT NULL,
`config_cache`
text NOT NULL,
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY
(`player_id`),
UNIQUE KEY `name` (`name`),
KEY `status` (`status`)
)
ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`player`
--
LOCK TABLES `player` WRITE;
/*!40000 ALTER TABLE `player`
DISABLE KEYS */;
INSERT INTO `player` VALUES (1,'flv','Flash Player
Configuration for FLV
Files',0,'a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','1'),(2,'hd','Flash
Player Configuration
MP4',0,'a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','1'),(5,'flv_embed','Embed
Configuration File for FLV
Files',0,'a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','1'),(6,'hd_embed','Embed
Configuration File for MP4
Files',0,'a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','a:2:{s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','1'),(7,'videojs','Video
JS
Player',1,'a:3:{s:8:\"autoplay\";i:1;s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','a:3:{s:8:\"autoplay\";i:1;s:3:\"url\";s:62:\"http://local.scriptdevel.com/templates/defboot/images/logo.png\";s:8:\"position\";i:3;}','1'),(8,'flowplayer5','Flowplayer
HTML5',1,'','','1');
/*!40000 ALTER TABLE `player` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `playlist`
--
DROP TABLE IF
EXISTS `playlist`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `playlist` (
`playlist_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`thumb_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT
NULL DEFAULT '',
`type` enum('public','private') NOT NULL DEFAULT
'public',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
`slug`
varchar(100) NOT NULL DEFAULT '',
`total_videos` int(3) unsigned NOT NULL
DEFAULT '0',
`duration` float NOT NULL DEFAULT '0',
`total_views`
int(11) unsigned NOT NULL DEFAULT '0',
`likes` int(11) unsigned NOT NULL
DEFAULT '0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
`total_favorites` int(11) unsigned NOT NULL DEFAULT '0',
`total_comments`
int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`playlist_id`),
KEY
`user_id` (`user_id`),
KEY `add_time` (`add_time`),
KEY `likes`
(`likes`),
KEY `total_views` (`total_views`),
KEY `total_favorites`
(`total_favorites`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`playlist`
--
LOCK TABLES `playlist` WRITE;
/*!40000 ALTER TABLE
`playlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `playlist` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`playlist_comments`
--
DROP TABLE IF EXISTS `playlist_comments`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `playlist_comments` (
`comment_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`parent_id`
int(11) unsigned NOT NULL DEFAULT '0',
`playlist_id` int(11) unsigned NOT
NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`nickname` varchar(100) NOT NULL DEFAULT '',
`ip` int(11) unsigned NOT
NULL DEFAULT '0',
`comment` text NOT NULL,
`likes` int(11) unsigned NOT
NULL DEFAULT '0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
`spam` int(11) unsigned
NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`comment_id`),
KEY `parent_id` (`parent_id`),
KEY
`playlist_id` (`playlist_id`),
KEY `user_id` (`user_id`),
KEY `status`
(`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`playlist_comments`
--
LOCK TABLES `playlist_comments` WRITE;
/*!40000
ALTER TABLE `playlist_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE
`playlist_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `playlist_comments_votes`
--
DROP TABLE IF EXISTS
`playlist_comments_votes`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `playlist_comments_votes` (
`comment_id` int(11)
unsigned NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL
DEFAULT '0',
`vote_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY
KEY (`comment_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `playlist_comments_votes`
--
LOCK TABLES `playlist_comments_votes`
WRITE;
/*!40000 ALTER TABLE `playlist_comments_votes` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `playlist_comments_votes` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `playlist_favorites`
--
DROP
TABLE IF EXISTS `playlist_favorites`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `playlist_favorites` (
`playlist_id` int(11) unsigned
NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`playlist_id`,`user_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `playlist_favorites`
--
LOCK TABLES
`playlist_favorites` WRITE;
/*!40000 ALTER TABLE `playlist_favorites`
DISABLE KEYS */;
/*!40000 ALTER TABLE `playlist_favorites` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`playlist_rating`
--
DROP TABLE IF EXISTS `playlist_rating`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `playlist_rating` (
`rating_id` bigint(10) NOT NULL AUTO_INCREMENT,
`playlist_id` int(11)
unsigned NOT NULL DEFAULT '0',
`voter_id` int(11) unsigned NOT NULL
DEFAULT '0',
`voter_ip` int(11) unsigned NOT NULL DEFAULT '0',
`rating`
float NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT
'0',
PRIMARY KEY (`rating_id`),
KEY `playlist_id` (`playlist_id`),
KEY `voter_id` (`playlist_id`,`voter_id`),
KEY `voter_ip`
(`playlist_id`,`voter_ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `playlist_rating`
--
LOCK TABLES `playlist_rating` WRITE;
/*!40000
ALTER TABLE `playlist_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE
`playlist_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `playlist_videos`
--
DROP TABLE IF EXISTS
`playlist_videos`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `playlist_videos` (
`playlist_id` int(11) unsigned NOT
NULL DEFAULT '0',
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
KEY `playlist_id`
(`playlist_id`),
KEY `video_id` (`video_id`),
KEY `add_time`
(`add_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`playlist_videos`
--
LOCK TABLES `playlist_videos` WRITE;
/*!40000 ALTER
TABLE `playlist_videos` DISABLE KEYS */;
/*!40000 ALTER TABLE
`playlist_videos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `plugin`
--
DROP TABLE IF EXISTS `plugin`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `plugin` (
`plugin_id`
int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT
'',
`description` text NOT NULL,
`version` varchar(10) NOT NULL DEFAULT
'',
`provider` varchar(255) NOT NULL DEFAULT '',
`config` text NOT
NULL,
`config_cache` text NOT NULL,
`add_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`update_date` datetime NOT NULL DEFAULT
'0000-00-00 00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`plugin_id`),
UNIQUE KEY `name` (`name`),
KEY `status`
(`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`plugin`
--
LOCK TABLES `plugin` WRITE;
/*!40000 ALTER TABLE `plugin`
DISABLE KEYS */;
/*!40000 ALTER TABLE `plugin` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `server`
--
DROP TABLE IF EXISTS
`server`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `server` (
`server_id` int(11) NOT NULL AUTO_INCREMENT,
`server_name` varchar(255)
NOT NULL DEFAULT '',
`ftp_host` varchar(255) NOT NULL DEFAULT '',
`ftp_port` int(5) unsigned NOT NULL DEFAULT '21',
`ftp_username`
varchar(32) NOT NULL DEFAULT '',
`ftp_password` varchar(32) NOT NULL
DEFAULT '',
`ftp_root` varchar(255) NOT NULL DEFAULT '',
`streaming_method` enum('progressive','pseudostreaming','rtmp') NOT NULL
DEFAULT 'progressive',
`url` varchar(255) NOT NULL DEFAULT '',
`lighttpd_url` varchar(255) NOT NULL DEFAULT '',
`lighttpd_secdownload`
enum('0','1') NOT NULL DEFAULT '0',
`lighttpd_prefix` varchar(32) NOT
NULL DEFAULT '',
`lighttpd_key` varchar(100) NOT NULL DEFAULT '',
`rtmp_stream` varchar(255) NOT NULL DEFAULT '',
`total_videos` int(11)
unsigned NOT NULL DEFAULT '0',
`last_used` datetime NOT NULL DEFAULT
'0000-00-00 00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
`streaming_server` enum('lighttpd','nginx','apache') NOT NULL DEFAULT
'lighttpd',
PRIMARY KEY (`server_id`),
KEY `last_used` (`last_used`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `server`
--
LOCK TABLES
`server` WRITE;
/*!40000 ALTER TABLE `server` DISABLE KEYS */;
/*!40000
ALTER TABLE `server` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `session`
--
DROP TABLE IF EXISTS `session`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `session` (
`session_id`
varchar(64) NOT NULL DEFAULT '',
`data` text NOT NULL,
`expire` int(11)
NOT NULL DEFAULT '0',
PRIMARY KEY (`session_id`),
KEY `expire`
(`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`session`
--
LOCK TABLES `session` WRITE;
/*!40000 ALTER TABLE `session`
DISABLE KEYS */;
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `spam`
--
DROP TABLE IF EXISTS
`spam`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `spam` (
`spam_id` int(11) NOT NULL AUTO_INCREMENT,
`comment_id` int(11) unsigned
NOT NULL DEFAULT '0',
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`spam_date` datetime
NOT NULL DEFAULT '0000-00-00 00:00:00',
`type`
enum('video','photo','model','user') NOT NULL DEFAULT 'video',
PRIMARY
KEY (`spam_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`spam`
--
LOCK TABLES `spam` WRITE;
/*!40000 ALTER TABLE `spam` DISABLE
KEYS */;
/*!40000 ALTER TABLE `spam` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `static`
--
DROP TABLE IF EXISTS
`static`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static` (
`static_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL
DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '',
`title`
varchar(255) NOT NULL DEFAULT '',
`content` text NOT NULL,
`meta_title`
varchar(255) NOT NULL DEFAULT '',
`meta_desc` varchar(255) NOT NULL
DEFAULT '',
`meta_keys` varchar(255) NOT NULL DEFAULT '',
`hits`
bigint(11) NOT NULL DEFAULT '0',
`edited` enum('0','1') NOT NULL DEFAULT
'0',
`edit_user_id` int(11) NOT NULL DEFAULT '0',
`edit_date` datetime
NOT NULL DEFAULT '0000-00-00 00:00:00',
`add_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`status` enum('0','1') NOT NULL DEFAULT
'1',
PRIMARY KEY (`static_id`),
KEY `name` (`name`),
KEY `add_date`
(`add_date`),
KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `static`
--
LOCK TABLES `static`
WRITE;
/*!40000 ALTER TABLE `static` DISABLE KEYS */;
INSERT INTO `static`
VALUES (3,4,'terms','Terms of Service','<p>\r\n Static page content
goes here!</p>','Terms of Service','Terms of Service','terms,
service',0,'1',4,'2010-12-06 07:42:19','2010-09-11
11:21:04','1'),(4,4,'privacy','Privacy Policy','<p>\r\n Static page
content goes here!</p>','Privacy Policy','Privacy Policy','privacy,
policy',0,'0',0,'0000-00-00 00:00:00','2010-12-06
07:42:45','1'),(5,4,'dmca','DMCA','<p>\r\n Static page content goes
here!</p>','DMCA','DMCA','DMCA',0,'0',0,'0000-00-00
00:00:00','2010-12-06
07:43:20','1'),(6,4,'2257','2257','<p>\r\n Static page content goes
here!</p>','2257','2257','2257',0,'0',0,'0000-00-00
00:00:00','2010-12-06 07:43:36','1'),(7,4,'faq','Frequently Asked Questions
(FAQ)','<p>\r\n Static page content goes here!</p>','Frequently
asked questions','Frequently asked questions','faq',0,'0',0,'0000-00-00
00:00:00','2010-12-06
07:44:19','1'),(8,1,'dmca-mobile','DMCA','<p>\r\n abcdef</p>','DMCA
Mobile Title','DMCA Mobile Meta Description','DMCA Mobile Meta
Keysowrds',0,'0',0,'0000-00-00 00:00:00','2011-01-21
12:34:56','1'),(9,1,'terms-mobile','Terms of Service','<p>\r\n Terms
of Services Mobile static content here!</p>','Terms and Conditions
Mobile Title','Terms and Conditions Mobile Meta Description Here','terms,
and, conditions, mobile, meta, keywords, here',0,'0',0,'0000-00-00
00:00:00','2011-01-21 02:14:58','1'),(10,1,'privacy-mobile','Privacy
Policy','<p>\r\n Privacy Policy Mobile static content
here!</p>','Privacy Policy Mobile Title','Privacy Policy Mobile Meta
Description Here','privacy, policy, mobile, meta, keywords,
here',0,'0',0,'0000-00-00 00:00:00','2011-01-21
02:15:37','1'),(11,1,'2257-mobile','2257','<p>\r\n 2257 Mobile static
content here!</p>','2257 Mobile Title','2257 Mobile Meta Description
Here','2257, mobile, meta, keywords, here',0,'1',1,'2011-01-21
02:17:37','2011-01-21
02:16:05','1'),(12,1,'help-mobile','Help','<p>\r\n Help Mobile static
content here!</p>','Help Mobile Title','Help Mobile Meta Description
Here','help, mobile, meta, keywords, here',0,'0',0,'0000-00-00
00:00:00','2011-01-21
02:17:10','1'),(14,1,'advertise','Advertise','<p>static content goes
here</p>','Advertise','Advertise','advertise',0,'0',0,'0000-00-00
00:00:00','2015-03-20
03:01:37','1'),(15,1,'advertise-mobile','Advertise','<p>static
content goes
here</p>','Advertise','Advertise','advertise',0,'0',0,'0000-00-00
00:00:00','2015-03-20
03:01:44','1'),(16,1,'webmasters','Webmasters','<p>static content
goes
here</p>','Webmasters','Webmasters','webmasters',0,'0',0,'0000-00-00
00:00:00','2015-03-20
03:02:13','1'),(17,1,'webmasters-mobile','Webmasters','<p>static
content goes
here</p>','Webmasters','Webmasters','webmasters',0,'0',0,'0000-00-00
00:00:00','2015-03-20 03:02:16','1'),(18,1,'content-partners','Content
Partners','<p>static content goes here</p>','Content
Partners','Content Partners','content-partners',0,'0',0,'0000-00-00
00:00:00','2015-03-20
03:02:48','1'),(19,1,'content-partners-mobile','Content
Partners','<p>static content goes here</p>','Content
Partners','Content Partners','content-partners',0,'0',0,'0000-00-00
00:00:00','2015-03-20 03:02:51','1');
/*!40000 ALTER TABLE `static` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`synonyms`
--
DROP TABLE IF EXISTS `synonyms`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `synonyms` (
`word_id`
int(11) unsigned NOT NULL DEFAULT '0',
`synonym_id` int(11) unsigned NOT
NULL DEFAULT '0',
PRIMARY KEY (`word_id`,`synonym_id`),
KEY
`synonym_id` (`synonym_id`),
CONSTRAINT `synonyms_ibfk_1` FOREIGN KEY
(`word_id`) REFERENCES `words` (`word_id`) ON DELETE CASCADE,
CONSTRAINT
`synonyms_ibfk_2` FOREIGN KEY (`synonym_id`) REFERENCES `words` (`word_id`)
ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`synonyms`
--
LOCK TABLES `synonyms` WRITE;
/*!40000 ALTER TABLE
`synonyms` DISABLE KEYS */;
/*!40000 ALTER TABLE `synonyms` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table `template`
--
DROP
TABLE IF EXISTS `template`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `template` (
`tpl_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`description` text NOT NULL,
`version` varchar(10) NOT NULL DEFAULT '',
`provider` varchar(255) NOT
NULL DEFAULT '',
`type` enum('frontend','backend') NOT NULL DEFAULT
'frontend',
`config` text NOT NULL,
`config_cache` text NOT NULL,
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`update_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('0','1')
NOT NULL DEFAULT '1',
PRIMARY KEY (`tpl_id`),
KEY `name` (`name`),
KEY `type` (`type`),
KEY `status` (`status`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `template`
--
LOCK
TABLES `template` WRITE;
/*!40000 ALTER TABLE `template` DISABLE KEYS
*/;
INSERT INTO `template` VALUES (2,'default','Default Admin
Template','1.0.0','adultforge','backend','','','0000-00-00
00:00:00','0000-00-00 00:00:00','1'),(3,'default','Default Profile
Template','1.0.0','adultforge','','','','0000-00-00 00:00:00','0000-00-00
00:00:00','1'),(8,'default-black-orange','Default Frontend
Black/Orange','1.0.0','adultforge','','','','0000-00-00
00:00:00','0000-00-00 00:00:00','1'),(9,'default-black-green','Default
Frontend Black/Orange','1.0.0','adultforge','','','','0000-00-00
00:00:00','0000-00-00 00:00:00','1'),(11,'defboot','Default
Template','1.0.0','adultforge','frontend','a:21:{s:15:\"categories_left\";i:1;s:18:\"categories_popular\";i:1;s:16:\"channels_popular\";i:1;s:17:\"pornstars_popular\";i:1;s:12:\"tags_popular\";i:1;s:13:\"albums_recent\";i:1;s:14:\"albums_popular\";i:1;s:21:\"video_categories_left\";i:1;s:21:\"photo_categories_left\";i:1;s:15:\"javascript_code\";s:0:\"\";s:6:\"colors\";s:5:\"light\";s:8:\"logo_url\";s:0:\"\";s:5:\"links\";i:1;s:13:\"sharing_links\";i:1;s:12:\"sharing_code\";s:0:\"\";s:8:\"facebook\";s:34:\"http://www.facebook.com/adultforge\";s:7:\"twitter\";s:33:\"http://www.twitter.com/adultforge\";s:11:\"google_plus\";s:33:\"http://plus.google.com/adultforge\";s:7:\"thumblr\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:9:\"instagram\";s:0:\"\";}','a:21:{s:15:\"categories_left\";i:1;s:18:\"categories_popular\";i:1;s:16:\"channels_popular\";i:1;s:17:\"pornstars_popular\";i:1;s:12:\"tags_popular\";i:1;s:13:\"albums_recent\";i:1;s:14:\"albums_popular\";i:1;s:21:\"video_categories_left\";i:1;s:21:\"photo_categories_left\";i:1;s:15:\"javascript_code\";s:0:\"\";s:6:\"colors\";s:5:\"light\";s:8:\"logo_url\";s:0:\"\";s:5:\"links\";i:1;s:13:\"sharing_links\";i:1;s:12:\"sharing_code\";s:0:\"\";s:8:\"facebook\";s:34:\"http://www.facebook.com/adultforge\";s:7:\"twitter\";s:33:\"http://www.twitter.com/adultforge\";s:11:\"google_plus\";s:33:\"http://plus.google.com/adultforge\";s:7:\"thumblr\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:9:\"instagram\";s:0:\"\";}','0000-00-00
00:00:00','0000-00-00 00:00:00','1');
/*!40000 ALTER TABLE `template`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user` (
`user_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`group_id` int(11) unsigned NOT NULL DEFAULT '0',
`username` varchar(16) NOT NULL DEFAULT '',
`password` varchar(60) NOT
NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`name`
varchar(255) NOT NULL DEFAULT '',
`avatar` varchar(4) NOT NULL DEFAULT
'',
`gender` enum('hidden','male','female') NOT NULL DEFAULT 'hidden',
`relation` enum('hidden','single','taken','open') NOT NULL DEFAULT
'hidden',
`interested` enum('hidden','boys','girls','boys+girls') NOT
NULL DEFAULT 'hidden',
`birth_date` date NOT NULL DEFAULT '0000-00-00',
`city` varchar(255) NOT NULL DEFAULT '',
`country` varchar(255) NOT NULL
DEFAULT '',
`zip` varchar(15) NOT NULL DEFAULT '',
`rating` float NOT
NULL DEFAULT '0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
`login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`login_ip`
int(10) unsigned NOT NULL DEFAULT '0',
`join_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`join_ip` int(10) unsigned NOT NULL
DEFAULT '0',
`popularity` int(11) NOT NULL DEFAULT '0',
`online`
int(10) unsigned NOT NULL DEFAULT '0',
`verified` enum('0','1') NOT NULL
DEFAULT '0',
`locked` enum('0','1') NOT NULL DEFAULT '0',
`reported`
enum('0','1') NOT NULL DEFAULT '0',
`status` enum('0','1','2') NOT NULL
DEFAULT '1',
PRIMARY KEY (`user_id`),
UNIQUE KEY `username`
(`username`),
UNIQUE KEY `email` (`email`),
KEY `group_id`
(`group_id`),
KEY `login_date` (`login_date`),
KEY `join_date`
(`join_date`),
KEY `gender` (`gender`),
KEY `relation` (`relation`),
KEY `interested` (`interested`),
KEY `rating` (`rating`),
KEY
`popularity` (`popularity`),
KEY `online` (`online`),
KEY `status`
(`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101
SET character_set_client = @saved_cs_client */;
--
-- Dumping data for
table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user`
DISABLE KEYS */;
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_activity`
--
DROP TABLE IF
EXISTS `user_activity`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_activity` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`total_videos` int(11) NOT NULL DEFAULT '0',
`total_video_views`
bigint(20) unsigned NOT NULL DEFAULT '0',
`total_viewed_videos`
bigint(20) unsigned NOT NULL DEFAULT '0',
`total_video_comments`
bigint(20) NOT NULL DEFAULT '0',
`total_profile_views` bigint(20)
unsigned NOT NULL DEFAULT '0',
`total_profile_comments` int(11) unsigned
NOT NULL DEFAULT '0',
`total_topics` int(11) unsigned NOT NULL DEFAULT
'0',
`total_posts` int(11) unsigned NOT NULL DEFAULT '0',
`total_friends` int(11) NOT NULL DEFAULT '0',
`total_subscribers` int(11)
NOT NULL DEFAULT '0',
`total_subscriptions` int(11) NOT NULL DEFAULT
'0',
`total_albums` int(11) NOT NULL DEFAULT '0',
`total_photos`
int(11) NOT NULL DEFAULT '0',
`total_photo_comments` int(11) unsigned NOT
NULL DEFAULT '0',
`total_playlists` int(11) NOT NULL DEFAULT '0',
`total_playlist_comments` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY
KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_activity`
--
LOCK TABLES `user_activity` WRITE;
/*!40000 ALTER TABLE
`user_activity` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_activity`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`user_blocks`
--
DROP TABLE IF EXISTS `user_blocks`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `user_blocks` (
`user_id`
int(11) unsigned NOT NULL DEFAULT '0',
`blocked_id` int(11) unsigned NOT
NULL DEFAULT '0',
PRIMARY KEY (`user_id`,`blocked_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `user_blocks`
--
LOCK TABLES
`user_blocks` WRITE;
/*!40000 ALTER TABLE `user_blocks` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `user_blocks` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_comments`
--
DROP TABLE IF
EXISTS `user_comments`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_comments` (
`comment_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`poster_id` int(11)
unsigned NOT NULL DEFAULT '0',
`ip` int(10) NOT NULL DEFAULT '0',
`comment` text NOT NULL,
`add_time` int(11) unsigned NOT NULL DEFAULT
'0',
`status` enum('0','1') NOT NULL DEFAULT '1',
`spam` int(11)
unsigned NOT NULL DEFAULT '0',
`likes` int(11) unsigned NOT NULL DEFAULT
'0',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`comment_id`),
KEY `parent_id` (`parent_id`),
KEY `user_id`
(`user_id`),
KEY `poster_id` (`poster_id`),
KEY `ip` (`ip`),
KEY
`status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_comments`
--
LOCK TABLES `user_comments` WRITE;
/*!40000 ALTER TABLE
`user_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_comments`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`user_comments_votes`
--
DROP TABLE IF EXISTS
`user_comments_votes`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_comments_votes` (
`comment_id` int(11) unsigned
NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`vote_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`comment_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_comments_votes`
--
LOCK TABLES `user_comments_votes` WRITE;
/*!40000
ALTER TABLE `user_comments_votes` DISABLE KEYS */;
/*!40000 ALTER TABLE
`user_comments_votes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `user_friends`
--
DROP TABLE IF EXISTS `user_friends`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `user_friends` (
`request_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
`friend_id` int(11) unsigned NOT NULL
DEFAULT '0',
`message` text NOT NULL,
`add_date` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
`status`
enum('pending','approved','denied') NOT NULL DEFAULT 'pending',
PRIMARY
KEY (`request_id`),
KEY `user_id` (`user_id`),
KEY `friend_id`
(`friend_id`),
KEY `add_date` (`add_date`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `user_friends`
--
LOCK TABLES
`user_friends` WRITE;
/*!40000 ALTER TABLE `user_friends` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `user_friends` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_groups`
--
DROP TABLE IF
EXISTS `user_groups`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_groups` (
`group_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`status`
enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`group_id`),
KEY
`name` (`name`),
KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `user_groups`
--
LOCK TABLES
`user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS
*/;
INSERT INTO `user_groups` VALUES
(1,'Administrator','1'),(2,'Editor','1'),(3,'Moderator','1'),(4,'Premium','1'),(5,'Registered','1');
/*!40000
ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table
structure for table `user_limit`
--
DROP TABLE IF EXISTS
`user_limit`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_limit`
(
`user_id` int(11) NOT NULL DEFAULT '0',
`duration` bigint(20)
unsigned NOT NULL DEFAULT '0',
`duration_total` bigint(20) unsigned NOT
NULL DEFAULT '0',
`update_date` date NOT NULL DEFAULT '0000-00-00',
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_limit`
--
LOCK TABLES `user_limit` WRITE;
/*!40000 ALTER TABLE
`user_limit` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_limit` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`user_notifications`
--
DROP TABLE IF EXISTS
`user_notifications`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_notifications` (
`user_id` int(11) NOT NULL
DEFAULT '0',
`video_approve` enum('0','1') NOT NULL DEFAULT '1',
`video_comment` enum('0','1') NOT NULL DEFAULT '1',
`subscription`
enum('0','1') NOT NULL DEFAULT '1',
`friend_request` enum('0','1') NOT
NULL DEFAULT '1',
`friend_approve` enum('0','1') NOT NULL DEFAULT '1',
`new_message` enum('0','1') NOT NULL DEFAULT '1',
`profile_comment`
enum('0','1') NOT NULL DEFAULT '1',
`profile_rating` enum('0','1') NOT
NULL DEFAULT '1',
`video_rating` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_notifications`
--
LOCK TABLES `user_notifications` WRITE;
/*!40000
ALTER TABLE `user_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE
`user_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `user_preferences`
--
DROP TABLE IF EXISTS
`user_preferences`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_preferences` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`template` varchar(100) NOT NULL DEFAULT 'default',
`profile`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`profile_comments`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_videos`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_video_favorites`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_video_playlists`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_video_ratings`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_video_history`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_friends`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_subscriptions`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_subscribers`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_activity`
enum('no','all','friends') NOT NULL DEFAULT 'all',
`allow_comments`
enum('no','all','friends','approve') NOT NULL DEFAULT 'all',
`allow_friends` enum('auto','approve') NOT NULL DEFAULT 'approve',
`allow_message` enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_albums` enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_photo_favorites` enum('no','all','friends') NOT NULL DEFAULT 'all',
`show_photo_history` enum('no','all','friends') NOT NULL DEFAULT 'all',
UNIQUE KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `user_preferences`
--
LOCK TABLES
`user_preferences` WRITE;
/*!40000 ALTER TABLE `user_preferences` DISABLE
KEYS */;
/*!40000 ALTER TABLE `user_preferences` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_premium`
--
DROP TABLE IF
EXISTS `user_premium`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_premium` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`credit` float NOT NULL DEFAULT '0',
`start_date` date NOT NULL
DEFAULT '0000-00-00',
`end_date` date NOT NULL DEFAULT '0000-00-00',
`status` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `user_premium`
--
LOCK
TABLES `user_premium` WRITE;
/*!40000 ALTER TABLE `user_premium` DISABLE
KEYS */;
/*!40000 ALTER TABLE `user_premium` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_premium_ips`
--
DROP TABLE
IF EXISTS `user_premium_ips`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_premium_ips` (
`user_id` int(11) unsigned NOT NULL
DEFAULT '0',
`ip` int(11) unsigned NOT NULL DEFAULT '0',
KEY `user_id`
(`user_id`),
KEY `user_ip` (`user_id`,`ip`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `user_premium_ips`
--
LOCK TABLES
`user_premium_ips` WRITE;
/*!40000 ALTER TABLE `user_premium_ips` DISABLE
KEYS */;
/*!40000 ALTER TABLE `user_premium_ips` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_profile`
--
DROP TABLE IF
EXISTS `user_profile`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_profile` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`about` text NOT NULL,
`website` varchar(255) NOT NULL DEFAULT
'',
`hobbies` text NOT NULL,
`occupation` varchar(255) NOT NULL DEFAULT
'',
`school` varchar(255) NOT NULL DEFAULT '',
`company` varchar(255)
NOT NULL DEFAULT '',
`movies` text NOT NULL,
`music` text NOT NULL,
`books` text NOT NULL,
`turn_on` text NOT NULL,
`turn_off` text NOT
NULL,
`height` float NOT NULL DEFAULT '0',
`ethnicity` varchar(200) NOT
NULL DEFAULT '',
`body_type` varchar(200) NOT NULL DEFAULT '',
`here_for` varchar(50) NOT NULL DEFAULT '',
`religion` varchar(200) NOT
NULL DEFAULT '',
`children` tinyint(2) unsigned NOT NULL DEFAULT '0',
`smoking` enum('0','1') NOT NULL DEFAULT '0',
`vegetarian` enum('0','1')
NOT NULL DEFAULT '0',
`drinking` enum('0','1') NOT NULL DEFAULT '0',
`drugs` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `user_profile`
--
LOCK
TABLES `user_profile` WRITE;
/*!40000 ALTER TABLE `user_profile` DISABLE
KEYS */;
/*!40000 ALTER TABLE `user_profile` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `user_subscriptions`
--
DROP
TABLE IF EXISTS `user_subscriptions`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_subscriptions` (
`user_id` int(11) unsigned NOT
NULL DEFAULT '0',
`subscriber_id` int(11) unsigned NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY
`user_id` (`user_id`),
KEY `subscriber_id` (`subscriber_id`),
KEY
`add_date` (`add_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_subscriptions`
--
LOCK TABLES `user_subscriptions` WRITE;
/*!40000
ALTER TABLE `user_subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE
`user_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `user_verification`
--
DROP TABLE IF EXISTS
`user_verification`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `user_verification` (
`user_id` int(11) NOT NULL DEFAULT
'0',
`code` varchar(32) NOT NULL DEFAULT '',
`expire` datetime NOT NULL
DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`user_id`),
KEY `code`
(`code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`user_verification`
--
LOCK TABLES `user_verification` WRITE;
/*!40000
ALTER TABLE `user_verification` DISABLE KEYS */;
/*!40000 ALTER TABLE
`user_verification` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `video`
--
DROP TABLE IF EXISTS `video`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video` (
`video_id` int(11)
unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL
DEFAULT '0',
`channel_id` int(11) unsigned NOT NULL DEFAULT '0',
`title` varchar(100) NOT NULL DEFAULT '',
`description` text NOT NULL,
`rating` float NOT NULL DEFAULT '0',
`likes` int(11) unsigned NOT NULL
DEFAULT '0',
`rated_by` bigint(20) NOT NULL DEFAULT '0',
`duration`
float NOT NULL DEFAULT '0',
`thumb` tinyint(2) unsigned NOT NULL DEFAULT
'1',
`thumbs` tinyint(2) unsigned NOT NULL DEFAULT '20',
`embed_code`
text NOT NULL,
`allow_embed` enum('0','1') NOT NULL DEFAULT '1',
`allow_rating` enum('0','1') NOT NULL DEFAULT '1',
`allow_comment`
enum('0','1') NOT NULL DEFAULT '1',
`allow_download` enum('0','1') NOT
NULL DEFAULT '1',
`total_views` bigint(20) NOT NULL DEFAULT '0',
`total_comments` int(11) NOT NULL DEFAULT '0',
`total_downloads` int(11)
NOT NULL DEFAULT '0',
`total_favorites` int(11) NOT NULL DEFAULT '0',
`type` enum('public','private') NOT NULL DEFAULT 'public',
`ext`
enum('flv','mp4') NOT NULL DEFAULT 'flv',
`hd` tinyint(1) unsigned NOT
NULL DEFAULT '0',
`size` int(11) NOT NULL DEFAULT '0',
`add_date`
datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`view_date` datetime NOT
NULL DEFAULT '0000-00-00 00:00:00',
`server` int(11) NOT NULL DEFAULT
'0',
`sponsor` int(11) unsigned NOT NULL DEFAULT '0',
`flagged`
enum('0','1') NOT NULL DEFAULT '0',
`locked` enum('0','1') NOT NULL
DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`adv` int(11)
unsigned NOT NULL DEFAULT '0',
`url` varchar(255) NOT NULL DEFAULT '',
`premium` tinyint(1) unsigned NOT NULL DEFAULT '0',
`price` float NOT
NULL DEFAULT '0',
`slug` varchar(100) NOT NULL DEFAULT '',
`add_time`
int(11) unsigned NOT NULL DEFAULT '0',
`view_time` int(11) unsigned NOT
NULL DEFAULT '0',
`mobile` enum('0','1') NOT NULL DEFAULT '0',
`mobile_url` varchar(255) NOT NULL DEFAULT '',
`featured` enum('0','1')
NOT NULL DEFAULT '0',
`s3` enum('0','1') NOT NULL DEFAULT '0',
`yt_video_id` varchar(32) NOT NULL DEFAULT '',
`slideversion` int(11) NOT
NULL DEFAULT '2',
`slidenum` int(11) NOT NULL DEFAULT '0',
`slideoffset` int(11) NOT NULL DEFAULT '5',
PRIMARY KEY (`video_id`),
KEY `user_id` (`user_id`),
KEY `add_date` (`add_date`),
KEY `view_date`
(`view_date`),
KEY `status_id` (`status`,`video_id`),
KEY
`status_views` (`status`,`total_views`),
KEY `status_comments`
(`status`,`total_comments`),
KEY `status_downloads`
(`status`,`total_downloads`),
KEY `status_rating`
(`status`,`rating`,`rated_by`),
KEY `status_duration`
(`status`,`duration`),
KEY `status_view` (`status`,`view_time`),
KEY
`status` (`status`),
KEY `mobile` (`mobile`),
KEY `status_addtime`
(`status`,`add_time`),
FULLTEXT KEY `title` (`title`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `video`
--
LOCK TABLES
`video` WRITE;
/*!40000 ALTER TABLE `video` DISABLE KEYS */;
/*!40000 ALTER
TABLE `video` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `video_categories`
--
DROP TABLE IF EXISTS
`video_categories`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_categories` (
`cat_id` int(11) NOT NULL
AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`description`
text NOT NULL,
`slug` varchar(100) NOT NULL DEFAULT '',
`total_videos`
int(11) NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT
'1',
`adv` int(11) unsigned NOT NULL DEFAULT '0',
`parent_id` int(11)
unsigned NOT NULL DEFAULT '0',
`adv_text_id` int(11) NOT NULL DEFAULT
'0',
`adv_image_id` int(11) NOT NULL DEFAULT '0',
`adv_video` text NOT
NULL,
`title` text NOT NULL,
`meta_title` text NOT NULL,
`meta_desc`
text NOT NULL,
`meta_keys` text NOT NULL,
`auto_term` varchar(255) NOT
NULL DEFAULT '',
PRIMARY KEY (`cat_id`),
KEY `name` (`name`),
KEY
`slug` (`slug`),
KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_categories`
--
LOCK TABLES
`video_categories` WRITE;
/*!40000 ALTER TABLE `video_categories` DISABLE
KEYS */;
/*!40000 ALTER TABLE `video_categories` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_category`
--
DROP TABLE IF
EXISTS `video_category`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_category` (
`cat_id` int(11) NOT NULL DEFAULT
'0',
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
KEY `video_id`
(`video_id`),
KEY `cat_video` (`cat_id`,`video_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_category`
--
LOCK TABLES
`video_category` WRITE;
/*!40000 ALTER TABLE `video_category` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_category` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_comments`
--
DROP TABLE IF
EXISTS `video_comments`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_comments` (
`comment_id` int(11) unsigned NOT
NULL AUTO_INCREMENT,
`parent_id` int(11) unsigned NOT NULL DEFAULT '0',
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
`ip` int(11) unsigned NOT NULL DEFAULT
'0',
`comment` text NOT NULL,
`add_time` int(11) unsigned NOT NULL
DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
`spam`
int(11) unsigned NOT NULL DEFAULT '0',
`nickname` varchar(100) NOT NULL
DEFAULT '',
`rated_by` int(11) unsigned NOT NULL DEFAULT '0',
`likes`
int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_id`),
KEY
`parent_id` (`parent_id`),
KEY `video_id` (`video_id`),
KEY `user_id`
(`user_id`),
KEY `ip` (`ip`),
KEY `status` (`status`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_comments`
--
LOCK TABLES
`video_comments` WRITE;
/*!40000 ALTER TABLE `video_comments` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_comments` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_comments_votes`
--
DROP
TABLE IF EXISTS `video_comments_votes`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_comments_votes` (
`comment_id` int(11) unsigned
NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`vote_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`comment_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_comments_votes`
--
LOCK TABLES `video_comments_votes`
WRITE;
/*!40000 ALTER TABLE `video_comments_votes` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_comments_votes` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_cron`
--
DROP TABLE IF
EXISTS `video_cron`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_cron` (
`video_id` int(11) unsigned NOT NULL
DEFAULT '0',
`thumb` tinyint(1) unsigned NOT NULL DEFAULT '0',
`player`
tinyint(1) unsigned NOT NULL DEFAULT '0',
`flv` tinyint(1) unsigned NOT
NULL DEFAULT '0',
`slide` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`video_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_cron`
--
LOCK TABLES `video_cron` WRITE;
/*!40000 ALTER TABLE
`video_cron` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_cron` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table
`video_csv_imported`
--
DROP TABLE IF EXISTS
`video_csv_imported`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_csv_imported` (
`unique_id` varchar(32) NOT NULL
DEFAULT '',
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
UNIQUE
KEY `unique_id` (`unique_id`),
UNIQUE KEY `video_id` (`video_id`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table
`video_csv_imported`
--
LOCK TABLES `video_csv_imported` WRITE;
/*!40000
ALTER TABLE `video_csv_imported` DISABLE KEYS */;
/*!40000 ALTER TABLE
`video_csv_imported` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `video_embeds`
--
DROP TABLE IF EXISTS `video_embeds`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_embeds` (
`video_id`
int(11) NOT NULL DEFAULT '0',
`url` varchar(255) NOT NULL DEFAULT '',
`view_time` int(11) NOT NULL DEFAULT '0',
KEY `embed`
(`video_id`,`view_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_embeds`
--
LOCK TABLES `video_embeds` WRITE;
/*!40000 ALTER TABLE
`video_embeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_embeds` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`video_favorites`
--
DROP TABLE IF EXISTS `video_favorites`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_favorites` (
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
KEY `video_id` (`video_id`),
KEY
`user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_favorites`
--
LOCK TABLES `video_favorites` WRITE;
/*!40000 ALTER
TABLE `video_favorites` DISABLE KEYS */;
/*!40000 ALTER TABLE
`video_favorites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `video_featured`
--
DROP TABLE IF EXISTS `video_featured`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_featured` (
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`feature_time` int(11)
unsigned NOT NULL DEFAULT '0',
KEY `video_id` (`video_id`),
KEY
`feature_time` (`feature_time`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_featured`
--
LOCK TABLES
`video_featured` WRITE;
/*!40000 ALTER TABLE `video_featured` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_featured` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_feeds`
--
DROP TABLE IF
EXISTS `video_feeds`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_feeds` (
`feed_id` int(11) unsigned NOT NULL
AUTO_INCREMENT,
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`channel_id` int(11) unsigned NOT NULL DEFAULT '0',
`name` varchar(100)
NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`method`
enum('host','hotlink','embed') NOT NULL DEFAULT 'host',
`method_thumb`
enum('generate','download') NOT NULL DEFAULT 'download',
`categories`
text NOT NULL,
`type` enum('public','private') NOT NULL DEFAULT
'public',
`premium` enum('0','1') NOT NULL DEFAULT '0',
`allow_comment`
enum('0','1') NOT NULL DEFAULT '1',
`allow_embed` enum('0','1') NOT NULL
DEFAULT '1',
`allow_rating` enum('0','1') NOT NULL DEFAULT '1',
`allow_download` enum('0','1') NOT NULL DEFAULT '1',
`mobile`
enum('0','1') NOT NULL DEFAULT '0',
`block_duplicates` enum('0','1') NOT
NULL DEFAULT '1',
`last_updated` datetime NOT NULL DEFAULT '0000-00-00
00:00:00',
`update_limit` int(11) NOT NULL DEFAULT '10',
`status`
enum('0','1') NOT NULL DEFAULT '1',
`total_videos` int(11) unsigned NOT
NULL DEFAULT '0',
`queue` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`feed_id`),
KEY `user_id` (`user_id`),
KEY `sponsor_id`
(`channel_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_feeds`
--
LOCK TABLES
`video_feeds` WRITE;
/*!40000 ALTER TABLE `video_feeds` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_feeds` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_feeds_imported`
--
DROP
TABLE IF EXISTS `video_feeds_imported`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_feeds_imported` (
`feed_id` int(11) unsigned NOT
NULL DEFAULT '0',
`unique_id` varchar(255) NOT NULL DEFAULT '',
`video_id` int(11) NOT NULL DEFAULT '0',
KEY `feed_id` (`feed_id`),
KEY
`unique_id` (`unique_id`),
KEY `video_id` (`video_id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_feeds_imported`
--
LOCK TABLES
`video_feeds_imported` WRITE;
/*!40000 ALTER TABLE `video_feeds_imported`
DISABLE KEYS */;
/*!40000 ALTER TABLE `video_feeds_imported` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table `video_flags`
--
DROP
TABLE IF EXISTS `video_flags`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_flags` (
`flag_id` int(11) NOT NULL
AUTO_INCREMENT,
`video_id` int(11) NOT NULL DEFAULT '0',
`user_id`
int(11) NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT
'0',
`reason` varchar(20) NOT NULL DEFAULT '',
`message` text NOT
NULL,
`add_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('0','1') NOT NULL DEFAULT '1',
PRIMARY KEY (`flag_id`),
KEY `video_id` (`video_id`),
KEY `user_id` (`user_id`),
KEY `ip`
(`ip`),
KEY `reason` (`reason`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_flags`
--
LOCK TABLES
`video_flags` WRITE;
/*!40000 ALTER TABLE `video_flags` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_flags` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_graber`
--
DROP TABLE IF
EXISTS `video_graber`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_graber` (
`video_id` int(11) NOT NULL DEFAULT
'0',
`site` varchar(255) NOT NULL DEFAULT '',
`url` varchar(255) NOT
NULL DEFAULT '',
PRIMARY KEY (`video_id`),
KEY `site` (`site`),
KEY
`url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_graber`
--
LOCK TABLES `video_graber` WRITE;
/*!40000 ALTER TABLE
`video_graber` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_graber` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`video_history`
--
DROP TABLE IF EXISTS `video_history`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_history` (
`video_id`
int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11) unsigned NOT
NULL DEFAULT '0',
`view_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`video_id`,`user_id`,`view_time`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_history`
--
LOCK TABLES
`video_history` WRITE;
/*!40000 ALTER TABLE `video_history` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_history` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_info`
--
DROP TABLE IF
EXISTS `video_info`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_info` (
`video_id` int(11) NOT NULL DEFAULT '0',
`upload_type` enum('file','embed','import') DEFAULT NULL,
`upload_ip`
int(10) unsigned NOT NULL DEFAULT '0',
`filename` varchar(255) NOT NULL
DEFAULT '',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
`ext`
varchar(4) NOT NULL DEFAULT '',
`size` int(11) unsigned NOT NULL DEFAULT
'0',
PRIMARY KEY (`video_id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_info`
--
LOCK TABLES `video_info`
WRITE;
/*!40000 ALTER TABLE `video_info` DISABLE KEYS */;
/*!40000 ALTER
TABLE `video_info` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `video_meta`
--
DROP TABLE IF EXISTS `video_meta`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_meta` (
`video_id`
int(11) unsigned NOT NULL DEFAULT '0',
`meta_title` text NOT NULL,
`meta_desc` text NOT NULL,
`meta_keys` text NOT NULL,
UNIQUE KEY
`video_id` (`video_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_meta`
--
LOCK TABLES `video_meta` WRITE;
/*!40000 ALTER TABLE
`video_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_meta` ENABLE KEYS
*/;
UNLOCK TABLES;
--
-- Table structure for table `video_orig`
--
DROP
TABLE IF EXISTS `video_orig`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_orig` (
`video_id` int(11) unsigned NOT NULL
DEFAULT '0',
`user_id` int(11) unsigned NOT NULL DEFAULT '0',
`filename` varchar(255) NOT NULL DEFAULT '',
`ext` varchar(4) NOT NULL
DEFAULT '',
`size` int(11) unsigned NOT NULL DEFAULT '0',
`method`
varchar(20) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT
'0',
`ip` int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11)
unsigned NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_orig`
--
LOCK TABLES `video_orig`
WRITE;
/*!40000 ALTER TABLE `video_orig` DISABLE KEYS */;
/*!40000 ALTER
TABLE `video_orig` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure
for table `video_queue`
--
DROP TABLE IF EXISTS `video_queue`;
/*!40101
SET @saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_queue` (
`video_id`
int(11) unsigned NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT
NULL DEFAULT '0',
`conv_time` int(11) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`video_id`),
KEY `video_time` (`add_time`,`conv_time`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_queue`
--
LOCK TABLES
`video_queue` WRITE;
/*!40000 ALTER TABLE `video_queue` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_queue` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_rating`
--
DROP TABLE IF
EXISTS `video_rating`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_rating` (
`rating_id` bigint(10) NOT NULL
AUTO_INCREMENT,
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_id` int(11) unsigned NOT NULL DEFAULT '0',
`voter_ip` int(11)
unsigned NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`add_time` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`rating_id`),
KEY `video_id` (`video_id`),
KEY `voter_id`
(`voter_id`),
KEY `voter_ip` (`voter_ip`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_rating`
--
LOCK TABLES
`video_rating` WRITE;
/*!40000 ALTER TABLE `video_rating` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_rating` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `video_search`
--
DROP TABLE IF
EXISTS `video_search`;
/*!40101 SET @saved_cs_client =
@@character_set_client */;
/*!40101 SET character_set_client = utf8
*/;
CREATE TABLE `video_search` (
`keyword` varchar(30) NOT NULL DEFAULT
'',
`hits` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY
(`keyword`,`hits`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_search`
--
LOCK TABLES `video_search` WRITE;
/*!40000 ALTER TABLE
`video_search` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_search` ENABLE
KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`video_shedule`
--
DROP TABLE IF EXISTS `video_shedule`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_shedule` (
`video_id`
int(11) unsigned NOT NULL DEFAULT '0',
`shedule_date` date NOT NULL
DEFAULT '0000-00-00',
KEY `video_id` (`video_id`),
KEY `shedule_date`
(`shedule_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_shedule`
--
LOCK TABLES `video_shedule` WRITE;
/*!40000 ALTER TABLE
`video_shedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `video_shedule`
ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table
`video_sponsors`
--
DROP TABLE IF EXISTS `video_sponsors`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_sponsors` (
`sponsor_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`sponsor_name`
varchar(255) NOT NULL DEFAULT '',
`total_videos` int(11) unsigned NOT
NULL DEFAULT '0',
`adv_id` int(11) unsigned NOT NULL DEFAULT '0',
`status` enum('0','1') NOT NULL DEFAULT '1',
`adv_text_id` int(11) NOT
NULL DEFAULT '0',
`adv_image_id` int(11) NOT NULL DEFAULT '0',
`adv_video` text NOT NULL,
PRIMARY KEY (`sponsor_id`),
KEY `adv_id`
(`adv_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`video_sponsors`
--
LOCK TABLES `video_sponsors` WRITE;
/*!40000 ALTER
TABLE `video_sponsors` DISABLE KEYS */;
/*!40000 ALTER TABLE
`video_sponsors` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for
table `video_tags`
--
DROP TABLE IF EXISTS `video_tags`;
/*!40101 SET
@saved_cs_client = @@character_set_client */;
/*!40101 SET
character_set_client = utf8 */;
CREATE TABLE `video_tags` (
`tag_id`
int(11) unsigned NOT NULL AUTO_INCREMENT,
`video_id` int(11) unsigned NOT
NULL,
`name` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`tag_id`),
KEY `video_id` (`video_id`),
KEY `name` (`name`)
) ENGINE=MyISAM
AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client =
@saved_cs_client */;
--
-- Dumping data for table `video_tags`
--
LOCK
TABLES `video_tags` WRITE;
/*!40000 ALTER TABLE `video_tags` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
--
Table structure for table `video_views`
--
DROP TABLE IF EXISTS
`video_views`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `video_views`
(
`video_id` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` int(11)
unsigned NOT NULL DEFAULT '0',
`ip` int(10) unsigned NOT NULL DEFAULT
'0',
`view_time` int(11) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB
DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client
*/;
--
-- Dumping data for table `video_views`
--
LOCK TABLES
`video_views` WRITE;
/*!40000 ALTER TABLE `video_views` DISABLE KEYS
*/;
/*!40000 ALTER TABLE `video_views` ENABLE KEYS */;
UNLOCK
TABLES;
--
-- Table structure for table `words`
--
DROP TABLE IF EXISTS
`words`;
/*!40101 SET @saved_cs_client = @@character_set_client
*/;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `words` (
`word_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`word` varchar(100)
NOT NULL DEFAULT '',
PRIMARY KEY (`word_id`),
UNIQUE KEY `word`
(`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table
`words`
--
LOCK TABLES `words` WRITE;
/*!40000 ALTER TABLE `words` DISABLE
KEYS */;
/*!40000 ALTER TABLE `words` 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 2015-04-09 18:50:14