subdreamer的java版


subdreamer是一个老外做的自助建站系统,用php做的,可以自动换夫,拥有近百套精美模版和各种功能插件。

本人欲将php换成jsp,即做一个subdreamer的java版,现在换肤等基本框架已经完成,若贵公司有兴趣请与本人联系

若你对subdreamer不了解,请参观原作者网站www.subdreamer.com

 


***************************************************************************
   本人欲将Subdreamer改成jsp程序,现基本框架已经完成,即换肤系统,插件安装及卸栽,创建目录及对目录进行版面和插件的设计,中英文转换已基本完成。部分功能用javabean完成。如果这套系统完成将是jsp编辑网站的一次革命,你将在几分钟之内安装并运行你的web站点.为什么说是一次革命呢?本人知道Struts等一些java框架做网站也很简便,但是用这些框架的人至少应该是jsp程序员,而这套系统一旦完成,只要是个人,不太笨,都能使用。我已看了一些主要插件的算法,完成它只是时间问题,若贵公司有兴趣请与本人联系!它和Subdreamer的区别只是编程语言不同,php改成jsp.

tomcat+jsp+Mysql   如果您只对Jsp的这种编辑网站的方式感兴趣,那么,请相信我,我不会让你失望!耳听为虚,眼见为实!
***************************************************************************
想了解Subdreamer请看网站www.Subdreamer.com

Subdreamer是一个功能强大而操作简单的创建网站的php程序。使用它的快速安装和容易使用的管理界面,你将在几分钟之内安装并运行你的web站点.

无论你是想创建一个只有几个页面的站点还是想建一个包含数百页面站点,它都会通过强大的内容管理工具帮你达到目的。

使用这个编辑器,可以很容易的创建你的页面和文章。这个html文本编辑器有象word一样的强大功能。使用它图片和表格很容易被加到页面里。这个编辑器兼容目前市场上的主流浏览器有:IE 5.5+, Firefox 1.0+, Mozilla 1.3+ 和 Netscape 7+.

你不再需要使用ftp程序来加载图片。这个程序提供了一个图片管理器来分类,调整大小,和加载图片到你的网站。这使得给文章加图片和全面了解你的图片变得很容易

本程序提供了一个换肤系统,就是替换前台模板的系统,Subdreamer提供了60至80套模板(这些模板设计各异,构思巧妙,比较超前),通过换肤系统可以很容易的替换模板。

随这个程序有如下插件:新闻插件,近期新闻,客户留言,联系我们,评论插件,论坛近期发布,登陆面板,更改密码,注册面板,链接目录,图片库,和分类目录。许多插件诸如新闻插件和图片库是一个强大的系统,能给你的网站强大的功能。此外,它还有下载管理插件,邮件列表插件,日历插件,用户在线插件,论坛状态插件,事件管理插件,等等

 


*********************************************************************************

 

现将部分代码粘贴如下:

 

Mysql数据库部分:

 

-- phpMyAdmin SQL Dump
-- version 2.6.2-pl1
-- http://www.phpmyadmin.net
--
-- 主机: localhost
-- 生成日期: 2008 年 05 月 13 日 23:16
-- 服务器版本: 4.1.12
-- PHP 版本: 4.3.0
--
-- 数据库: `upload5`
--

-- --------------------------------------------------------

--
-- 表的结构 `sd_categories`
--

CREATE TABLE `sd_categories` (
  `categoryid` int(10) unsigned NOT NULL auto_increment,
  `parentid` int(10) unsigned NOT NULL default '0',
  `designid` int(10) unsigned NOT NULL default '0',
  `name` varchar(64) NOT NULL default '',
  `urlname` varchar(64) NOT NULL default '',
  `displayorder` int(10) unsigned NOT NULL default '0',
  `link` varchar(128) NOT NULL default '',
  `target` varchar(10) NOT NULL default '',
  `image` varchar(128) NOT NULL default '',
  `hoverimage` varchar(128) NOT NULL default '',
  `menuwidth` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`categoryid`),
  KEY `displayorder` (`displayorder`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- 导出表中的数据 `sd_categories`
--

INSERT INTO `sd_categories` VALUES (1, 0, 5, '?÷ò3', 'home', 1, '', 'null', '', '', 0);
INSERT INTO `sd_categories` VALUES (2, 0, 5, '?????DD?', 'guestbook', 2, '', '', '', '', 100);
INSERT INTO `sd_categories` VALUES (3, 0, 5, 'Image Gallery', 'gallery', 3, '', '', '', '', 125);
INSERT INTO `sd_categories` VALUES (4, 0, 5, 'Links', 'links', 4, '', '', '', '', 70);
INSERT INTO `sd_categories` VALUES (5, 0, 5, 'gg', 'gg', 5, '', '', '', '', 0);
INSERT INTO `sd_categories` VALUES (6, 0, 5, '55', '55', 6, '', '', '', '', 0);

-- --------------------------------------------------------

--
-- 表的结构 `sd_clicklogs`
--

CREATE TABLE `sd_clicklogs` (
  `clickid` int(10) NOT NULL auto_increment,
  `pluginid` int(10) NOT NULL default '0',
  `advertid` int(10) NOT NULL default '0',
  `ips` varchar(15) NOT NULL default '',
  `datecreated` int(10) NOT NULL default '0',
  KEY `clickid` (`clickid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_clicklogs`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_comments`
--

CREATE TABLE `sd_comments` (
  `commentid` int(10) unsigned NOT NULL auto_increment,
  `pluginid` int(10) unsigned NOT NULL default '0',
  `objectid` int(10) unsigned NOT NULL default '0',
  `date` int(10) unsigned NOT NULL default '0',
  `username` varchar(64) NOT NULL default '',
  `comment` text NOT NULL,
  PRIMARY KEY  (`commentid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_comments`
--

INSERT INTO `sd_comments` VALUES (1, 17, 5, 1191734163, 'cui', '?è??o?');

-- --------------------------------------------------------

--
-- 表的结构 `sd_customplugins`
--

CREATE TABLE `sd_customplugins` (
  `custompluginid` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(64) NOT NULL default '',
  `displayname` varchar(64) NOT NULL default '',
  `plugin` mediumtext NOT NULL,
  `includefile` varchar(128) NOT NULL default '',
  `settings` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`custompluginid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_customplugins`
--

INSERT INTO `sd_customplugins` VALUES (1, 'Contact text', 'Contact us!', 'Need to contact us?

Click Here!', '', 17);

-- --------------------------------------------------------

--
-- 表的结构 `sd_designs`
--

CREATE TABLE `sd_designs` (
  `designid` int(10) unsigned NOT NULL auto_increment,
  `skinid` int(10) unsigned NOT NULL default '0',
  `maxplugins` int(10) unsigned NOT NULL default '0',
  `designpath` varchar(64) NOT NULL default '',
  `imagepath` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`designid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;

--
-- 导出表中的数据 `sd_designs`
--

INSERT INTO `sd_designs` VALUES (1, 1, 30, 'advanced_2/advanced_1.jsp', 'advanced_2/images/adv_design_1.jpg');
INSERT INTO `sd_designs` VALUES (2, 1, 20, 'advanced_2/advanced_2.jsp', 'advanced_2/images/adv_design_2.jpg');
INSERT INTO `sd_designs` VALUES (3, 1, 20, 'advanced_2/advanced_3.jsp', 'advanced_2/images/adv_design_3.jpg');
INSERT INTO `sd_designs` VALUES (4, 1, 10, 'advanced_2/advanced_4.jsp', 'advanced_2/images/adv_design_4.jpg');
INSERT INTO `sd_designs` VALUES (5, 2, 9, 'gravity/gravity1.jsp', 'gravity/images/design1.gif');
INSERT INTO `sd_designs` VALUES (6, 2, 3, 'gravity/gravity2.jsp', 'gravity/images/design2.gif');
INSERT INTO `sd_designs` VALUES (14, 6, 8, 'bobbyzhuo/bobby1.php', 'bobbyzhuo/images/bobby1.gif');
INSERT INTO `sd_designs` VALUES (15, 6, 8, 'bobbyzhuo/bobby2.php', 'bobbyzhuo/images/bobby2.gif');
INSERT INTO `sd_designs` VALUES (16, 6, 3, 'bobbyzhuo/bobby3.php', 'bobbyzhuo/images/bobby3.gif');
INSERT INTO `sd_designs` VALUES (17, 7, 5, 'feather/feather1.php', 'feather/images/feather1.gif');
INSERT INTO `sd_designs` VALUES (18, 7, 7, 'feather/feather2.php', 'feather/images/feather2.gif');
INSERT INTO `sd_designs` VALUES (19, 7, 2, 'feather/feather3.php', 'feather/images/feather3.gif');
INSERT INTO `sd_designs` VALUES (20, 8, 12, 'oldschoolSD/main.jsp', 'oldschoolSD/images/design1.gif');
INSERT INTO `sd_designs` VALUES (21, 9, 13, 'hq_apple/hq_1.jsp', 'hq_apple/images/design_1.jpg');
INSERT INTO `sd_designs` VALUES (22, 9, 10, 'hq_apple/hq_2.jsp', 'hq_apple/images/design_2.jpg');
INSERT INTO `sd_designs` VALUES (23, 9, 8, 'hq_apple/hq_3.jsp', 'hq_apple/images/design_3.jpg');
INSERT INTO `sd_designs` VALUES (24, 9, 5, 'hq_apple/hq_4.jsp', 'hq_apple/images/design_4.jpg');

-- --------------------------------------------------------

--
-- 表的结构 `sd_mainsettings`
--

CREATE TABLE `sd_mainsettings` (
  `settingid` int(10) unsigned NOT NULL auto_increment,
  `varname` varchar(64) NOT NULL default '',
  `groupname` varchar(64) NOT NULL default '',
  `input` mediumtext NOT NULL,
  `title` varchar(100) NOT NULL default '',
  `description` mediumtext NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY  (`settingid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ;

--
-- 导出表中的数据 `sd_mainsettings`
--

INSERT INTO `sd_mainsettings` VALUES (1, 'sdurl', 'Subdreamer Settings', 'text', 'í???URL', '??ê?è?????í?????URL:

?a??éè????óúí??????yè·??DDê?±?Dè??.

ày×ó?ohttp://www.domain.com/', '222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (2, 'enablewysiwyg', 'Subdreamer Settings', 'yesno', ' ?ù?????ù??±à?-?÷', '?ú1üàí??°??¤???ù?????ù??±à?-?÷????

??3ìDò°2×°á?ò??????ó??±à?-?÷???ü±?ó?óúD?????2??toíLOGO???¨?è??????óò???±????±?×?ì????óD?oí??é?ê±±à?-?÷?éò?è???1?2ì???ü????2?í????a??±à?-?÷??óú?ò??????±?ê????ó????è?1???òa?|àí?ü???ó???ú??àyè?JavaScript???é?ü??ê??ü2??éó???', '1222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (3, 'gzipcompress', 'Subdreamer Settings', 'yesno', 'GZip Compression', 'If your server is running off of apache, then you can turn this setting on to compress your pages potentially making your site much quicker:', '1222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (4, 'admincookietimeout', 'Subdreamer Settings', 'text', 'Admin Timeout', 'Number of seconds of idle time before you are automatically logged out of the admin control panel (default 900 = 15 minutes):', '900222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (5, 'siteactivation', 'Site Activation', '', '?ò?a/1?±?í???', '?±??DD?üD?oí???¤ê±?????é?üòa1?±?í???.', 'on222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (6, 'offmessage', 'Site Activation', 'textarea', '1?±?í??????-òò', '???éò??ò?????á?±ìá1?ò????ò?ì?????÷à??aêí?aê2??????í???1?±?á?.', 'We are currently performing updates, please check back soon!222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (7, 'websitetitle', 'Site Settings', 'text', 'í???±êìa', '??????í????ü??:', 'Website Title222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (8, 'technicalemail', 'Site Settings', 'text', '??ê??§3?D???', 'è?o??í?óoí?êìa???éò????a?????··?óê?t?o
/r/nè?1???2?????????ê??§3?????°×.
/r/nè?1?óD?à??óê????ó??oo????a.', '[email protected]');
INSERT INTO `sd_mainsettings` VALUES (9, 'metakeywords', 'Site Settings', 'text', '1??ü×?', ' ?èê???í?????1??ü×?ó??oo????a.
/r/n?aD?1??ü×????¨????í????ú???÷òy???D???????o', 'Website Keywords222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (10, 'metadescription', 'Site Settings', 'text', '1??ü×??èê?', ' ?èê?????í????o
/r/n???¨????í????ú???÷òy???D????????', 'Website description222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (11, 'categorytitle', 'Site Settings', 'yesno', 'ó???????°ó?¨±êìa±ê??', ' í¨1y?a????????±???ê?????????×???±??ó????í?????±êìa?D.', '0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (12, 'copyrighttext', 'Site Settings', 'text', '°?è¨', ' ?ú?aà?ê?è?????°?è¨D????o', '222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (13, 'modrewrite', 'Site Settings', 'yesno', 'ó??éáa?á', ' ?ú?aà?ê?è?????°?è¨D????o', '0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (14, 'techfromemail', 'Site Settings', 'yesno', 'Use Technical Email as From Address', 'Some hosts will not allow email to be sent unless the ''From'' address is the same domain as the web server. This setting will make sure your Technical Email is used as the From address:', '1222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (15, 'dateformat', 'Date and Time Options', 'text', 'è??ú??ê?', ' è??ú??ê???ê??o', 'F j, Y222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (16, 'timezoneoffset', 'Date and Time Options', '', '??è???ê±??2?', ' à??íoíD?ó??§??ê±??2???2???????á?ê±???à?±óúê1ó???ò?????????', '-8222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (17, 'daylightsavings', 'Date and Time Options', 'yesno', 'ê1ó?è?1a?ú??ê±??', ' è?1???óúé?????ê±????á?ê±ê?óDD§?????????????a??????ò?ê1à??í?ü?????yè·??ê±????', '0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (18, 'smiliesystem', 'Smilies', '', 'Smilie System', '', 'Subdreamer222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (19, 'language', 'NA', '', 'Language', '', 'Chinese-gb2312.jsp!!1.0!!gb2312');
INSERT INTO `sd_mainsettings` VALUES (20, 'bfo', 'NA', '', 'bfo', '', '0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (21, 'sdversion', '', '', 'version', 'Subdreamer Version', '2.4.0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (22, 'sdversiontype', '', '', 'Version Type', 'The version type is either Basic or Pro. Do not change this value manually, it will cause problems.', 'Pro222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (23, 'currentlogo', '', '', 'Current Logo', '', '

Your logo here!
222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (24, 'commentvvc', 'Comment Options', 'yesno', 'Visual Verify Code', 'Require users to enter a Visual Verify Code to post comments?', '0222222222222222222222');
INSERT INTO `sd_mainsettings` VALUES (25, 'commentavatar', 'Comment Options', 'yesno', 'Show User Avatar', 'Show user''s avatar next to their comment?', '0222222222222222222222');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_access`
--

CREATE TABLE `sd_p13_access` (
  `itemid` int(11) NOT NULL default '0',
  `userid` int(11) default NULL,
  `usergroupid` int(11) default NULL,
  `itemtype` tinyint(4) NOT NULL default '0',
  `datecreated` int(11) NOT NULL default '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_p13_access`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_file_downloads`
--

CREATE TABLE `sd_p13_file_downloads` (
  `fileid` int(11) NOT NULL default '0',
  `username` varchar(64) NOT NULL default '',
  `ipaddress` varchar(15) NOT NULL default '',
  `downloaddate` int(11) NOT NULL default '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_p13_file_downloads`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_file_sections`
--

CREATE TABLE `sd_p13_file_sections` (
  `fileid` int(11) NOT NULL default '0',
  `sectionid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`fileid`,`sectionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_p13_file_sections`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_file_versions`
--

CREATE TABLE `sd_p13_file_versions` (
  `versionid` int(10) NOT NULL auto_increment,
  `fileid` int(10) NOT NULL default '0',
  `version` varchar(50) NOT NULL default '',
  `file` longblob NOT NULL,
  `filename` varchar(50) NOT NULL default '',
  `storedfilename` varchar(128) NOT NULL default '',
  `filesize` varchar(50) NOT NULL default '',
  `filetype` varchar(50) NOT NULL default '',
  `datecreated` int(11) NOT NULL default '0',
  KEY `versionid` (`versionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p13_file_versions`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_files`
--

CREATE TABLE `sd_p13_files` (
  `fileid` int(10) NOT NULL auto_increment,
  `activated` tinyint(1) NOT NULL default '0',
  `uniqueid` int(10) NOT NULL default '0',
  `file` longblob NOT NULL,
  `filename` varchar(250) NOT NULL default '',
  `storedfilename` varchar(50) NOT NULL default '',
  `filesize` varchar(50) NOT NULL default '',
  `filetype` varchar(50) NOT NULL default '',
  `title` varchar(120) NOT NULL default '',
  `author` varchar(32) NOT NULL default '',
  `description` mediumtext NOT NULL,
  `image` varchar(24) NOT NULL default '',
  `thumbnail` varchar(24) NOT NULL default '',
  `rating` float NOT NULL default '0',
  `numvotes` int(10) NOT NULL default '0',
  `dateadded` int(10) NOT NULL default '0',
  `dateupdated` int(10) NOT NULL default '0',
  `downloadcount` int(10) NOT NULL default '0',
  `accesscontrol` int(10) NOT NULL default '0',
  `standalone` int(10) NOT NULL default '0',
  `currentversionid` int(10) NOT NULL default '0',
  `datestart` int(10) NOT NULL default '0',
  `dateend` int(10) NOT NULL default '0',
  `maxdownloads` int(11) NOT NULL default '0',
  `maxtype` tinyint(4) NOT NULL default '0',
  `licensed` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`fileid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p13_files`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_ratings`
--

CREATE TABLE `sd_p13_ratings` (
  `ratingid` int(10) NOT NULL auto_increment,
  `fileid` int(10) NOT NULL default '0',
  `rating` float NOT NULL default '0',
  `ip` varchar(15) NOT NULL default '0',
  PRIMARY KEY  (`ratingid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p13_ratings`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p13_sections`
--

CREATE TABLE `sd_p13_sections` (
  `sectionid` int(10) unsigned NOT NULL auto_increment,
  `parentid` int(10) unsigned NOT NULL default '0',
  `activated` tinyint(1) unsigned NOT NULL default '0',
  `name` varchar(128) NOT NULL default '',
  `description` text NOT NULL,
  `sorting` varchar(32) NOT NULL default '',
  `accesscontrol` int(10) unsigned NOT NULL default '0',
  `image` varchar(128) NOT NULL default '',
  `thumbnail` varchar(24) NOT NULL default '',
  `fsprefix` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`sectionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p13_sections`
--

INSERT INTO `sd_p13_sections` VALUES (1, 0, 1, 'Downloads', '', 'Newest First', 1, '', '', '');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p14_newsletters`
--

CREATE TABLE `sd_p14_newsletters` (
  `newsletterid` int(10) unsigned NOT NULL auto_increment,
  `title` varchar(128) NOT NULL default '',
  `recipientname` varchar(64) NOT NULL default '',
  `emailto` text NOT NULL,
  `emailsubscribers` tinyint(1) NOT NULL default '0',
  `emailusers` tinyint(1) NOT NULL default '0',
  `fromname` varchar(32) NOT NULL default '',
  `fromemail` varchar(32) NOT NULL default '',
  `message` text NOT NULL,
  `includesignature` tinyint(1) NOT NULL default '0',
  `includeheader` tinyint(1) NOT NULL default '0',
  `includefooter` tinyint(1) NOT NULL default '0',
  `skinnewsletter` tinyint(1) NOT NULL default '0',
  `sendcount` int(10) unsigned NOT NULL default '0',
  `datesent` int(10) unsigned NOT NULL default '0',
  KEY `newsletterid` (`newsletterid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p14_newsletters`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p14_subscriptions`
--

CREATE TABLE `sd_p14_subscriptions` (
  `subscriptionid` int(10) unsigned NOT NULL auto_increment,
  `email` varchar(64) NOT NULL default '',
  `subscribed` tinyint(1) NOT NULL default '0',
  KEY `subscriptionid` (`subscriptionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p14_subscriptions`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p164_prod_sections`
--

CREATE TABLE `sd_p164_prod_sections` (
  `xid` int(10) NOT NULL auto_increment,
  `sid` int(10) NOT NULL default '0',
  `pid` int(10) NOT NULL default '0',
  KEY `xid` (`xid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p164_prod_sections`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p164_products`
--

CREATE TABLE `sd_p164_products` (
  `pid` int(10) NOT NULL auto_increment,
  `name` varchar(120) NOT NULL default '',
  `price` float NOT NULL default '0',
  `oh_qty` int(10) NOT NULL default '0',
  `image` varchar(120) NOT NULL default '',
  `description` mediumtext,
  KEY `pid` (`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p164_products`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p164_sections`
--

CREATE TABLE `sd_p164_sections` (
  `sid` int(10) NOT NULL auto_increment,
  `parent` int(10) NOT NULL default '0',
  `sortby` int(10) NOT NULL default '0',
  `image` varchar(120) NOT NULL default '',
  `description` mediumtext,
  `active` int(10) NOT NULL default '0',
  `name` varchar(120) NOT NULL default '',
  KEY `sid` (`sid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p164_sections`
--

INSERT INTO `sd_p164_sections` VALUES (1, 0, 0, '', NULL, 0, 'Root');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p16_links`
--

CREATE TABLE `sd_p16_links` (
  `linkid` int(10) unsigned NOT NULL auto_increment,
  `sectionid` int(10) unsigned NOT NULL default '0',
  `activated` tinyint(1) NOT NULL default '0',
  `allowsmilies` tinyint(1) NOT NULL default '0',
  `showauthor` tinyint(1) NOT NULL default '0',
  `author` varchar(64) NOT NULL default '',
  `title` varchar(128) NOT NULL default '',
  `url` text NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY  (`linkid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p16_links`
--

INSERT INTO `sd_p16_links` VALUES (1, 1, 1, 1, 1, 'Demo', 'yoursite', 'http://www.yoursite.com', 'This is a demo link!');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p16_sections`
--

CREATE TABLE `sd_p16_sections` (
  `sectionid` int(10) unsigned NOT NULL auto_increment,
  `parentid` int(10) unsigned NOT NULL default '0',
  `activated` tinyint(1) NOT NULL default '0',
  `name` varchar(128) NOT NULL default '',
  `description` text NOT NULL,
  `sorting` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`sectionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p16_sections`
--

INSERT INTO `sd_p16_sections` VALUES (1, 0, 1, 'Links', '', 'Newest First');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p17_images`
--

CREATE TABLE `sd_p17_images` (
  `imageid` int(10) unsigned NOT NULL auto_increment,
  `sectionid` int(10) unsigned NOT NULL default '0',
  `activated` tinyint(1) NOT NULL default '0',
  `filename` varchar(32) NOT NULL default '',
  `allowsmilies` tinyint(1) NOT NULL default '0',
  `allowcomments` tinyint(1) NOT NULL default '0',
  `showauthor` tinyint(1) NOT NULL default '0',
  `author` varchar(64) NOT NULL default '',
  `title` varchar(128) NOT NULL default '',
  `description` text,
  `viewcount` int(10) unsigned NOT NULL default '0',
  `width` int(10) NOT NULL default '0',
  `height` int(10) NOT NULL default '0',
  `tags` varchar(255) NOT NULL default '',
  `datecreated` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`imageid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;

--
-- 导出表中的数据 `sd_p17_images`
--

INSERT INTO `sd_p17_images` VALUES (2, 1, 1, '2.jpg', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 19, 0, 0, '', 1191733145);
INSERT INTO `sd_p17_images` VALUES (4, 1, 1, '4.png', 1, 1, 1, 'cui', 'í???óèàà', '??ààí???', 22, 0, 0, '', 1191734733);
INSERT INTO `sd_p17_images` VALUES (5, 1, 1, '5.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 21, 0, 0, '', 1191734994);
INSERT INTO `sd_p17_images` VALUES (6, 1, 1, '6.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 19, 0, 0, '', 1191733412);
INSERT INTO `sd_p17_images` VALUES (8, 1, 1, '8.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 18, 0, 0, '', 1191733901);
INSERT INTO `sd_p17_images` VALUES (9, 1, 1, '9.png', 1, 1, 1, 'cui', 'í????¤àà', '/r/n/r/n??ààí???', 18, 0, 0, '', 1191787347);
INSERT INTO `sd_p17_images` VALUES (10, 1, 1, '10.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 18, 0, 0, '', 1191794160);
INSERT INTO `sd_p17_images` VALUES (11, 1, 1, '11.jpg', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 8, 0, 0, '', 1191797881);
INSERT INTO `sd_p17_images` VALUES (12, 1, 1, '12.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 15, 0, 0, '', 315889813);
INSERT INTO `sd_p17_images` VALUES (13, 1, 1, '13.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 24, 0, 0, '', 315891534);
INSERT INTO `sd_p17_images` VALUES (14, 1, 1, '14.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 20, 0, 0, '', 315891982);
INSERT INTO `sd_p17_images` VALUES (15, 1, 1, '15.png', 1, 1, 1, 'cui', 'í????¤àà', '??ààí???', 15, 0, 0, '', 315893327);

-- --------------------------------------------------------

--
-- 表的结构 `sd_p17_sections`
--

CREATE TABLE `sd_p17_sections` (
  `sectionid` int(10) unsigned NOT NULL auto_increment,
  `parentid` int(10) unsigned NOT NULL default '0',
  `activated` tinyint(1) NOT NULL default '0',
  `name` varchar(128) NOT NULL default '',
  `imagecount` int(10) unsigned NOT NULL default '0',
  `description` text NOT NULL,
  `sorting` varchar(32) NOT NULL default '',
  `imageid` int(10) unsigned default NULL,
  `datecreated` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`sectionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p17_sections`
--

INSERT INTO `sd_p17_sections` VALUES (1, 0, 1, 'Images', 0, '', 'Newest First', NULL, 1191722202);

-- --------------------------------------------------------

--
-- 表的结构 `sd_p186_etrace`
--

CREATE TABLE `sd_p186_etrace` (
  `etraceid` int(10) unsigned NOT NULL auto_increment,
  `userid` int(11) NOT NULL default '0',
  `tracerid` varchar(64) NOT NULL default '',
  `subject` varchar(32) NOT NULL default '',
  `cltimezone` int(11) NOT NULL default '0',
  `clip` varchar(32) NOT NULL default '',
  `traceline` text NOT NULL,
  `dateadded` int(11) NOT NULL default '0',
  `modeid` int(11) NOT NULL default '0',
  KEY `etraceid` (`etraceid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p186_etrace`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p186_ip`
--

CREATE TABLE `sd_p186_ip` (
  `id` int(10) NOT NULL auto_increment,
  `userid` int(10) NOT NULL default '0',
  `tracerid` varchar(64) NOT NULL default '',
  `toemail` varchar(255) NOT NULL default '',
  `ip` varchar(32) NOT NULL default '',
  `time` int(11) NOT NULL default '0',
  `http_user_agent` varchar(255) NOT NULL default '',
  `country` varchar(32) NOT NULL default '',
  `address` varchar(255) NOT NULL default '',
  `timezone` int(11) NOT NULL default '0',
  `system` varchar(32) NOT NULL default '',
  `browser` varchar(32) NOT NULL default '',
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p186_ip`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p186_ipdata`
--

CREATE TABLE `sd_p186_ipdata` (
  `ipid` int(10) unsigned NOT NULL auto_increment,
  `ipstart` bigint(20) NOT NULL default '0',
  `ipend` bigint(20) NOT NULL default '0',
  `country` varchar(16) NOT NULL default '',
  `address` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`ipid`),
  KEY `ipstart` (`ipstart`,`ipend`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p186_ipdata`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p2_news`
--

CREATE TABLE `sd_p2_news` (
  `articleid` int(10) unsigned NOT NULL auto_increment,
  `categoryid` int(10) unsigned NOT NULL default '0',
  `settings` int(10) unsigned NOT NULL default '0',
  `views` int(10) unsigned NOT NULL default '0',
  `displayorder` int(10) unsigned NOT NULL default '0',
  `datecreated` int(10) unsigned NOT NULL default '0',
  `dateupdated` int(10) unsigned NOT NULL default '0',
  `datestart` int(10) unsigned NOT NULL default '0',
  `dateend` int(10) unsigned NOT NULL default '0',
  `author` varchar(64) NOT NULL default '',
  `title` varchar(128) NOT NULL default '',
  `metadescription` text NOT NULL,
  `metakeywords` text NOT NULL,
  `description` text NOT NULL,
  `article` mediumtext NOT NULL,
  PRIMARY KEY  (`articleid`),
  KEY `categoryid` (`categoryid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p2_news`
--

INSERT INTO `sd_p2_news` VALUES (1, 1, 3, 74, 1, 1191722202, 0, 0, 0, 'Demo', 'Welcome to your new Website!', '', '', '', 'Time to add some content to your new website!

Click here to begin updating and changing your website from the admin panel.');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p2_settings`
--

CREATE TABLE `sd_p2_settings` (
  `categoryid` int(10) unsigned NOT NULL default '0',
  `maxarticles` int(10) unsigned NOT NULL default '10',
  `sorting` varchar(64) NOT NULL default 'Newest First',
  `multiplepages` tinyint(1) NOT NULL default '0',
  KEY `categoryid` (`categoryid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_p2_settings`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_p42_hitcounter`
--

CREATE TABLE `sd_p42_hitcounter` (
  `hits` int(11) NOT NULL default '0',
  `start` int(11) NOT NULL default '0',
  `style` int(11) NOT NULL default '1',
  `digits` int(11) NOT NULL default '1',
  `message` varchar(255) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_p42_hitcounter`
--

INSERT INTO `sd_p42_hitcounter` VALUES (0, 0, 1, 6, 'You''re visitor number:');

-- --------------------------------------------------------

--
-- 表的结构 `sd_p4_guestbook`
--

CREATE TABLE `sd_p4_guestbook` (
  `messageid` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(64) NOT NULL default '',
  `websitename` varchar(128) NOT NULL default '',
  `website` varchar(128) NOT NULL default '',
  `message` text NOT NULL,
  `datecreated` int(10) NOT NULL default '0',
  PRIMARY KEY  (`messageid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p4_guestbook`
--

INSERT INTO `sd_p4_guestbook` VALUES (1, 'Demo', 'yoursite', 'http://www.yoursite.com', 'Nice website!', 1191722202);

-- --------------------------------------------------------

--
-- 表的结构 `sd_p7_chatterbox`
--

CREATE TABLE `sd_p7_chatterbox` (
  `commentid` int(10) unsigned NOT NULL auto_increment,
  `categoryid` int(10) unsigned NOT NULL default '0',
  `username` varchar(64) NOT NULL default '',
  `comment` text NOT NULL,
  `datecreated` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`commentid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_p7_chatterbox`
--

INSERT INTO `sd_p7_chatterbox` VALUES (1, 1, 'Demo', 'Hi there!', 1191722202);

-- --------------------------------------------------------

--
-- 表的结构 `sd_p820_blog`
--

CREATE TABLE `sd_p820_blog` (
  `blog_id` int(11) NOT NULL auto_increment,
  `username` varchar(64) default NULL,
  `category` varchar(64) default NULL,
  `blog_name` varchar(128) NOT NULL default '',
  `blog_words` mediumtext NOT NULL,
  `views` int(11) NOT NULL default '0',
  `datecreated` int(10) unsigned NOT NULL default '0',
  `dateupdated` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`blog_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_p820_blog`
--


-- --------------------------------------------------------

--
-- 表的结构 `sd_pagesort`
--

CREATE TABLE `sd_pagesort` (
  `categoryid` int(10) unsigned NOT NULL default '0',
  `pluginid` varchar(5) NOT NULL default '1',
  `displayorder` int(10) unsigned NOT NULL default '0',
  KEY `categoryid` (`categoryid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_pagesort`
--

INSERT INTO `sd_pagesort` VALUES (4, '1', 1);
INSERT INTO `sd_pagesort` VALUES (4, '1', 2);
INSERT INTO `sd_pagesort` VALUES (4, '1', 3);
INSERT INTO `sd_pagesort` VALUES (4, '1', 4);
INSERT INTO `sd_pagesort` VALUES (4, '1', 5);
INSERT INTO `sd_pagesort` VALUES (4, '1', 6);
INSERT INTO `sd_pagesort` VALUES (4, '1', 7);
INSERT INTO `sd_pagesort` VALUES (4, '1', 8);
INSERT INTO `sd_pagesort` VALUES (4, '1', 9);
INSERT INTO `sd_pagesort` VALUES (5, '1', 1);
INSERT INTO `sd_pagesort` VALUES (5, '1', 2);
INSERT INTO `sd_pagesort` VALUES (5, '1', 3);
INSERT INTO `sd_pagesort` VALUES (5, '1', 4);
INSERT INTO `sd_pagesort` VALUES (5, '1', 5);
INSERT INTO `sd_pagesort` VALUES (5, '1', 6);
INSERT INTO `sd_pagesort` VALUES (5, '1', 7);
INSERT INTO `sd_pagesort` VALUES (5, '1', 8);
INSERT INTO `sd_pagesort` VALUES (5, '1', 9);
INSERT INTO `sd_pagesort` VALUES (1, '2', 1);
INSERT INTO `sd_pagesort` VALUES (1, '1', 2);
INSERT INTO `sd_pagesort` VALUES (1, '1', 3);
INSERT INTO `sd_pagesort` VALUES (1, '10', 4);
INSERT INTO `sd_pagesort` VALUES (1, '3', 5);
INSERT INTO `sd_pagesort` VALUES (1, '96', 6);
INSERT INTO `sd_pagesort` VALUES (1, '1', 7);
INSERT INTO `sd_pagesort` VALUES (1, '1', 8);
INSERT INTO `sd_pagesort` VALUES (1, '1', 9);
INSERT INTO `sd_pagesort` VALUES (2, '17', 1);
INSERT INTO `sd_pagesort` VALUES (2, '1', 2);
INSERT INTO `sd_pagesort` VALUES (2, '1', 3);
INSERT INTO `sd_pagesort` VALUES (2, '1', 4);
INSERT INTO `sd_pagesort` VALUES (2, '1', 5);
INSERT INTO `sd_pagesort` VALUES (2, '1', 6);
INSERT INTO `sd_pagesort` VALUES (2, '1', 7);
INSERT INTO `sd_pagesort` VALUES (2, '1', 8);
INSERT INTO `sd_pagesort` VALUES (2, '1', 9);
INSERT INTO `sd_pagesort` VALUES (3, '17', 1);
INSERT INTO `sd_pagesort` VALUES (3, '1', 2);
INSERT INTO `sd_pagesort` VALUES (3, '1', 3);
INSERT INTO `sd_pagesort` VALUES (3, '15', 4);
INSERT INTO `sd_pagesort` VALUES (3, '10', 5);
INSERT INTO `sd_pagesort` VALUES (3, '3', 6);
INSERT INTO `sd_pagesort` VALUES (3, '42', 7);
INSERT INTO `sd_pagesort` VALUES (3, '1', 8);
INSERT INTO `sd_pagesort` VALUES (3, '1', 9);
INSERT INTO `sd_pagesort` VALUES (6, '6', 1);
INSERT INTO `sd_pagesort` VALUES (6, '2', 2);
INSERT INTO `sd_pagesort` VALUES (6, '1', 3);
INSERT INTO `sd_pagesort` VALUES (6, '10', 4);
INSERT INTO `sd_pagesort` VALUES (6, '1', 5);
INSERT INTO `sd_pagesort` VALUES (6, '1', 6);
INSERT INTO `sd_pagesort` VALUES (6, '1', 7);
INSERT INTO `sd_pagesort` VALUES (6, '1', 8);
INSERT INTO `sd_pagesort` VALUES (6, '1', 9);

-- --------------------------------------------------------

--
-- 表的结构 `sd_phrases`
--

CREATE TABLE `sd_phrases` (
  `phraseid` int(10) NOT NULL auto_increment,
  `pluginid` int(10) NOT NULL default '0',
  `varname` varchar(64) NOT NULL default '',
  `defaultphrase` text NOT NULL,
  `customphrase` text NOT NULL,
  `font` varchar(32) NOT NULL default '',
  `color` varchar(32) NOT NULL default '',
  `size` varchar(32) NOT NULL default '',
  `bold` tinyint(1) NOT NULL default '0',
  `italic` tinyint(1) NOT NULL default '0',
  `underline` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`phraseid`),
  KEY `pluginid` (`pluginid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=545 ;

--
-- 导出表中的数据 `sd_phrases`
--

INSERT INTO `sd_phrases` VALUES (1, 1, 'Sunday', 'Sunday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (2, 1, 'Monday', 'Monday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (3, 1, 'Tuesday', 'Tuesday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (4, 1, 'Wednesday', 'Wednesday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (5, 1, 'Thursday', 'Thursday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (6, 1, 'Friday', 'Friday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (7, 1, 'Saturday', 'Saturday', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (8, 1, 'Sun', 'Sun', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (9, 1, 'Mon', 'Mon', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (10, 1, 'Tue', 'Tue', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (11, 1, 'Wed', 'Wed', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (12, 1, 'Thu', 'Thu', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (13, 1, 'Fri', 'Fri', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (14, 1, 'Sat', 'Sat', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (15, 1, 'January', 'January', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (16, 1, 'February', 'February', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (17, 1, 'March', 'March', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (18, 1, 'April', 'April', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (19, 1, 'May', 'May', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (20, 1, 'June', 'June', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (21, 1, 'July', 'July', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (22, 1, 'August', 'August', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (23, 1, 'September', 'September', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (24, 1, 'October', 'October', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (25, 1, 'November', 'November', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (26, 1, 'December', 'December', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (27, 1, 'Jan', 'Jan', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (28, 1, 'Feb', 'Feb', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (29, 1, 'Mar', 'Mar', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (30, 1, 'Apr', 'Apr', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (31, 1, 'May', 'May', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (32, 1, 'Jun', 'Jun', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (33, 1, 'Jul', 'Jul', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (34, 1, 'Aug', 'Aug', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (35, 1, 'Sep', 'Sep', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (36, 1, 'Oct', 'Oct', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (37, 1, 'Nov', 'Nov', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (38, 1, 'Dec', 'Dec', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (39, 1, 'enter_comment_name', 'Please fill out the name field.', '??ê?£?μ?ê?£?°?′÷è?μí?×μ?°???????£????′???¨?á', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (40, 1, 'enter_comment', 'Please fill out the comment field.', '?|á???ìì,??óú??JDK1.2μ?JDBC?D???êìaóDá?3?2?μ?á??a,??è??1óD?êìa′??ú,μ??ò??′ó?ò?é?ü??×??±á?°é?:)?ùò??í°??òμ?3?2???·¨?èìù3?à′,??ó-′ó?ò213?. JDK1.2μ??D???êìa?÷òaê?óéóúòyè?á?Unicodeòy?eμ?(??êμ?ú1.1°?±??D?íóDá?),Unicodeμ?×?·?óé16bit113é,1?óúUnicode?ü?ê??μ?D??¢óDD?è¤???éò?μ?www.unicode.org2é??,?ú1.0°?±??D,ò????D??ê?óéá???char(8bit)×é3éμ?,??1.1ò?é?°?±??Dê?óéò???char(16bit)×é3éμ?.?aò?μ?′ó?ò?éò?ó?System.out.println(s.length())ó???à′?¤êμ,???Ds?a?D??×?′?. ???úà′?μ?μ?a??°ì·¨,ê×?èéù?÷?aD??á1???ê??ú?òμ??·?3à?2aê?í¨1y,è?1??ú?÷??μ??·?3à?óD?êìa,????±????a.?é?òμ??·?3ê?JDK1.2+Win95+Sybase JDBC Driver(PowerJ2.5??′?)+Oracle JDBC Driver(Oracle8.0.3??′?). ?òμ?μúò???ì??áê?ó?JDBC-ODBC???ó·??êêy?Y?a?D??ê?è?óD?êìa,?ò?1???a??,?òó?μ?JDBCODBC Driverê?JDK1.2×?′?μ?. μú?t??ì??áê?ó?JDBC?±?óáaêy?Y?a,?aê±?é?üóDá????é??: 1,?D??ê?è????êìa(Oracle8),?′?éò??úSQLó????D?±?óD′?D??,è?:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (41, 1, 'repeat_comment', 'Repeat comment not posted.', '???′?à???T·¨·¢±í.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (42, 1, 'users_name', 'User''s Name:', 'ó??§??3? :', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (43, 1, 'your_name', 'Your Name:', '?úμ???3?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (44, 1, 'comment', 'Comment:', '?à??:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (45, 1, 'update_comment', 'Update Comment', '?üD??à??', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (46, 1, 'post_comment', 'Post Comment', '·¢±í?à??', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (47, 1, 'comments', 'Comments:', '?à??ò?àà:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (48, 1, 'edit', 'Edit', '±à?-', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (49, 1, 'delete', 'Delete', 'é?3y', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (50, 1, 'login_post_comments', 'You must be logged in to post comments.', '?ú±?D?μ???oó2??ü·¢±í?à??.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (51, 1, 'view_comments', 'View Comments', '?ˉàà?à??', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (52, 1, 'hide_comments', 'Hide Comments', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (53, 1, 'login_view_page', 'Sorry, you must be logged in to view this page!', '±§??,?ú±?D?μ???oó2??ü?ˉàà±?ò3!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (54, 1, 'wrong_password', 'Wrong Password', '?ü??′í?ó', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (55, 1, 'wrong_username', 'Wrong Username', 'ó??§?êo?′í?ó', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (56, 1, 'please_enter_username', 'Please enter a username.', '??ê?è?ó??§?êo?.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (57, 1, 'session_error', 'Couldn''t start session', '?T·¨???ˉ Session', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (58, 1, 'you_are_banned', 'You have been banned', '?úò?±?áDè???ó???μ¥', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (59, 1, 'ip_banned', 'Your IP address has been banned', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (60, 1, 'no_view_access', 'Sorry, your account does not have access to this section.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (61, 1, 'no_post_access', 'Sorry, your account does not have access to submit information.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (62, 1, 'no_download_access', 'Sorry, your account does not have access to downloads.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (63, 1, 'no_comment_access', 'Sorry, your account does not have access to post comments.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (64, 1, 'url_not_found', 'URL Not Found!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (65, 1, 'page_not_found', 'Page Not Found!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (66, 1, 'redirect_to_homepage', 'Click here to redirect to the homepage.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (67, 1, 'not_yet_activated', 'Your haven''t yet activated your account. Check your email for the activation instructions', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (68, 1, 'incorrect_vvc_code', 'Incorrect confirmation code', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (69, 1, 'enter_verify_code', 'Enter the code you see in the image above (case sensitive)', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (70, 2, 'previous_page', '« Previous Page', '?°ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (71, 2, 'next_page', 'Next Page »', '??ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (72, 2, 'page', 'Page', 'ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (73, 2, 'of', 'of', 'μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (74, 2, 'published', 'Published: ', '·¢2?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (75, 2, 'updated', 'Updated: ', '?üD?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (76, 2, 'discuss_article_in_forum', 'Discuss this article in the Forum!', '?ú??ì3à?ì????y??!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (77, 2, 'by', 'By', 'óé', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (78, 2, 'read_more', 'Read More...', '2é?′è?2?...', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (79, 2, 'previous', '« Previous', '« é?ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (80, 2, 'next', 'Next »', '??ò?ò3 »', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (81, 2, 'article_offline', 'This article is currently offline.', '?y?????°?Yê±1?±?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (82, 2, 'author', 'Author:', '×÷??:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (83, 2, 'title', 'Title:', '±êìa:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (84, 2, 'description', 'Description:', '?μ?÷:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (85, 2, 'article', 'Article:', '?y??:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (86, 2, 'submit_article', 'Submit Article', 'ìá??????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (87, 2, 'enter_name', 'Please enter your name.', '??ê?è??úμ?ó??§??.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (88, 2, 'enter_title', 'Please enter the title.', '??ê?è?±êìa.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (89, 2, 'enter_description', 'Please enter the description.', '??ê?è??μ?÷.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (90, 2, 'enter_article', 'Please enter an article.', '??ê?è??y??.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (91, 2, 'article_submitted', 'Thanks! Your article has been submitted.', '?DD??ú!?úμ?????ò?ìá??.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (92, 2, 'print', 'Print', '′òó?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (93, 2, 'email', 'Email', 'Email', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (94, 2, 'enter_recipient_email', 'Send this article to:', '·¢?í?a?a????μ?', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (95, 2, 'separate_with_commas', 'Separate multiple addresses with commas.', 'ó??oo?·?à??à??óê?tμ??·?££o', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (96, 2, 'enter_your_email', 'Enter your email address:', 'ê?è???μ?óê?tμ??·£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (97, 2, 'enter_comment', 'Enter an optional comment:', '????òaê?è??à??£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (98, 2, 'send_email', 'Send Email', '·¢?íóê?t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (99, 2, 'invalid_email', 'Please enter a valid email address.', '??ê?è?ò???óDD§μ?óê?tμ??·', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (100, 2, 'email_sent', 'The following article has been sent:', '??áD????ò??-±?·¢?í£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (101, 2, 'go_back', 'Click here to go back to the article.', 'μ??÷?aà?·μ??μ??a?a?????£', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (102, 2, 'email_not_sent', 'A system error occured. Your message was not sent.', 'ò????μí3′í?ó·¢éú,??μ?D??¢??óD±?·¢?í', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (103, 2, 'notify_email_from', 'Article Plugin', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (104, 2, 'notify_email_subject', 'New article submitted to your website!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (105, 2, 'notify_email_message', 'A new article has been submitted to your website.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (106, 2, 'notify_email_author', 'Author', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (107, 2, 'notify_email_title', 'Title', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (108, 2, 'views', 'Views', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (109, 3, 'by', 'By', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (110, 3, 'read_more', 'Read More...', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (111, 3, 'print', 'Print', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (112, 3, 'email', 'Email', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (113, 3, 'published', 'Published: ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (114, 3, 'updated', 'Updated: ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (115, 4, 'website_url', 'Website URL:', 'í??? URL:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (116, 4, 'name', 'Name:', 'ó??§??:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (117, 4, 'date', 'Posted:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (118, 4, 'website_name', 'Website Name:', 'í?????3?:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (119, 4, 'message', 'Message:', 'á???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (120, 4, 'submit_message', 'Submit Message', '·¢?íá???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (121, 4, 'reset', 'Reset', '????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (122, 4, 'no_username', 'Please fill out the username field.', '??ì?D′ó??§??.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (123, 4, 'no_message', 'Please fill out the message field.', '??ì?D′á???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (124, 4, 'message_too_long', 'Message length must be less than', 'á???×?êy3¤?è(×??ú)±?D?D?óú', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (125, 4, 'url_invalid', 'Website URL is invalid.', 'í???URL?TD§.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (126, 4, 'no_site_name', 'Please enter the site name of the url specified.', '??ê?è???ì?URLμ?í?????3?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (127, 4, 'repeat_comment', 'Repeat comment not posted.', '???′?à???T·¨·¢±í.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (128, 4, 'website', 'Website:', 'í???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (129, 4, 'previous', '« Previous', '« é?ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (130, 4, 'next', 'Next »', '??ò?ò3 »', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (131, 4, 'sign_guestbook', 'Click here to sign the guestbook!', 'μ??aà???è?·??íá???±?!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (132, 4, 'characters', 'characters', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (133, 6, 'full_name', 'Full Name:', 'è???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (134, 6, 'your_email', 'Your Email:', '?úμ?Email:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (135, 6, 'subject', 'Subject:', '?֓a:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (136, 6, 'message', 'Message:', 'á???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (137, 6, 'send_message', 'Send Message', 'ìá??á???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (138, 6, 'reset', 'Reset', '????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (139, 6, 'invalid_email', 'Invalid Email entered!', 'ê?è?μ?Email?TD§!', '', '#FF0000', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (140, 6, 'email_sent', 'Thanks! Your email has been sent!', '?DD??ú! ?úμ?Emailò?ìá??!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (141, 6, 'email_not_sent', 'A system error occured. Your message was not sent.', '·¢éú?μí3′í?ó,?úμ?á???éD?′ìá??!.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (142, 6, 'attachment', 'Attachment:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (143, 6, 'empty_fields', 'Error: One of the required field(s) is empty.', '', '', '#FF0000', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (144, 7, 'name', 'Name:', '??3?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (145, 7, 'comment', 'Comment:', '?à??:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (146, 7, 'say', 'Say', '?μ', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (147, 7, 'no_username', 'No username supplied!', '?′ìá1?ó??§??3?!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (148, 7, 'no_comment', 'No comment supplied!', '?′ìá1??à??1|?ü!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (149, 7, 'repeat_comment', 'Repeat comment not posted.', '???′?à???T·¨·¢±í.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (150, 7, 'view_history', 'View Message History', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (151, 8, 'posted_by', 'Posted by', '·¢±í???a', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (152, 9, 'user', 'User:', '?á?±:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (153, 9, 'posts', 'Posts:', '·¢±í:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (154, 10, 'my_account', 'My Account', '?òμ??êo?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (155, 10, 'welcome_back', 'Welcome back', '??ó-??à′', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (156, 10, 'logout', 'Log Out', '×¢?ú', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (157, 10, 'username', 'Username:', '?á?±?êo?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (158, 10, 'password', 'Password:', '?ü??:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (159, 10, 'remember_me', 'Remember Me', '×??ˉμ???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (160, 10, 'login', 'Login', 'μ???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (161, 10, 'not_registered', 'Not registered?', 'éD?′×¢2á?e?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (162, 10, 'register_now', 'Register now!', 'á¢?′×¢2á!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (163, 10, 'private_messages', 'Private Messages:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (164, 10, 'unread_total', ' Unread, Total ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (165, 10, 'new_priv_msg', 'You have a new private message.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (166, 10, 'title', 'Title:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (167, 10, 'sender', 'Sender:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (168, 10, 'click_ok', 'Click OK to view it, or cancel to hide this prompt.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (169, 10, 'open_msg', 'Open Message in New Window?', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (170, 10, 'new_priv_msg_title', 'New Private Message', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (171, 10, 'forgot_password', 'Forgot your password?', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (172, 10, 'admin_panel', 'Admin Panel', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (173, 11, 'no_changes_entered', 'No Changes Entered!', '×êá??T?üD?!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (174, 11, 'enter_valid_password', 'Please enter a new password that consists only of letters and numbers.', '??ê?è?óDD§μ??ü????ê?(???üóé×???oíêy×?×é3é).', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (175, 11, 'password_unmatched', 'The new password you entered did not match the new confirmed password.', 'á?′?ê?è?μ??ü??2??¥??,????D?è·è?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (176, 11, 'enter_valid_email', 'Please enter a valid email address.', '??ê?è?óDD§μ?Emailμ??·.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (177, 11, 'email_already_exists', 'email already exists, please try another.', 'Emailμ??·ò?′??ú,??3¢ê?ì?D′áííaò???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (178, 11, 'profile_updated', 'User Profile Updated!', 'ó??§×êá?ò??üD?!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (179, 11, 'new_password', 'New Password:', 'D? ?ü ??:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (180, 11, 'confirm_password', 'Confirm New Password:', '??D?ê?è?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (181, 11, 'new_email', 'New Email:', 'D?μ?Emailμ??·:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (182, 11, 'update_profile', 'Update Profile', '?üD?×êá?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (183, 11, 'visit_cp', 'Click here to visit your control panel.', 'μ??÷??è???????°?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (184, 12, 'user_name', 'User Name:', '?á?±?êo?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (185, 12, 'password', 'Password:', '?ü??:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (186, 12, 'password_again', 'Enter Password Again:', '???ù′?ê?è??ü??ò?1?è·è?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (187, 12, 'email', 'Email:', 'Email:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (188, 12, 'email_again', 'Enter Email Again:', '???ù′?ê?è?Emailò?1?è·è?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (189, 12, 'register', 'Register', '×¢2á?á?±', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (190, 12, 'reset_form', 'Reset Form', '??D?ì?D′', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (191, 12, 'enter_alnum_username', 'Please enter a username that consists only of letters and numbers.', '??ó?ó¢??×???ó?°¢à-2?êy×?×é3é?úμ??á?±?êo?.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (192, 12, 'enter_alnum_password', 'Please enter a password that consists only of letters and numbers.', '??ó?ó¢??×???ó?°¢à-2?êy×?×é3é?úμ??ü??.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (193, 12, 'password_unmatched', 'Your confirmed password does not match the entered password.', '?úè·è??ü??ó??-?ü??2?í?.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (194, 12, 'unvalid_email', 'Please enter a valid email address.', '??ê?è?óDD§μ?Emailμ??·.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (195, 12, 'email_unmatched', 'The email you entered did not match the confirmed email.', '?úê?è?μ?Emailó?è·è?Email2?í?.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (196, 12, 'username_exists', 'Username already exists, please try another.', '?á?±?êo?ò?′??ú£???ê?è??????êo?.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (197, 12, 'email_exists', 'Email already exists, please try another.', 'Email ò?′??ú£???ê?è?????Email.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (198, 12, 'register_success', 'Thank you for registering!', '?DD??úμ?×¢2á!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (199, 12, 'already_logged_in', 'You are already logged in as:', '?ú′??úò??-μ???á?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (200, 12, 'logout', 'Click here if you wish to log out.', 'è?òa×¢?ú??μ??aà?à?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (201, 12, 'register_now', 'Click here to Register!', 'á¢?′×¢2á!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (202, 12, 'email_banned', 'Your Email address has been banned', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (203, 12, 'pwd_reset', 'Reset My Password', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (204, 12, 'email_not_found', 'No account could be found that matched the entered email address:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (205, 12, 'email_subject', 'Your new Password', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (206, 12, 'email_message', 'Here is your new password: ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (207, 12, 'password_reset_success', 'Your password was reset successfully. An email will arrive shortly with your new login details.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (208, 12, 'activation_required', 'Thank you for registering. An email has been sent to your email address with instructions on how to activate your new account', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (209, 12, 'email_subject_activation', 'Thanks for registering', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (210, 12, 'email_message_activation', 'Thanks for registering with us. Please click the following link to activate your account.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (211, 12, 'validation_key_not_found', 'Your account was not found. Please ensure you copied the link correctly.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (212, 12, 'already_validated', 'Your account has already been activated. You may login using your username and password', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (213, 12, 'validation_success', 'Thank you for activating your account. You may now login using your username and password', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (214, 16, 'sections', 'Sections:', 'àà±e:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (215, 16, 'submitting_link', 'Submitting Link', '?y?úìá??í???á??ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (216, 16, 'your_name', 'Your Name:', '?úμ???3?:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (217, 16, 'website_name', 'Website Name:', 'í?????3?:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (218, 16, 'website_url', 'Website URL:', 'í??? URL:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (219, 16, 'description', 'Description:', 'í????μ?÷:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (220, 16, 'submit_link', 'Submit Link', 'ìá??í???á??ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (221, 16, 'submit_a_link', 'Click here to submit a link to this section!', 'μ??aà?,?ú?aàà±e???óè?D?μ?í???á??ó!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (222, 16, 'submitted_by', 'Submitted by:', 'ìá1????a:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (223, 16, 'previous_links', '« Previous Links', '« é?ò???í???á??ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (224, 16, 'more_links', 'More Links »', '?ü?àí???á??ó »', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (225, 16, 'enter_name', 'Please enter your name.', '??ê?è??úμ?D???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (226, 16, 'enter_site_name', 'Please enter the name of the site.', '??ê?è?í?????3?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (227, 16, 'enter_site_url', 'Please enter the url of the site.', '??ê?è?í???URL.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (228, 16, 'url_invalid', 'Website URL is invalid.', 'í???URL?TD§.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (229, 16, 'enter_description', 'Please enter the description.', '??ê?è?í????μ?÷.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (230, 16, 'link_submitted', 'Thanks! Your link has been submitted.', '?DD??ú!?úμ?í???á??óò?ìá??.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (231, 16, 'notify_email_from', 'Link Directory Plugin', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (232, 16, 'notify_email_subject', 'New link submitted to your website!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (233, 16, 'notify_email_message', 'A new link has been submitted to your link directory.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (234, 16, 'notify_email_author', 'Author', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (235, 16, 'notify_email_website', 'Website Name', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (236, 16, 'notify_email_url', 'Website URL', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (237, 16, 'notify_email_description', 'Description', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (238, 17, 'sections', 'Sections:', 'àà±e:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (239, 17, 'no_gif_support', 'Images with the .gif extension are not supported.', '2??§3?.gif í???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (240, 17, 'previous_images', '« Previous Images', '« ?°ò???í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (241, 17, 'more_images', 'More Images »', '?ü?àí??? »', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (242, 17, 'submitted_by', 'Submitted by:', 'ìá1????a:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (243, 17, 'submit_an_image', 'Submit an image to this section.', 'μ??aà?à?,?ú?aàà±e???óè?D?í???!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (244, 17, 'submitting_image', 'Submitting Image', '?y?úìá??í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (245, 17, 'your_name', 'Your Name:', '?úμ?D???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (246, 17, 'description', 'Description:', 'í????μ?÷:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (247, 17, 'thumbnail', 'Thumbnail:', '??í?:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (248, 17, 'image', 'Image:', 'í???:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (249, 17, 'submit_image', 'Submit Image', 'ìá??í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (250, 17, 'image_title', 'Title:', 'ìa??:', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (251, 17, 'enter_title', 'Please enter a title.', '??ê?è?ìa??.', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (252, 17, 'enter_author', 'Please enter the author''s name.', '??ê?è?×÷??D???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (253, 17, 'select_image', 'Please select an image.', '??????í???.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (254, 17, 'select_thumbnail', 'Please select a thumbnail.', '??????????í?.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (255, 17, 'enter_description', 'Please enter a description.', '??ê?è?í????μ?÷.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (256, 17, 'image_submitted', 'Thanks! Your image has been submitted. ', '?DD??ú! ?úμ?í???ò??-ìá??. ', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (257, 17, 'previous_image', '« Previous Image', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (258, 17, 'next_image', 'Next Image »', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (259, 17, 'invalid_image_type', 'Invalid image type.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (260, 17, 'views', 'Views', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (261, 17, 'jump_to', 'Jump To...', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (262, 17, 'comments', 'Comments', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (263, 17, 'comment', 'Comment', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (264, 17, 'image2', 'Image', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (265, 17, 'images', 'Images', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (266, 17, 'images2', 'Images:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (267, 17, 'notify_email_from', 'Image Gallery Plugin', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (268, 17, 'notify_email_subject', 'New image submitted to your website!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (269, 17, 'notify_email_message', 'A new image has been submitted to your image gallery.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (270, 17, 'notify_email_author', 'Author', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (271, 17, 'notify_email_title', 'Title', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (272, 17, 'notify_email_description', 'Description', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (273, 10000, 'About_Languages', 'About Languages', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (274, 10000, 'About_neirong', '/r/nSubdreamer and many of it''s plugins have various sentences that are displayed on your website.From here you can change these sentences to another language or rephrase them.You can also change their font, color, and size. Please refer to this color chart when changing colors.', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (275, 10000, 'Default_Phrase', 'Default Phrase', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (276, 10000, 'Custom_Phrase', 'Custom Phrase', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (277, 10000, 'Font', 'Font', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (278, 10000, 'Color', 'Color', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (279, 10000, 'Size', 'Size', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (280, 10000, 'Bold', 'Bold', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (281, 10000, 'Italic', 'Italic', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (282, 10000, 'Underline', 'Underline', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (283, 10000, 'Phrases', 'Phrases', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (284, 10000, 'Phrases_Changed', 'Phrases Changed or Translated', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (285, 10000, 'Edit_Language', 'Edit Language', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (286, 10000, 'Language_File', 'Language File', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (287, 10000, 'Language_Selection', 'Language Selection', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (288, 10000, 'Language_shuoming', 'You can use Language Files to easily translate many of Subdreamer''s frontend phrases/r/nto another language. Language files will not translate every phrase, such as the ones from/r/ndownloaded plugins.

', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (289, 10000, 'Translate', 'Translate', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (290, 10000, 'Export_Custom', 'Export Custom Language ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (291, 10000, 'Main_Plugins', 'Main Plugins', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (292, 10000, 'Cloned_Plugins', 'Cloned Plugins', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (293, 10000, 'Downloaded_Plugins', 'Downloaded Plugins', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (294, 10000, 'Language', 'Language', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (295, 10000, 'Language_Settings', 'Language Settings', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (296, 10000, 'enter_language_name', 'Please enter the language name you are exporting:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (297, 10000, 'Character_Set', 'Character Set', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (298, 10000, 'Enter_charset', 'Enter the charset for the language you are exporting:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (299, 10000, 'Version_Number', 'Version Number', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (300, 10000, 'enter_version_number', 'You can enter a version number of the language file you are about to export: (Optional) ', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (301, 10000, 'Author', 'Author', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (302, 10000, 'leave_your_name', 'You can leave your name in the language file if you enter it here: (Optional)', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (303, 10000, 'Include_Default_Phrases', 'Include Default Phrases', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (304, 10000, 'Checking_this_option', 'Checking this option will include the default phrases that do not have a custom phrase filled in.
This option should normally be checked unless you only want to export your custom phrases.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (305, 10000, 'Include_Default', 'Include Default Phrases', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (306, 10000, 'Export_Custom_Language', 'Export Custom Language', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (307, 10000, 'Include_Default_Phrases1', 'Include Default Phrases', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (308, 10001, 'Skin_Name', 'Skin Name:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (309, 10001, 'Number_Designs', 'Number of Designs:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (310, 10001, 'Author_Name', 'Author''s Name:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (311, 10001, 'Install_New_Skins', 'Install New Skins', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (312, 10001, 'Switch_Skins', 'Switch Skins', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (313, 10001, 'Uninstall_Skin', 'Uninstall Skin', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (314, 10001, 'Current_Skin', 'Current Skin', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (315, 10001, 'Switch_Skins1', 'Switch Skins', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (316, 10001, 'Cancel', 'Cancel', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (317, 10001, 'restore_previously_backup', '              If possible, restore a previously saved backup of site''s layout?/r/n              Each time a switch is made to a different skin, the current set of/r/n              plugin positions for all categories (and their used designs) is/r/n              backed up for later reactivation.
/r/n             
/r/n              If this option is checked and a previously made backup (upon/r/n              Switch Skin) for the new selected skin exists, the last/r/n              set of plugin positions for all (existing) categories and each/r/n              category''s design setting are restored.

/r/n/r/n              Note: Only settings of existing categories are being/r/n              restored.


', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (318, 10001, 'Remove_all_backup', '              Remove all backup sets of plugin layouts?
/r/n              Warning: If checked, this will clear (only) the custom/r/n              backup tables regardless of above options or what skin is being/r/n              selected!
', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (319, 10001, 'Save_Plugin_Positions', '              Save Plugin Positions/r/n             

/r/n              Enabling this option will help speed up the transition of switching/r/n              skins by maintaining the current position of each plugin. However,/r/n              you may need to rearrange the plugin positions due to the diverse layouts of each skin.

/r/n/r/n              Warning: Disabling this option will reset all plugin positions/r/n              unless the below option is checked!

/r/n', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (320, 10001, 'skin_uploaded', ' A skin has been uploaded incorrectly.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (321, 10001, 'uploaded_files_folder', 'The skin''s uploaded files are currently in this folder:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (322, 10001, 'probably_folder', 'However, they should probably be in this folder:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (323, 13, 'sections', 'Sections', '2??t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (324, 13, 'click_here_to_submit_file', 'Click here to submit a File', 'μ??÷?aà?à′ìá?????t', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (325, 13, 'section_offline', 'This section is currently offline or does not exist.', '?a??2??tμ±?°à????ò2?′??ú', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (326, 13, 'file_offline', 'This file is currently offline or does not exist.', '?a?????tμ±?°à????ò2?′??ú', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (327, 13, 'search_results', 'Search Results', '???÷?á1?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (328, 13, 'update', 'Update', '?üD?:', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (329, 13, 'search', 'Search', '???÷', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (330, 13, 'view_image', 'View Image', '?′í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (331, 13, 'file_size', 'File Size:', '???t′óD?£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (332, 13, 'author', 'Author:', '×÷??£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (333, 13, 'date_added', 'Date Added:', '?ó??ê±??£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (334, 13, 'date_updated', 'Date Updated:', '?üD?ê±??£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (335, 13, 'download_count', 'Download Count:', '????êy£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (336, 13, 'rating', 'Rating:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (337, 13, 'download_now', 'Download Now', '???ú????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (338, 13, 'no_file_to_download', 'No file to download', '??óD???t?é1?????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (339, 13, 'more_info', 'More Info', '?ü?àD??¢', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (340, 13, 'date', 'Date', 'è??ú', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (341, 13, 'title', 'Title', '±êìa ', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (342, 13, 'rating2', 'Rating', '?ù?ê', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (343, 13, 'num_of_downloads', '# of Downloads', '????êy', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (344, 13, '5', '5', '5', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (345, 13, '10', '10', '10', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (346, 13, '20', '20', '20', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (347, 13, 'description', 'Description', '?èê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (348, 13, 'author_name', 'Author Name', '×÷????×?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (349, 13, 'file_submission_not_allowed', 'File submission is not allowed.', '?y±?ìá??μ????t2?±??êDí', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (350, 13, 'select_file', 'Select the File:', '?????a?????t£o', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (351, 13, 'file_title', 'File Title:', '???t±êìa', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (352, 13, 'file_description', 'File Description:', '???t?èê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (353, 13, 'optional_thumbnail', 'Optional Thumbnail:', '?é??μ?D?í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (354, 13, 'optional_image', 'Optional Image:', '?é??μ?í???£o', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (355, 13, 'submit_file', 'Submit File', 'ìá?????t', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (356, 13, 'file_submitted', 'Thanks! Your file has been submitted.', 'D?D?£???μ?????ò??-±?ìá??.', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (357, 13, 'needs_approval', 'It will be displayed in the directory once approved.', '?ü??±???ê??ú??±?è??éμ?????à?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (358, 13, 'unknown', 'Unknown', '?′?aμ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (359, 13, 'select_rating', 'Select Your Rating', '??????μ?êy?ê', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (360, 13, 'excellent', 'Excellent!', '??o?μ?!', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (361, 13, 'very_good', 'Very Good', '·?3£o?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (362, 13, 'good', 'Good', 'o?μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (363, 13, 'fair', 'Fair', 'o?μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (364, 13, 'poor', 'Poor', '2?ì?o?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (365, 13, 'rate_it', 'Rate It!', '£o', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (366, 13, 'members_cant_vote', 'Members can not vote.', '3é?±2??üí??±', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (367, 13, 'guests_cant_vote', 'Guests can not vote.', '1y?í2??üí??±', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (368, 13, 'already_voted', 'You have already rated this file.', '??ò??-í??±á?', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (369, 13, 'thanks_for_voting', 'Thanks for voting!', 'D?D?í??±', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (370, 13, 'previous', 'Previous', '?°ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (371, 13, 'next', 'Next', '??ò?ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (372, 13, 'page', 'Page', 'ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (373, 13, 'of', 'of', 'μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (374, 13, 'members_only', 'You have to be a member to download this file.', '??ê?3é?±2??ü?????a?????t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (375, 13, 'description2', 'Description:', '?èê?£o', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (376, 13, 'sort_by', 'Sort by:', '°′ê2?′·?àà', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (377, 13, 'show', 'Show:', '?1ê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (378, 13, 'search_by', 'Search by:', '°′ê2?′???÷', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (379, 13, 'search_text', 'Search Text:', '???÷??±?£o', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (380, 13, 'sections', 'Sections:', '2??t', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (381, 13, 'votes', 'votes', 'í??±', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (382, 13, 'agree', 'I Agree', '?òí?òa', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (383, 13, 'disagree', 'Back', '2?í?òa', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (384, 13, 'must_agree', 'You must agree to the following license agreement to download this file', '??±?D?í?òa??áDDí?é2??ü?????a?????t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (385, 13, 'upload_error', 'Upload Error', '?ó??′í?ó', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (386, 13, 'file_too_big', 'The file you are trying to upload is too big.', '??ê?í??ó??μ????tì?′ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (387, 13, 'file_upload_error', 'There was an error trying to upload your file. Please try again.', '???ó?????tê±2úéúò???′í?ó£?????ê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (388, 13, 'image_too_big', 'The image you are trying to upload is too big.', '??ê?í??ó??μ?í???ì?′ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (389, 13, 'image_upload_error', 'There was an error trying to upload your image. Please try again.', '??ê?í??ó?????t2úéúò???′í?ó£?????ê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (390, 13, 'thumbnail_too_big', 'The thumbnail you are trying to upload is too big.', '??ê?í??ó??μ?D?í???ì?′ó', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (391, 13, 'thumbnail_upload_error', 'There was an error trying to upload your thumbnail. Please try again.', '??ê?í??ó??D?í???ê±2úéúò???′í?ó£?????ê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (392, 13, 'error_invalid_file_ext', 'Cannot upload the selected file because the file extension is not allowed.', 'òò?a?a?????tà??1??2?±??êDí£?2??ü?ó???a???ü', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (393, 13, 'unknown_image_type', 'Unknown Image Format', '?′?aμ?í?????ê?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (394, 13, 'no_section_access', 'You do not have access to this section', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (395, 13, 'file_dates', 'File Dates', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (396, 13, 'click_to_view', 'Click to view image...', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (397, 13, 'date_updated_hint', '
Empty = unchanged. //"now//" = set to current date; //"0//" = reset date.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (398, 13, 'file_thumbnail_error', 'Failed to create thumbnail', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (399, 13, 'section', 'Section', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (400, 13, 'edit_file', 'Edit File', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (401, 13, 'add_file_version', 'Add new File version', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (402, 13, 'update_file_settings', 'Update File Settings', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (403, 13, 'delete_thumbnail', 'Delete Thumbnail', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (404, 13, 'delete_image', 'Delete Image', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (405, 13, 'version', 'Version:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (406, 13, 'optional_thumbnail_and_image', 'Optional Thumbnail and Image', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (407, 13, 'file_edit_approval', 'Note: File changes are due to approval by website''s administration.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (408, 13, 'file_submit_approval', 'Note: File uploads are due to approval by website''s administration.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (409, 13, 'submit_create_thumbnail', 'Create thumbnail if uploaded file is an image?', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (410, 13, 'submit_create_thumb_hint', '(if checked, existing thumbnail will be replaced)', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (411, 13, 'submit_create_thumb_hint2', '(when checked a specified thumbnail will be ignored)', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (412, 13, 'related_files', 'Related Files', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (413, 13, 'file_standalone_option', 'File versions are standalone files?', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (414, 13, 'current_file_version', 'Current File Version', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (415, 13, 'download_locations', 'Download Locations for', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (416, 13, 'download_mirror', 'Mirror', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (417, 13, 'standalone_option', '', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (418, 13, 'back', 'Back', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (419, 13, 'file_online', 'File is online?', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (420, 13, 'yes', 'Yes', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (421, 13, 'no', 'No', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (422, 13, 'edit_author_edit', 'Note: Authorname editing is case-sensitive.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (423, 13, 'edit_file_storage', 'File storage location:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (424, 13, 'delete_fileversion', 'Delete File Version', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (425, 13, 'delete_fileversion_error', 'File Version cannot be deleted!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (426, 13, 'delete_fileversion_success', 'File Version deleted.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (427, 13, 'errors_header', 'Please note the following errors:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (428, 13, 'custom_mod_version', '1.1.8', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (429, 14, 'message', 'Subscribe to our Newsletter!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (430, 14, 'enter_email', 'Your Email:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (431, 14, 'unsubscribe', 'Unsubscribe', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (432, 14, 'subscribe', 'Submit', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (433, 14, 'user_subscribed', 'Thanks for subscribing!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (434, 14, 'user_unsubscribed', 'You are no longer subscribed.', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (435, 14, 'invalid_email', 'Please enter a valid email.', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (436, 14, 'already_subscribed', 'You have already subscribed.', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (437, 820, 'New Entries:', 'NEW BLOG ENTRIES:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (438, 820, 'My Entries:', 'MY BLOG ENTRIES:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (439, 820, 'Search Blog:', 'SEARCH BLOGS:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (440, 820, 'Blogs Listed:', 'BLOGS LISTED:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (441, 820, 'There are presently', 'There are presently', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (442, 820, 'entries listed.', 'entries listed.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (443, 820, 'Entry', 'Entry', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (444, 820, 'Listed', 'Listed', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (445, 820, 'Status', 'Status', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (446, 820, 'There are no listings', 'No Listings', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (447, 820, 'Blog', 'Blog', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (448, 820, 'Posted On', 'posted on:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (449, 820, 'Random Entry:', 'Random Entry:', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (476, 164, 'pay_with_paypal', 'Pay with PayPal', 'ó?paypal????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (477, 164, 'pay_with_google', 'Pay with Google', 'ó?google????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (478, 164, 'checkout', 'Checkout', 'D§?é', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (479, 164, 'add_to_cart', 'Add to Cart', '?óμ?1o??3μ', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (480, 164, 'update_cart', 'Update Cart', '?üD?1o??3μ', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (481, 164, 'items_in_cart', 'Items(s) in Cart', '?t???·?ú1o??3μ?D', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (482, 164, 'in_stock', 'In Stock: ', '?a′?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (483, 164, 'out_of_stock', 'OUT OF STOCK', 'out_of_stock', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (484, 164, 'quantity_adjusted_to', 'Quantity Adjusted to', 'μ÷??êyá?μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (485, 164, 'reset_to_zero', 'Not enough on hand, reset to zero. ', '????1éá?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (486, 164, 'price_needed', 'A price must be entered', '±?D?ê?è?????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (487, 164, 'negative_inventory', 'You may not have negative inventory', '?oμ?′???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (488, 164, 'product_name_required', 'A name is required for your product: ', '??μ?éì?·±?D?óD??3?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (489, 164, 'product_name', 'Product Name', 'éì?·??3?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (490, 164, 'cost', 'Cost: ', '????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (491, 164, 'total', 'Total: ', '×ü??', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (492, 164, 'subtotal', 'Subtotal: ', 'D???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (493, 164, 'qty_on_hand', 'QTY on Hand', '??óDêyá?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (494, 164, 'image', 'Image ', 'í???', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (495, 164, 'description', 'Description ', '?μ?÷', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (496, 164, 'catalog', 'Catalog', '????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (497, 164, 'shopping_cart', 'Shopping Cart', '1o??3μ', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (498, 164, 'add_product', 'Add Product', '?óéì?·', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (499, 164, 'update_product', 'Update Product', '?üD?éì?·', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (500, 164, 'delete_product', 'Delete Product', 'é?3yéì?·', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (501, 164, 'settings', 'Settings', 'éè??', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (502, 164, 'info', 'Info', 'D??¢', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (503, 164, 'create', 'Create', '??×÷', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (504, 164, 'sections', 'Sections', '2??t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (505, 164, 'add_section', 'Add Section', '?ó2??t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (506, 164, 'update_section', 'Update Section', '?üD?2??t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (507, 164, 'update', 'Update', '?üD?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (508, 164, 'subsection_of', 'Sub Section of', '×ó2??t', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (509, 164, 'sort_by', 'Sort By', '°′ê2?′·?àà', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (510, 164, 'section_name', 'Section Name', '2??t??3?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (511, 164, 'options', 'Options:', '????', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (512, 164, 'active', 'Active', '????μ?', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (513, 164, 'product_page', 'Product Page', 'éì?·ò3', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (514, 17, 'custom_mod_version', '1.0.1', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (515, 0, 'website_url', 'Website URL:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (516, 0, 'name', 'Name:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (517, 0, 'website_name', 'Website Name:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (518, 0, 'message', 'Message:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (519, 0, 'submit_message', 'Submit Message', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (520, 0, 'reset', 'Reset', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (521, 0, 'no_username', 'Please fill out the username field.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (522, 0, 'no_message', 'Please fill out the message field.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (523, 0, 'message_too_long', 'Message length must be less than', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (524, 0, 'url_invalid', 'Website URL is invalid.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (525, 0, 'no_site_name', 'Please enter the site name of the url specified.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (526, 0, 'repeat_comment', 'Repeat comment not posted.', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (527, 0, 'website', 'Website:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (528, 0, 'previous', '« Previous', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (529, 0, 'next', 'Next »', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (530, 0, 'sign_guestbook', 'Click here to sign the guestbook!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (531, 0, 'full_name', 'Full Name:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (532, 0, 'your_email', 'Your Email:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (533, 0, 'subject', 'Subject:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (534, 0, 'message', 'Message:', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (535, 0, 'send_message', 'Send Message', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (536, 0, 'reset', 'Reset', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (537, 0, 'enter_name', 'Please enter your name!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (538, 0, 'enter_email', 'Please enter an Email Address!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (539, 0, 'enter_subject', 'Please enter a subject for the Email!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (540, 0, 'enter_message', 'Please enter a message!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (541, 0, 'invalid_email', 'Invalid Email entered!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (542, 0, 'email_sent', 'Thanks! Your email has been sent!', '', '', '', '', 0, 0, 0);
INSERT INTO `sd_phrases` VALUES (543, 0, 'email_not_sent', 'A system error occured. Your message was not sent.', '', '', '', '', 1, 0, 0);
INSERT INTO `sd_phrases` VALUES (544, 0, 'attachment', 'Attachment:', '', '', '', '', 1, 0, 0);

-- --------------------------------------------------------

--
-- 表的结构 `sd_plugins`
--

CREATE TABLE `sd_plugins` (
  `pluginid` int(10) unsigned NOT NULL default '0',
  `name` varchar(64) NOT NULL default '',
  `displayname` varchar(64) NOT NULL default '',
  `version` varchar(10) NOT NULL default '',
  `pluginpath` varchar(64) NOT NULL default '',
  `settingspath` varchar(64) NOT NULL default '',
  `authorname` varchar(32) NOT NULL default '',
  `authorlink` int(10) unsigned NOT NULL default '0',
  `settings` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`pluginid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_plugins`
--

INSERT INTO `sd_plugins` VALUES (1, '--empty--', '', '', 'p1_empty/empty.jsp', '', 'subdreamer', 1, 19);
INSERT INTO `sd_plugins` VALUES (2, 'Articles', 'Articles', '2.0', 'p2_news/news.jsp', 'p2_news/p2_settings.jsp', 'subdreamer', 1, 27);
INSERT INTO `sd_plugins` VALUES (3, 'Latest Articles', 'Latest Articles2', '2.0', 'p3_latestnews/latestnews.jsp', 'p3_latestnews/p3_settings.jsp', 'subdreamer', 1, 17);
INSERT INTO `sd_plugins` VALUES (4, 'Guestbook', 'Guestbook', '2.0', 'p4_guestbook/guestbook.jsp', 'p4_guestbook/p4_settings.jsp', 'subdreamer', 1, 19);
INSERT INTO `sd_plugins` VALUES (6, 'Contact Form', 'Contact Form', '2.0', 'p6_contact_form/contactform.jsp', 'p6_contact_form/p6_settings.jsp', 'subdreamer', 1, 19);
INSERT INTO `sd_plugins` VALUES (7, 'Chatterbox', 'Chatterbox', '2.0', 'p7_chatterbox/chatterbox.jsp', 'p7_chatterbox/p7_settings.jsp', 'subdreamer', 1, 19);
INSERT INTO `sd_plugins` VALUES (10, 'MI - Login Panel', 'Login Panel', '2.0', 'p10_mi_loginpanel/loginpanel.jsp', 'p10_mi_loginpanel/p10_settings.jsp', 'subdreamer', 1, 17);
INSERT INTO `sd_plugins` VALUES (15, 'Random Picture', 'Random Picture1', '1.1', 'p15_randompic/randompic.jsp', 'p15_randompic/settings.jsp', 'Samurai', 5, 17);
INSERT INTO `sd_plugins` VALUES (17, 'Image Galleryl', 'Image Gallery', '2.0', 'p17_image_gallery/imagegallery.jsp', 'p17_image_gallery/p17_setting.jsp', 'subdreamer', 1, 27);
INSERT INTO `sd_plugins` VALUES (42, 'Hitcounter', 'Hitcounter', '1.0', 'p42_hitcounter/hitcounter.jsp', 'p42_hitcounter/settings.jsp', 'RvDam', 4281, 17);
INSERT INTO `sd_plugins` VALUES (96, 'Clock/Calendar', 'Clock/Calendar', '1.0', 'p96_flashclock/p96_flashclock.jsp', 'p96_flashclock/p96_settings.jsp', 'abcohen', 3611, 17);

-- --------------------------------------------------------

--
-- 表的结构 `sd_pluginsettings`
--

CREATE TABLE `sd_pluginsettings` (
  `settingid` int(10) unsigned NOT NULL auto_increment,
  `pluginid` int(10) unsigned NOT NULL default '0',
  `groupname` varchar(100) NOT NULL default 'Options',
  `title` varchar(100) NOT NULL default '',
  `description` mediumtext NOT NULL,
  `input` mediumtext NOT NULL,
  `value` mediumtext NOT NULL,
  `displayorder` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`settingid`),
  KEY `pluginid` (`pluginid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=334 ;

--
-- 导出表中的数据 `sd_pluginsettings`
--

INSERT INTO `sd_pluginsettings` VALUES (1, 2, 'Article Display Settings', '', 'Display Title', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (2, 2, 'Article Display Settings', '', 'Display Author', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (3, 2, 'Article Display Settings', '', 'Display Creation Date', 'yesno', '1', 3);
INSERT INTO `sd_pluginsettings` VALUES (4, 2, 'Article Display Settings', '', 'Display Updated Date', 'yesno', '1', 4);
INSERT INTO `sd_pluginsettings` VALUES (5, 2, 'Article Display Settings', '', 'Display Print Article Link', 'yesno', '1', 5);
INSERT INTO `sd_pluginsettings` VALUES (6, 2, 'Article Display Settings', '', 'Display Email Article Link', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (7, 2, 'Article Display Settings', '', 'Display Description Inside Article', 'yesno', '0', 7);
INSERT INTO `sd_pluginsettings` VALUES (8, 2, 'Article Display Settings', '', 'Display Smilie Images', 'yesno', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (9, 2, 'Article Display Settings', '', 'Display User Comments', 'yesno', '1', 9);
INSERT INTO `sd_pluginsettings` VALUES (10, 2, 'Article Display Settings', '', 'Display Views Count', 'yesno', '0', 10);
INSERT INTO `sd_pluginsettings` VALUES (11, 2, 'Article Display Settings', '', 'Display on main page listing', 'yesno', '1', 11);
INSERT INTO `sd_pluginsettings` VALUES (12, 2, 'Article Display Settings', '', 'Display as Sticky', 'yesno', '0', 12);
INSERT INTO `sd_pluginsettings` VALUES (13, 2, 'Options', 'Article Notification', 'This email address will receive an email message when a new article is submitted from a user/guest:
Leave this blank if you prefer not to receive an email.
/r/nSeparate multiple addresses with commas.', 'text', '', 1);
INSERT INTO `sd_pluginsettings` VALUES (14, 2, 'Options', 'Auto Approve News', 'Automatically approve user submitted news items?', 'yesno', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (15, 2, 'Options', 'Enable Email Articles', 'Allow users to email articles to a friend?', 'yesno', '1', 3);
INSERT INTO `sd_pluginsettings` VALUES (16, 2, 'Options', 'Require VVC Code', 'Require users to enter a Visual Verify Code to email to a friend?', 'yesno', '1', 4);
INSERT INTO `sd_pluginsettings` VALUES (17, 3, 'Options', 'Limit', 'The Latest News plugin will display links to the most recent news on your site. Enter the number of links to be shown:', 'text', '10', 1);
INSERT INTO `sd_pluginsettings` VALUES (18, 3, 'Options', 'Category Targeting', 'Only display the latest news of the category which the latest news plugin resides in. Include Categories or Matching Categories will not work if targeting is on.', 'yesno', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (19, 3, 'Options', 'Include Categories', 'Enter the ID''s of the categories you want to select latest news from, separate values with comma. Leave empty to select news from all categories. It can also be used together with the Matching Categories option.', 'text', '', 3);
INSERT INTO `sd_pluginsettings` VALUES (20, 3, 'Options', 'Matching Categories', 'This option makes it possible to to select latest news from the category of your choice, separate values with comma. This will only work together with the Include Categories option. If the Include Categories has the value ''1, 3'' and this field has the value ''2, 6'' it means: If this plugin is placed in category 1, display latest news from category 2. If the plugin is placed in category 3, display latest news from category 6. Leave this field empty if you don''t want to use this option.', 'text', '', 4);
INSERT INTO `sd_pluginsettings` VALUES (21, 3, 'Options', 'Sorting', 'How would you like your articles to be sorted (the latest news plugin always selects the latest news, but this option makes it possible to sort within those articles and within groups if you are using the Grouping option below)?', '', 'newest', 5);
INSERT INTO `sd_pluginsettings` VALUES (22, 3, 'Options', 'Display Category Name', 'Display category name to the right of each news title?', 'yesno', '0', 6);
INSERT INTO `sd_pluginsettings` VALUES (23, 3, 'Options', 'Display Description', 'Display description under each news title?', 'yesno', '0', 7);
INSERT INTO `sd_pluginsettings` VALUES (24, 3, 'Options', 'Read More', 'Display ''Read more...'' link for each news article (it will use the language settings for the news plugin)?', 'yesno', '0', 8);
INSERT INTO `sd_pluginsettings` VALUES (25, 3, 'Options', 'Display Author', 'Display author name under each news article?', 'yesno', '0', 9);
INSERT INTO `sd_pluginsettings` VALUES (26, 3, 'Options', 'Display Creation Date', 'Display creation date under each news article?', 'yesno', '0', 10);
INSERT INTO `sd_pluginsettings` VALUES (27, 3, 'Options', 'Display Updated Date', 'Display updated date under each news article?', 'yesno', '0', 11);
INSERT INTO `sd_pluginsettings` VALUES (28, 3, 'Options', 'Display Print Article Option', 'Display the print article option for your readers?', 'yesno', '0', 12);
INSERT INTO `sd_pluginsettings` VALUES (29, 3, 'Options', 'Display Email Article Option', 'Display the email article option for your readers?', 'yesno', '0', 13);
INSERT INTO `sd_pluginsettings` VALUES (30, 3, 'Options', 'Bold Title', 'Do you want the title of each news article to be bold?', 'yesno', '0', 14);
INSERT INTO `sd_pluginsettings` VALUES (31, 3, 'Options', 'Title Link', 'Do you want to convert the title of each news article into a link?', 'yesno', '1', 15);
INSERT INTO `sd_pluginsettings` VALUES (32, 3, 'Options', 'Grouping', 'How would you like your articles to be grouped?', '', 'nothing', 16);
INSERT INTO `sd_pluginsettings` VALUES (33, 3, 'Options', 'Category Link', 'Do you want to use the category name as a link to the category? This will only work if you group articles by category name or if you choose do display category names to the right of each article.', 'yesno', '0', 17);
INSERT INTO `sd_pluginsettings` VALUES (34, 3, 'Options', 'Group Separator', 'Add or remove tags if you want change the space between groups of articles.', 'text', '
', 18);
INSERT INTO `sd_pluginsettings` VALUES (35, 3, 'Options', 'Group/Article Separator', 'Add or remove tags if you want to change the space between group header and articles.', 'text', '
', 19);
INSERT INTO `sd_pluginsettings` VALUES (36, 3, 'Options', 'News Article Separator', 'Add or remove tags if you want to change the space between news articles (only works when grouping is off).', 'text', '
', 20);
INSERT INTO `sd_pluginsettings` VALUES (37, 4, 'Options', 'Enable Smilies', 'If you enable smilies, then certain combinations of characters will change into images.', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (38, 4, 'Options', 'Messages Per Page', 'Enter the number of messages you would you like to see in the guesbook:', 'text', '5', 3);
INSERT INTO `sd_pluginsettings` VALUES (39, 4, 'Options', 'Message Length', 'Please enter the maximum length a message can be: (in characters)', 'text', '100', 4);
INSERT INTO `sd_pluginsettings` VALUES (40, 4, 'Options', 'Word Wrap', 'Wraps a string to the given number of characters: (0 = disabled)', 'text', '0', 5);
INSERT INTO `sd_pluginsettings` VALUES (41, 4, 'Options', 'Show Post Date', 'Show the date the message was posted?: ', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (42, 4, 'Options', 'Require VVC Code', 'Require users to enter a Visual Verify Code to post a message?', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (43, 6, 'Options', 'Email', 'Enter the email address where the submitted contact forms should be sent to:
/r/nSeparate multiple addresses with commas.', 'text', '[email protected]', 1);
INSERT INTO `sd_pluginsettings` VALUES (44, 6, 'Options', 'Allow Attachments', 'Allow users to send you attachments?', 'yesno', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (45, 6, 'Options', 'Require VVC Code', 'Require users to enter a Visual Verify Code to submit form?', 'yesno', '1', 3);
INSERT INTO `sd_pluginsettings` VALUES (46, 7, 'Options', 'Enable Smilies', 'If smilies are enabled, then certain combinations of characters will be change into images.', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (47, 7, 'Options', 'Number of comments to display', 'Select the number of comments you would like to be displayed in your chatterbox:', 'text', '5', 3);
INSERT INTO `sd_pluginsettings` VALUES (48, 7, 'Options', 'Word Wrap', 'Wraps a string to the given number of characters:', 'text', '30', 4);
INSERT INTO `sd_pluginsettings` VALUES (49, 7, 'Options', 'Maximum Username Length', 'Enter the maximum length in characters for the username:', 'text', '15', 5);
INSERT INTO `sd_pluginsettings` VALUES (50, 7, 'Options', 'Maximum Comment Length', 'Enter the maximum length in characters for the Comment:', 'text', '35', 6);
INSERT INTO `sd_pluginsettings` VALUES (51, 7, 'Options', 'Category Targeting', 'Only display messages which were posted in the category where the Chatterbox resides.', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (52, 7, 'Options', 'Chatterbox History', 'Display a link to a popup window that displays the message history of your chatterbox.', 'yesno', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (53, 7, 'Options', 'Maximum History Length', 'Enter the maxium number of days of messages to display in the message history of your chatterbox. (Enter 0 for unlimited)', 'text', '0', 9);
INSERT INTO `sd_pluginsettings` VALUES (54, 7, 'Options', 'Display Date', 'Display the date and time the message was posted?', 'yesno', '0', 10);
INSERT INTO `sd_pluginsettings` VALUES (55, 7, 'Options', 'Time Format', 'Format in which the time is presented:

See: http://us2.php.net/manual/en/function.date.php', 'text', 'h:i:s A', 11);
INSERT INTO `sd_pluginsettings` VALUES (56, 8, 'Options', 'Number of Post to Display', 'Please enter the the maximum number of ''latest posts'' to be printed:', 'text', '5', 1);
INSERT INTO `sd_pluginsettings` VALUES (57, 8, 'Options', 'Word Wrap', 'Wraps a string to the given number of characters:', 'text', '30', 2);
INSERT INTO `sd_pluginsettings` VALUES (58, 8, 'Options', 'Exclude Forums', 'You can exclude private forums by entering their ids here:', 'text', '', 3);
INSERT INTO `sd_pluginsettings` VALUES (59, 9, 'Options', 'Number of Top Posters to Display', 'Please enter the the maximum number of top posters to be displayed:', 'text', '5', 1);
INSERT INTO `sd_pluginsettings` VALUES (60, 10, 'Login Panel Options', 'Display Avatar', 'Display the user''s avatar in the login panel?', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (61, 10, 'Login Panel Options', 'Show PMs', 'Enable Private Message Notifications:', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (62, 10, 'Login Panel Options', 'Show Popups', 'Shows a Javascript popup window if the user has a new pm (VBulletin Users can override this locally):', 'yesno', '1', 3);
INSERT INTO `sd_pluginsettings` VALUES (63, 10, 'Login Panel Options', 'Display Admin Link', 'Display a link to the admin panel in the login panel for those with admin access?', 'yesno', '1', 4);
INSERT INTO `sd_pluginsettings` VALUES (64, 12, 'Registration Options', 'Enable Javascript Checking', 'With Javascripting Checking set to yes, the registration page will only be submitted once all input boxes have been filled out correctly. Upon an error, such as a submitted empty form, a javascript message box describing the mistake will be displayed.', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (65, 12, 'Registration Options', 'Maximum Username Length', 'Enter the maximum username length:', 'text', '12', 2);
INSERT INTO `sd_pluginsettings` VALUES (66, 12, 'Registration Options', 'Maximum Password Length', 'Enter the maximum password length:', 'text', '15', 3);
INSERT INTO `sd_pluginsettings` VALUES (67, 12, 'Registration Options', 'Banned Email Addresses', 'Enter a list of banned email addresses (separated by spaces):
To ban a specific address enter "[email protected]", to ban an entire domain enter "@domain.com"', 'textarea', '', 4);
INSERT INTO `sd_pluginsettings` VALUES (68, 12, 'Registration Options', 'Banned IP Addresses', 'Enter a list of banned ip addresses (separated by spaces)
You can ban entire subnets (0-255) by using wildcard characters (192.168.0.*, 192.168.*.*) or enter a full ip address:', 'textarea', '', 5);
INSERT INTO `sd_pluginsettings` VALUES (69, 12, 'Registration Options', 'Require Email Activation', 'Require new registrants to validate their email address when registering:', 'yesno', '0', 6);
INSERT INTO `sd_pluginsettings` VALUES (70, 12, 'Registration Options', 'Require VVC Code', 'Require users to enter a Visual Verify Code to register?', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (71, 16, 'Options', 'Links per Page', 'How many links would you like to be displayed per page?', 'text', '20', 1);
INSERT INTO `sd_pluginsettings` VALUES (72, 16, 'Options', 'Number of links per Row', 'Enter the number of links to be displayed per row:', 'text', '4', 2);
INSERT INTO `sd_pluginsettings` VALUES (73, 16, 'Options', 'Link Notification', 'This email address will receive an email message when a new link is submitted:
/r/nSeparate multiple addresses with commas.', 'text', '', 3);
INSERT INTO `sd_pluginsettings` VALUES (74, 16, 'Options', 'Display Menu', 'Displays the link directory navigation:', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (75, 16, 'Options', 'Auto Approve Links', 'Automatically approve user submitted links?', 'yesno', '0', 7);
INSERT INTO `sd_pluginsettings` VALUES (76, 17, 'Options', 'Popup Window', 'If selected, then a new window will open to display the full version of an image.', 'yesno', '0', 1);
INSERT INTO `sd_pluginsettings` VALUES (77, 17, 'Options', 'Number of images per Row', 'Enter the number of images to be displayed per row:', 'text', '4', 2);
INSERT INTO `sd_pluginsettings` VALUES (78, 17, 'Options', 'Images Per Page', 'Enter the number of images that a section should display per page:', 'text', '12', 3);
INSERT INTO `sd_pluginsettings` VALUES (79, 17, 'Options', 'Image Notification', 'This email address will receive an email message when a new image is submitted:
/r/nSeparate multiple addresses with commas.', 'text', '', 4);
INSERT INTO `sd_pluginsettings` VALUES (80, 17, 'Options', 'Auto Approve Images', 'Automatically approve user submitted images?', 'yesno', '0', 5);
INSERT INTO `sd_pluginsettings` VALUES (81, 17, 'Options', 'Show View Counts', 'Show the number of times the image has been viewed?', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (82, 17, 'Options', 'Show Comment Counts', 'Show the number of comments for each image?', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (83, 17, 'Options', 'Display Jump Menu', 'Display the Jump Menu navigation?', 'yesno', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (84, 17, 'Options', 'Section Sort Order', 'Sort sections by', '', '2', 9);
INSERT INTO `sd_pluginsettings` VALUES (85, 17, 'Options', 'Center Images', 'Would you like to center the images on the page?', 'yesno', '1', 10);
INSERT INTO `sd_pluginsettings` VALUES (86, 17, 'Thumbnail Options', 'Image Resizing', 'Automatically Resize images to thumbnails?:', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (87, 17, 'Thumbnail Options', 'Max Thumbnail Width', 'Enter the max width that a thumbnail should be resized to:', 'text', '100', 2);
INSERT INTO `sd_pluginsettings` VALUES (88, 17, 'Thumbnail Options', 'Max Thumbnail Height', 'Enter the max height that a thumbnail should be resized to:', 'text', '100', 3);
INSERT INTO `sd_pluginsettings` VALUES (89, 17, 'Thumbnail Options', 'Square Off Thumbnails', 'When automatically creating thumbnails, should the image be cropped so that it is square?', 'yesno', '0', 4);
INSERT INTO `sd_pluginsettings` VALUES (90, 17, 'Thumbnail Options', 'Display Thumbnail Image Border', 'Display a border around the thumbnail image?', 'yesno', '1', 5);
INSERT INTO `sd_pluginsettings` VALUES (91, 17, 'MidSize Options', 'Create MidSize Images', 'Automatically create midsize images?
This allows you to show a larger image before the full size image is shown:', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (92, 17, 'MidSize Options', 'Keep FullSize Images', 'When an image is uploaded should we keep the fullsize image?
If this is set to no and ''Create MidSize Images'' is set to yes, this gives you ability to restrict the maximum size of the image. In this case the original image will be deleted leaving you with the fixed size MideSize image. Only active when ''Create MidSize Images'' is enabled:', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (93, 17, 'MidSize Options', 'Max MidSize Width', 'Enter the max width that the midsize image should be resized to:', 'text', '400', 3);
INSERT INTO `sd_pluginsettings` VALUES (94, 17, 'MidSize Options', 'Max MidSize Height', 'Enter the max height that the midsize image should be resized to:', 'text', '400', 4);
INSERT INTO `sd_pluginsettings` VALUES (95, 17, 'MidSize Options', 'Square Off MidSize', 'When automatically creating midsize images, should the image be cropped so that it is square?', 'yesno', '0', 5);
INSERT INTO `sd_pluginsettings` VALUES (96, 17, 'MidSize Options', 'Display MidSize Image Border', 'Display a border around the midsize image?', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (97, 17, 'Section Options', 'Display Section Image Count', 'Display the image count in each section?
Disable this option if you have many images and your image gallery is loading slowly.', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (98, 17, 'Section Options', 'Display Sections as Images', 'Display sections as images instead of text?', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (99, 17, 'Section Options', 'Number of Section Images per Row', 'Enter the number of section images to be displayed per row:', 'text', '4', 3);
INSERT INTO `sd_pluginsettings` VALUES (100, 17, 'Section Options', 'Display Section Image Border', 'Display a border around section images?', 'yesno', '1', 4);
INSERT INTO `sd_pluginsettings` VALUES (101, 17, 'Image Border Options', 'Border Color', 'Color of the border:
Default Value: #606E9B', 'text', '#606E9B', 1);
INSERT INTO `sd_pluginsettings` VALUES (102, 17, 'Image Border Options', 'Border Padding', 'Padding in pixels between the image and border:
Default Value: 10', 'text', '3', 2);
INSERT INTO `sd_pluginsettings` VALUES (103, 31, 'Subcategory Options', 'Subcategory Separator', 'How would you like your subcategories to be separated?', 'text', '
', 1);
INSERT INTO `sd_pluginsettings` VALUES (104, 31, 'Subcategory Options', 'Custom Link Styles', 'If set to yes, then the subcategories will use the CSS styles defined in this page instead of the styles from your current Subdreamer skin:', 'yesno', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (105, 31, 'Subcategory Options', 'Default Link Style', 'CSS style of the default subcategory link:/r/n
Example: font: 11px verdana; color: #6E8195;', 'text', 'font: 11px verdana; color: #6E8195;', 3);
INSERT INTO `sd_pluginsettings` VALUES (106, 31, 'Subcategory Options', 'Active Link Style', 'CSS style of the active subcategory link:', 'text', 'font: 11px verdana; color: #6E8195;', 4);
INSERT INTO `sd_pluginsettings` VALUES (107, 31, 'Subcategory Options', 'Visited Link Style', 'CSS style of the visited subcategory link:', 'text', 'font: 11px verdana; color: #6E8195;', 5);
INSERT INTO `sd_pluginsettings` VALUES (108, 31, 'Subcategory Options', 'Hover Link Style', 'CSS style of the hover subcategory link:', 'text', 'font: 11px verdana; color: #6E8195;', 6);
INSERT INTO `sd_pluginsettings` VALUES (109, 115, 'Countdown Timer Settings', 'Before Text', 'Text displayed above the countdown!', 'text', '', 1);
INSERT INTO `sd_pluginsettings` VALUES (110, 115, 'Countdown Timer Settings', 'Finish Text', 'Text that replaces the count down timer, but not the before text, when the countdown has reached its goal!', 'text', '', 2);
INSERT INTO `sd_pluginsettings` VALUES (111, 115, 'Countdown Timer Settings', 'Counter Background Color', 'The color of the counter background, use #ffffff for defualt color white', 'text', '', 3);
INSERT INTO `sd_pluginsettings` VALUES (112, 115, 'Countdown Timer Settings', 'Color of the counter text', 'The color of server name, use #000000 for defualt color black', 'text', '', 4);
INSERT INTO `sd_pluginsettings` VALUES (113, 115, 'Date', 'Month', '', '/r/n   ', '1', 5);
INSERT INTO `sd_pluginsettings` VALUES (114, 115, 'Date', 'Day', '', '/r/n   ', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (115, 115, 'Date', 'Year', 'Example: 2006 format: 2XXX', 'text', '', 7);
INSERT INTO `sd_pluginsettings` VALUES (116, 115, 'Time', 'Hour', '', '/r/n   ', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (117, 115, 'Time', 'Minute', '', '/r/n   ', '00', 9);
INSERT INTO `sd_pluginsettings` VALUES (118, 115, 'Time', 'AM or PM', '', '/r/n   ', 'AM', 10);
INSERT INTO `sd_pluginsettings` VALUES (120, 13, 'General Options', 'Main Color', 'Enter the color that is used in the background of the tables:', 'text', '#F5F7FA', 2);
INSERT INTO `sd_pluginsettings` VALUES (123, 13, 'General Options', 'File Notification', 'This email address will receive an email message when a new file is submitted:
Separate multiple addresses with commas.', 'text', '', 5);
INSERT INTO `sd_pluginsettings` VALUES (124, 13, 'General Options', 'Allow User Comments', 'Allow users to post comments under the file''s details?', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (125, 13, 'File Rating Options', 'Display Ratings', 'Display file ratings?', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (126, 13, 'File Rating Options', 'Display Detailed Ratings', 'Display the decimal rating along with the stars?', 'yesno', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (129, 13, 'General Options', 'Show Search Header', 'Show the Search Options Header', 'yesno', '1', 7);
INSERT INTO `sd_pluginsettings` VALUES (130, 13, 'General Options', 'Show Footer', 'Show the Footer', 'yesno', '1', 8);
INSERT INTO `sd_pluginsettings` VALUES (131, 13, 'General Options', 'Use Advanced Paging', 'Use advanced paging (page numbers)?', 'yesno', '0', 9);
INSERT INTO `sd_pluginsettings` VALUES (132, 13, 'General Options', 'Display Sections', 'Display files with section hierarchy?', 'yesno', '1', 10);
INSERT INTO `sd_pluginsettings` VALUES (133, 13, 'General Options', 'Page Size', 'The default number of files to display per page', 'text', '5', 11);
INSERT INTO `sd_pluginsettings` VALUES (134, 13, 'File Options', 'Count Admin Downloads', 'Should admin downloads increment the download counter?', 'yesno', '0', 1);
INSERT INTO `sd_pluginsettings` VALUES (135, 13, 'File Options', 'Default Upload Location', 'Default location for user uploads?', '', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (136, 13, 'File Options', 'Auto Approve Uploads', 'Automatically approve user uploads?', 'yesno', '0', 3);
INSERT INTO `sd_pluginsettings` VALUES (137, 13, 'File Options', 'Default Chmod', 'Default chmod for uploaded files (leave blank for none)', 'text', '777', 4);
INSERT INTO `sd_pluginsettings` VALUES (138, 13, 'File Options', 'Default Owner', 'Default owner for uploaded files (leave blank for none)', 'text', '', 5);
INSERT INTO `sd_pluginsettings` VALUES (139, 13, 'File Options', 'Log Downloads', 'Log each file download?
You might want to disable this if having space or performance issues.', 'yesno', '1', 6);
INSERT INTO `sd_pluginsettings` VALUES (140, 13, 'File Options', 'Allow Per User Limits', 'This option allows you to choose to limit the number of times a file can be downloaded per user. If this is not enabled, any download limits will be applied globally for that file.
Important! This will only work if you have MySql 4.1 or above. If you enable this option and do not have MySql 4.1 you will experience SQL errors', 'yesno', '0', 7);
INSERT INTO `sd_pluginsettings` VALUES (141, 13, 'File Options', 'License Agreement', 'License Agreement text for downloads', 'textarea', '', 8);
INSERT INTO `sd_pluginsettings` VALUES (142, 13, 'File Rating Options', 'Display Vote Count', 'Display number of people who have voted?', 'yesno', '1', 11);
INSERT INTO `sd_pluginsettings` VALUES (143, 13, 'File Options', 'Allowed File Extensions', 'You can restrict the files which can be uploaded by your users by entering a list of file extensions here seperated by commas eg (zip, jpg, gif). If left blank all files are allowed.', 'text', '', 9);
INSERT INTO `sd_pluginsettings` VALUES (144, 13, 'File Options', 'Max Upload Size', 'You can specify here a maximum size for your file uploads. The size should be in KB so 1MB would be 1024
Note: The actual maximum size is limited by your php.ini ', 'text', '', 9);
INSERT INTO `sd_pluginsettings` VALUES (145, 13, 'File Options', 'File Storage Location URL', 'Above location - if not empty - is a local webserver directory name (filesystem). In order to correctly display IMAGE files (not equal to thumbnail/image) in the "Downloads" page, this needs to be mapped to a corresponding URL:', 'text', 'plugins/p13_download_manager/ftpfiles', 13);
INSERT INTO `sd_pluginsettings` VALUES (146, 13, 'Custom Admin Options', 'Display Latest Downloads', 'Display # entries in "Latest Downloads" section (0 = disable)?', 'text', '0', 10);
INSERT INTO `sd_pluginsettings` VALUES (147, 13, 'Custom Admin Options', 'Latest Files Thumbnails', 'Display thumbnail images in "Latest Files" list (Admin page)?
This will also enable display of actual filename for pictures.', 'yesno', '1', 20);
INSERT INTO `sd_pluginsettings` VALUES (148, 13, 'Custom View Options', 'Downloads Header Guests', 'Header message for Guests on top of sections/files in Downloads:', 'textarea', '

The Download Area shows available files grouped by below sections. Access to non-public files is only allowed when being logged in. For signing-up please click the "Register Now" link in the "Login Panel".

', 10);
INSERT INTO `sd_pluginsettings` VALUES (149, 13, 'Custom View Options', 'Display Edit Link for Files', 'Display an "Edit File" link on the Downloads page for each file if permitted for user?', 'yesno', '0', 12);
INSERT INTO `sd_pluginsettings` VALUES (150, 13, 'Custom View Options', 'Show Section Thumbnail', 'Show thumbnail images in front of section name (section menu):
This only applies if also "Display Sections" is enabled.', 'yesno', '1', 20);
INSERT INTO `sd_pluginsettings` VALUES (151, 13, 'Custom View Options', 'Show Section Image', 'Show image of current section in front of section menulist:', 'yesno', '1', 21);
INSERT INTO `sd_pluginsettings` VALUES (152, 13, 'Custom View Options', 'Display Author', 'Display the "Author" for each file?', 'yesno', '1', 30);
INSERT INTO `sd_pluginsettings` VALUES (153, 13, 'Custom View Options', 'Display Version', 'Display the "Version" for each file?', 'yesno', '1', 31);
INSERT INTO `sd_pluginsettings` VALUES (154, 13, 'Custom View Options', 'Display Date Added', 'Display the "Date added" for each file?', 'yesno', '1', 32);
INSERT INTO `sd_pluginsettings` VALUES (155, 13, 'Custom View Options', 'Display Date Updated', 'Display the "Date updated" for each file?', 'yesno', '1', 33);
INSERT INTO `sd_pluginsettings` VALUES (156, 13, 'Custom View Options', 'Display Download Count', 'Display the "Download Count" for each file?', 'yesno', '1', 34);
INSERT INTO `sd_pluginsettings` VALUES (157, 13, 'Custom View Options', 'Display Filesize', 'Display the "File Size" for each file?', 'yesno', '1', 35);
INSERT INTO `sd_pluginsettings` VALUES (158, 13, 'Custom View Options', 'Download Now Image Filename', 'Name of the image file for "Download Now"?', 'text', 'download.gif', 40);
INSERT INTO `sd_pluginsettings` VALUES (159, 13, 'Custom View Options', 'More Info Image Filename', 'Name of the thumbnail image for "More Info"?', 'text', 'info.gif', 41);
INSERT INTO `sd_pluginsettings` VALUES (160, 13, 'Custom View Options', 'Edit Image Filename', 'Name of the thumbnail image for Edit File?', 'text', 'edit.gif', 42);
INSERT INTO `sd_pluginsettings` VALUES (161, 13, 'Custom View Options', 'File Separator Image', 'Image filename (a gif/jpg/png with a "thin line") to separate each file (in images/misc folder)?
Set empty to show regular <hr> tag.', 'text', 'dots_blue.gif', 43);
INSERT INTO `sd_pluginsettings` VALUES (162, 13, 'Custom Layout Options', 'Downloads File Layout', 'File layout used for displaying the "Downloads" filelist?', '', '1', 50);
INSERT INTO `sd_pluginsettings` VALUES (163, 13, 'Custom Layout Options', 'Edit File Storage Change', 'Allow user to specify upload location (MySQL/Filesystem) when editing a file?', 'yesno', '0', 51);
INSERT INTO `sd_pluginsettings` VALUES (164, 13, 'Custom Layout Options', 'Imagewidth On More Info Page', 'Display width of image files on the "More Info" page?
Default is "450". Note: this is not used by the Default "File Layout".', 'text', '450', 52);
INSERT INTO `sd_pluginsettings` VALUES (165, 13, 'Custom Layout Options', 'Details Only On More Info Page', 'Display file details only on the "More Info" page?
Default is "No". Note: this is not used by the Default "File Layout".', 'yesno', '0', 54);
INSERT INTO `sd_pluginsettings` VALUES (166, 13, 'Custom Layout Options', 'File Description In Downloads', 'Display file description on "Downloads" page, not only on to the "More Info" page?
This option is not used by the Default "File Layout".
Default value is "No" to behave like DLM 1.4.', 'yesno', '0', 56);
INSERT INTO `sd_pluginsettings` VALUES (167, 13, 'Custom Layout Options', 'File Details Rows', 'Display file details one per row like DLM 1.4 ("Yes" means 1 detail per row, else 2 per row)?
This is not used by Default "File Layout".', 'yesno', '1', 58);
INSERT INTO `sd_pluginsettings` VALUES (168, 13, 'Custom Layout Options', 'File Details Ignore Date Updated', 'File details ignore if "Date Updated" is set or not ("Yes" means to always show details, "No" means DLM 1.4 behavior)?
This is not used by Default "File Layout".', 'yesno', '0', 60);
INSERT INTO `sd_pluginsettings` VALUES (169, 13, 'Custom Layout Options', 'Show More Info For Images', 'Display the "More Info" link for images?
Default is "Yes". Set to "No" if it should not be displayed for image files (jpg/gif/png).', 'yesno', '1', 62);
INSERT INTO `sd_pluginsettings` VALUES (170, 13, 'Custom Layout Options', 'Description Below Title', 'Display the description below title instead below all details?
Default is "Yes" (below title)', 'yesno', '1', 64);
INSERT INTO `sd_pluginsettings` VALUES (171, 13, 'Custom Layout Options', 'Thumbnail Display Width', 'Display width of thumbnails in "Downloads"?
Default is "100". Note: "0" will display thumbnails unscaled.', 'text', '100', 70);
INSERT INTO `sd_pluginsettings` VALUES (172, 13, 'Custom Layout Options', 'File Title Font Size', 'Font size in percent (without "%" sign) for the title of files?
Default is "150".', 'text', '150', 75);
INSERT INTO `sd_pluginsettings` VALUES (173, 13, 'Custom Layout Options', 'Message No Thumbnail Available', 'Default text displayed if no thumbnail is available
Set it to empty for none.', 'text', 'no image
available', 77);
INSERT INTO `sd_pluginsettings` VALUES (174, 13, 'Custom Admin Options', 'User Submit File Count', 'How many files should a user be allowed to submit at once?
The first uploaded file is the main one, all others are "Related Files". Default is "1", maximum is "10" (regardless of what is entered here).', 'text', '1', 30);
INSERT INTO `sd_pluginsettings` VALUES (176, 13, 'Custom Layout Options', 'Thumbnails New Window', 'Clicking thumbnails will open a new window for full image viewing?
Yes = open in new window, No = display in current window.', 'yesno', '1', 53);
INSERT INTO `sd_pluginsettings` VALUES (177, 13, 'Custom Layout Options', 'Display Sort Options', 'Display the "Sort by" options above files list on the frontpage (default: yes)?', 'yesno', '1', 57);
INSERT INTO `sd_pluginsettings` VALUES (178, 13, 'Custom Admin Options', 'Default License Agreement', 'Default "License Agreement" setting when adding files (default: yes)?', 'yesno', '1', 40);
INSERT INTO `sd_pluginsettings` VALUES (179, 13, 'Custom Admin Options', 'Enable Author File Delete', 'Allow authors to delete File Version (default: yes)?', 'yesno', '1', 50);
INSERT INTO `sd_pluginsettings` VALUES (184, 186, 'Select Mode', 'Select your Mode', 'Select your Mode:', '', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (193, 14, 'Newsletter Settings', 'Website URL', 'Please enter your website''s URL here:
The URL is used for the unsubscribe links and skinning the Newsletter.
(example: /)', 'text', '', 1);
INSERT INTO `sd_pluginsettings` VALUES (194, 14, 'Newsletter Settings', 'Signature', 'The signature entered here will be displayed right after your email''s message:
This can be in text or HTML.', 'textarea', '', 2);
INSERT INTO `sd_pluginsettings` VALUES (195, 14, 'Newsletter Settings', 'Header', 'You can enter a text or HTML Header design that will be displayed before your email''s message:', 'textarea', '', 3);
INSERT INTO `sd_pluginsettings` VALUES (196, 14, 'Newsletter Settings', 'Footer', 'You can enter a text or HTML Footer design that will be displayed after your email''s message:', 'textarea', '', 4);
INSERT INTO `sd_pluginsettings` VALUES (197, 820, 'Show Latest', 'latest entries to show', 'Show how many latest entries?', 'text', '5', 1);
INSERT INTO `sd_pluginsettings` VALUES (198, 820, 'Access Control', 'Allow Users', 'Allow users to create blogs?', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (199, 820, 'Icons', 'Hot 3 Icon', 'How many views for hot3 icon?', 'text', '200', 1);
INSERT INTO `sd_pluginsettings` VALUES (200, 820, 'Icons', 'Hot 2 Icon', 'How many views for hot2 icon?', 'text', '100', 2);
INSERT INTO `sd_pluginsettings` VALUES (201, 820, 'Icons', 'Hot 1 Icon', 'How many views for hot1 icon?', 'text', '50', 3);
INSERT INTO `sd_pluginsettings` VALUES (250, 93, 'Random', 'Display Random', 'Would you like to display Random Images?', 'yesno', '1', 1);
INSERT INTO `sd_pluginsettings` VALUES (251, 93, 'Random', 'File Folder', 'Image Location:/r/n
Example: ../subfolder/', 'text', './plugins/p93_random/files/', 2);
INSERT INTO `sd_pluginsettings` VALUES (252, 93, 'Random', 'File Type', 'File Type:', '/r/n                 ', 'image', 3);
INSERT INTO `sd_pluginsettings` VALUES (253, 93, 'Random', 'Alt Text', 'Highlight Text:/r/n
Use if file type is image', 'text', 'Random Image', 4);
INSERT INTO `sd_pluginsettings` VALUES (263, 164, 'Merchant Options', 'Merchant', 'Select the payment server. ', '', 'https://www.paypal.com/cgi-bin/webscr', 100);
INSERT INTO `sd_pluginsettings` VALUES (264, 164, 'Merchant Options', 'Paypal Email Address', 'Email address for the PayPal account that receives the money.', 'text', '[email protected]', 110);
INSERT INTO `sd_pluginsettings` VALUES (265, 164, 'Catalog Options', 'Display Out of Stock Items', 'If an item is out of stock, should it even be displayed in the catalog?', 'yesno', '1', 110);
INSERT INTO `sd_pluginsettings` VALUES (266, 164, 'Catalog Options', 'Catalog Columns', 'Select the number of columns to ue when displaying your catalog of products. ', '', '3', 120);
INSERT INTO `sd_pluginsettings` VALUES (267, 164, 'Image Options', 'Square Off Images', 'Square off all images?', 'yesno', '0', 200);
INSERT INTO `sd_pluginsettings` VALUES (268, 164, 'Image Options', 'Small Image Height', 'Maximum allowed Height for Small Images.', 'text', '32', 201);
INSERT INTO `sd_pluginsettings` VALUES (269, 164, 'Image Options', 'Small Image Width', 'Maximum allowed Width for Small Images.', 'text', '32', 202);
INSERT INTO `sd_pluginsettings` VALUES (270, 164, 'Image Options', 'Medium Image Height', 'Maximum allowed Height for Medium Images.', 'text', '100', 203);
INSERT INTO `sd_pluginsettings` VALUES (271, 164, 'Image Options', 'Medium Image Width', 'Maximum allowed Width for Medium Images.', 'text', '100', 204);
INSERT INTO `sd_pluginsettings` VALUES (272, 164, 'Catalog Options', 'Template', 'Select a template to use to use for displaying your shopping cart.', 'dyn_listbox', 'Default', 109);
INSERT INTO `sd_pluginsettings` VALUES (273, 164, 'Catalog Options', 'Less Than Requested', 'How do you wish the shopping cart to handle when someone tries to add more items than are on hand?', '', '1', 113);
INSERT INTO `sd_pluginsettings` VALUES (274, 164, 'Currency Options', 'Currency Type', 'Select the currency to present to your customer. ', '', 'USD', 105);
INSERT INTO `sd_pluginsettings` VALUES (275, 164, 'Currency Options', 'Display Currency Type', 'Display the currency type next to a cost?', 'yesno', '0', 110);
INSERT INTO `sd_pluginsettings` VALUES (276, 164, 'Catalog Options', 'Display Sections with Products', 'Displays the sections along with the products in your catalog.', 'yesno', '1', 130);
INSERT INTO `sd_pluginsettings` VALUES (277, 164, 'Catalog Options', 'Display Shopping Cart in Jump Menu', 'This will dispay the shopping cart in the jump menu.', 'yesno', '1', 135);
INSERT INTO `sd_pluginsettings` VALUES (278, 17, 'Options', 'Show Image Tags', 'Would you like to display the image search tags?', 'yesno', '1', 11);
INSERT INTO `sd_pluginsettings` VALUES (279, 17, 'Options', 'Submit Tags', 'Do you want your users to be able to submit tags?', 'yesno', '1', 12);
INSERT INTO `sd_pluginsettings` VALUES (304, 0, 'Options', 'Enable Smilies', 'If you enable smilies, then certain combinations of characters will change into images.', 'yesno', '1', 2);
INSERT INTO `sd_pluginsettings` VALUES (305, 0, 'Options', 'Messages Per Page', 'Enter the number of messages you would you like to see in the guesbook:', 'text', '5', 3);
INSERT INTO `sd_pluginsettings` VALUES (306, 0, 'Options', 'Message Length', 'Please enter the maximum length a message can be: (in characters)', 'text', '100', 4);
INSERT INTO `sd_pluginsettings` VALUES (307, 0, 'Options', 'Word Wrap', 'Wraps a string to the given number of characters: (0 = disabled)', 'text', '0', 5);
INSERT INTO `sd_pluginsettings` VALUES (308, 0, 'Options', 'Email', 'Enter the email address where the submitted contact forms should be sent to:
/r/nSeparate multiple addresses with commas.', 'text', '$email', 1);
INSERT INTO `sd_pluginsettings` VALUES (309, 0, 'Options', 'Allow Attachments', 'Allow users to send you attachments?', 'yesno', '0', 2);
INSERT INTO `sd_pluginsettings` VALUES (310, 0, 'Advert Flash Settings', 'name/id', 'HTML Name/id tags of images and/or flash medias?/r/n
If needed, identifies the images or flash movies so that it can be referenced using a scripting language such as JavaScript./r/n
A suffix reflecting the position order will be dynamically added to this value /r/n
(e.i myFile1, myFile2, etc...)
.', 'text', 'myFile', 1);
INSERT INTO `sd_pluginsettings` VALUES (311, 0, 'Advert Flash Settings', 'bgcolor', 'If it is a flash movie, what should the background color of the flash file be?/r/n
#RRGGBB', 'text', '#ffffff', 5);
INSERT INTO `sd_pluginsettings` VALUES (312, 0, 'Options Advert 1', 'width 1', 'Width of image and/or flash media?', 'text', '', 9);
INSERT INTO `sd_pluginsettings` VALUES (313, 0, 'Options Advert 1', 'height 1', 'Height of image and/or flash media?', 'text', '', 10);
INSERT INTO `sd_pluginsettings` VALUES (314, 0, 'Options Advert 2', 'width 2', 'Width of image and/or flash media?', 'text', '', 17);
INSERT INTO `sd_pluginsettings` VALUES (315, 0, 'Options Advert 2', 'height 2', 'Height of image and/or flash media?', 'text', '', 18);
INSERT INTO `sd_pluginsettings` VALUES (316, 0, 'Options Advert 3', 'width 3', 'Width of image and/or flash media?', 'text', '', 25);
INSERT INTO `sd_pluginsettings` VALUES (317, 0, 'Options Advert 3', 'height 3', 'Height of image and/or flash media?', 'text', '', 26);
INSERT INTO `sd_pluginsettings` VALUES (318, 0, 'Options Advert 4', 'width 4', 'Width of image and/or flash media?', 'text', '', 33);
INSERT INTO `sd_pluginsettings` VALUES (319, 0, 'Options Advert 4', 'height 4', 'Height of image and/or flash media?', 'text', '', 34);
INSERT INTO `sd_pluginsettings` VALUES (320, 0, 'Options Advert 5', 'width 5', 'Width of image and/or flash media?', 'text', '', 41);
INSERT INTO `sd_pluginsettings` VALUES (321, 0, 'Options Advert 5', 'height 5', 'Height of image and/or flash media?', 'text', '', 42);
INSERT INTO `sd_pluginsettings` VALUES (322, 0, 'Advert Flash Settings', 'name/id', 'HTML Name/id tags of images and/or flash medias?/r/n
If needed, identifies the images or flash movies so that it can be referenced using a scripting language such as JavaScript./r/n
A suffix reflecting the position order will be dynamically added to this value /r/n
(e.i myFile1, myFile2, etc...)
.', 'text', 'myFile', 1);
INSERT INTO `sd_pluginsettings` VALUES (323, 0, 'Advert Flash Settings', 'bgcolor', 'If it is a flash movie, what should the background color of the flash file be?/r/n
#RRGGBB', 'text', '#ffffff', 5);
INSERT INTO `sd_pluginsettings` VALUES (324, 0, 'Options Advert 1', 'width 1', 'Width of image and/or flash media?', 'text', '', 9);
INSERT INTO `sd_pluginsettings` VALUES (325, 0, 'Options Advert 1', 'height 1', 'Height of image and/or flash media?', 'text', '', 10);
INSERT INTO `sd_pluginsettings` VALUES (326, 0, 'Options Advert 2', 'width 2', 'Width of image and/or flash media?', 'text', '', 17);
INSERT INTO `sd_pluginsettings` VALUES (327, 0, 'Options Advert 2', 'height 2', 'Height of image and/or flash media?', 'text', '', 18);
INSERT INTO `sd_pluginsettings` VALUES (328, 0, 'Options Advert 3', 'width 3', 'Width of image and/or flash media?', 'text', '', 25);
INSERT INTO `sd_pluginsettings` VALUES (329, 0, 'Options Advert 3', 'height 3', 'Height of image and/or flash media?', 'text', '', 26);
INSERT INTO `sd_pluginsettings` VALUES (330, 0, 'Options Advert 4', 'width 4', 'Width of image and/or flash media?', 'text', '', 33);
INSERT INTO `sd_pluginsettings` VALUES (331, 0, 'Options Advert 4', 'height 4', 'Height of image and/or flash media?', 'text', '', 34);
INSERT INTO `sd_pluginsettings` VALUES (332, 0, 'Options Advert 5', 'width 5', 'Width of image and/or flash media?', 'text', '', 41);
INSERT INTO `sd_pluginsettings` VALUES (333, 0, 'Options Advert 5', 'height 5', 'Height of image and/or flash media?', 'text', '', 42);

-- --------------------------------------------------------

--
-- 表的结构 `sd_sessions`
--

CREATE TABLE `sd_sessions` (
  `sessionid` varchar(32) NOT NULL default '',
  `userid` int(10) unsigned NOT NULL default '0',
  `ipaddress` varchar(15) NOT NULL default '',
  `useragent` varchar(255) NOT NULL default '',
  `lastactivity` int(10) unsigned NOT NULL default '0',
  `location` varchar(255) NOT NULL default '',
  `loggedin` tinyint(1) NOT NULL default '0',
  `admin` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`sessionid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_sessions`
--

INSERT INTO `sd_sessions` VALUES ('691a7b42249eeea929769a10d341d633', 0, '127.0.0.1', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)', 1193844826, '3', 0, 0);
INSERT INTO `sd_sessions` VALUES ('7730d941f87ab09bf61ebd215fed611a', 0, '127.0.0.1', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)', 1193845256, '1', 0, 0);
INSERT INTO `sd_sessions` VALUES ('d1755b32bdf495dd327ff0e3ec441863', 0, '127.0.0.1', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)', 1193844684, '3', 0, 0);
INSERT INTO `sd_sessions` VALUES ('e3fb110a7187673d95434591cc1685d9', 0, '127.0.0.1', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)', 1193844721, '3', 0, 0);

-- --------------------------------------------------------

--
-- 表的结构 `sd_skin_bak_cat`
--

CREATE TABLE `sd_skin_bak_cat` (
  `skinid` int(10) unsigned NOT NULL default '0',
  `categoryid` int(10) unsigned NOT NULL default '0',
  `designid` int(10) unsigned NOT NULL default '0',
  KEY `sbcat` (`skinid`,`categoryid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_skin_bak_cat`
--

INSERT INTO `sd_skin_bak_cat` VALUES (1, 1, 1);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 2, 2);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 3, 4);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 4, 2);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 5, 2);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 6, 2);
INSERT INTO `sd_skin_bak_cat` VALUES (1, 7, 2);

-- --------------------------------------------------------

--
-- 表的结构 `sd_skin_bak_pgs`
--

CREATE TABLE `sd_skin_bak_pgs` (
  `skinid` int(10) unsigned NOT NULL default '0',
  `categoryid` int(10) unsigned NOT NULL default '0',
  `displayorder` int(10) unsigned NOT NULL default '0',
  `pluginid` varchar(5) NOT NULL default '1',
  KEY `sbpgs` (`skinid`,`categoryid`,`displayorder`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- 导出表中的数据 `sd_skin_bak_pgs`
--

INSERT INTO `sd_skin_bak_pgs` VALUES (1, 1, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 1, 2, '3');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 1, 11, '2');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 1, 21, 'c1');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 1, 22, '7');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 2, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 2, 11, '4');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 3, 1, '17');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 4, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 4, 11, '16');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 5, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 5, 11, '6');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 6, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 6, 11, '12');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 7, 1, '10');
INSERT INTO `sd_skin_bak_pgs` VALUES (1, 7, 11, '11');

-- --------------------------------------------------------

--
-- 表的结构 `sd_skins`
--

CREATE TABLE `sd_skins` (
  `skinid` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(64) NOT NULL default '',
  `activated` tinyint(1) NOT NULL default '0',
  `numdesigns` int(10) unsigned NOT NULL default '0',
  `previewimage` varchar(64) NOT NULL default '',
  `authorname` varchar(64) NOT NULL default '',
  `authorlink` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`skinid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;

--
-- 导出表中的数据 `sd_skins`
--

INSERT INTO `sd_skins` VALUES (1, 'Advanced II', 0, 4, 'advanced_2/images/adv_preview.jpg', 'Subdreamer, LLC', 1);
INSERT INTO `sd_skins` VALUES (2, 'Gravity', 1, 2, 'gravity/images/preview.gif', 'subduck', 1);
INSERT INTO `sd_skins` VALUES (6, 'Yum Cha', 0, 3, 'bobbyzhuo/images/preview.gif', 'bobbyzhuo', 3836);
INSERT INTO `sd_skins` VALUES (7, 'Feather', 0, 3, 'feather/images/preview.gif', 'chaos', 36);
INSERT INTO `sd_skins` VALUES (8, 'Old School for SD.org', 0, 1, 'oldschoolSD/images/preview.gif', 'IGGY', 1278);
INSERT INTO `sd_skins` VALUES (9, 'HQ-APPLE', 0, 4, 'hq_apple/images/preview.png', 'Dino@HQ (Dinohq.info)', 7777);

-- --------------------------------------------------------

--
-- 表的结构 `sd_smilies`
--

CREATE TABLE `sd_smilies` (
  `smilieid` int(10) unsigned NOT NULL auto_increment,
  `title` varchar(100) NOT NULL default '',
  `text` varchar(32) NOT NULL default '',
  `image` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`smilieid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=18 ;

--
-- 导出表中的数据 `sd_smilies`
--

INSERT INTO `sd_smilies` VALUES (1, 'Disappointed', ':|', 'disappointed.gif');
INSERT INTO `sd_smilies` VALUES (2, 'Happy', ':D', 'happy.gif');
INSERT INTO `sd_smilies` VALUES (3, 'Sad', ':(', 'sad.gif');
INSERT INTO `sd_smilies` VALUES (4, 'Smile', ':)', 'smile.gif');
INSERT INTO `sd_smilies` VALUES (5, 'Angry', 'smilies_angry', 'angry.gif');
INSERT INTO `sd_smilies` VALUES (6, 'Blush', 'smilies_blush', 'blush.gif');
INSERT INTO `sd_smilies` VALUES (7, 'Cheeky', 'smilies_cheeky', 'cheeky.gif');
INSERT INTO `sd_smilies` VALUES (8, 'Darn', 'smilies_darn', 'darn.gif');
INSERT INTO `sd_smilies` VALUES (9, 'Dead', 'smilies_dead', 'dead.gif');
INSERT INTO `sd_smilies` VALUES (10, 'Eeek', 'smilies_eek', 'eeek.gif');
INSERT INTO `sd_smilies` VALUES (11, 'Embarrassed', 'smilies_embarrassed', 'embarrassed.gif');
INSERT INTO `sd_smilies` VALUES (12, 'Help', 'smilies_help', 'help.gif');
INSERT INTO `sd_smilies` VALUES (13, 'Luv', 'smilies_luv', 'luv.gif');
INSERT INTO `sd_smilies` VALUES (14, 'Ok', 'smilies_ok', 'ok.gif');
INSERT INTO `sd_smilies` VALUES (15, 'Wink', 'smilies_wink', 'wink.gif');
INSERT INTO `sd_smilies` VALUES (16, 'Yawn', 'smilies_yawn', 'yawn.gif');
INSERT INTO `sd_smilies` VALUES (17, 'Yum', 'smilies_yum', 'yum.gif');

-- --------------------------------------------------------

--
-- 表的结构 `sd_syslog`
--

CREATE TABLE `sd_syslog` (
  `wid` int(5) NOT NULL auto_increment,
  `username` varchar(64) NOT NULL default '',
  `type` varchar(16) NOT NULL default '',
  `message` longtext NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL default '0',
  `location` varchar(128) NOT NULL default '',
  `referer` varchar(128) NOT NULL default '',
  `hostname` varchar(128) NOT NULL default '',
  `timestamp` int(11) NOT NULL default '0',
  PRIMARY KEY  (`wid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=42 ;

--
-- 导出表中的数据 `sd_syslog`
--

INSERT INTO `sd_syslog` VALUES (1, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.jsp', 'http://localhost/upload5/admin/', '127.0.0.1', 1191722236);
INSERT INTO `sd_syslog` VALUES (2, '', 'Login', 'Login Error for user ''cuishouxiang''. Wrong Username', 1, '/upload5/admin/index.jsp', 'http://localhost/upload5/admin/index.jsp', '127.0.0.1', 1191725401);
INSERT INTO `sd_syslog` VALUES (3, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.jsp', 'http://localhost/upload5/admin/index.jsp', '127.0.0.1', 1191725408);
INSERT INTO `sd_syslog` VALUES (4, 'cui', 'Main Settings', 'Setting ''GZip Compression'' changed from ''0'' to ''1''', 0, '/upload5/admin/mainsettings.jsp', 'http://localhost/upload5/admin/mainsettings.jsp', '127.0.0.1', 1191726241);
INSERT INTO `sd_syslog` VALUES (5, 'cui', 'Main Settings', 'Setting ''ó???????°ó?¨±êìa±ê??'' changed from ''no'' to ''0''', 0, '/upload5/admin/mainsettings.jsp', 'http://localhost/upload5/admin/mainsettings.jsp', '127.0.0.1', 1191726241);
INSERT INTO `sd_syslog` VALUES (6, 'cui', 'php', 'warning: opendir(/plugins/p15_randompic/images/) [function.opendir]: failed to open dir: Invalid argument in C://Apache//Apache2//htdocs//Upload5//plugins//p15_randompic//randompic.php on line 28.', 1, '/upload5/index.php?categoryid=1', 'http://localhost/upload5/index.php?categoryid=1', '127.0.0.1', 1191726580);
INSERT INTO `sd_syslog` VALUES (7, 'cui', 'php', 'warning: readdir(): supplied argument is not a valid Directory resource in C://Apache//Apache2//htdocs//Upload5//plugins//p15_randompic//randompic.php on line 30.', 1, '/upload5/index.php?categoryid=1', 'http://localhost/upload5/index.php?categoryid=1', '127.0.0.1', 1191726580);
INSERT INTO `sd_syslog` VALUES (8, 'cui', 'php', 'warning: opendir(/plugins/p15_randompic/images/) [function.opendir]: failed to open dir: Invalid argument in C://Apache//Apache2//htdocs//Upload5//plugins//p15_randompic//randompic.php on line 28.', 1, '/upload5/index.php?categoryid=1', 'http://localhost/upload5/index.php?categoryid=1', '127.0.0.1', 1191726585);
INSERT INTO `sd_syslog` VALUES (9, 'cui', 'php', 'warning: readdir(): supplied argument is not a valid Directory resource in C://Apache//Apache2//htdocs//Upload5//plugins//p15_randompic//randompic.php on line 30.', 1, '/upload5/index.php?categoryid=1', 'http://localhost/upload5/index.php?categoryid=1', '127.0.0.1', 1191726585);
INSERT INTO `sd_syslog` VALUES (10, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191729673);
INSERT INTO `sd_syslog` VALUES (11, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191731488);
INSERT INTO `sd_syslog` VALUES (12, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191732819);
INSERT INTO `sd_syslog` VALUES (13, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/2.jpg) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.jsp?pluginid=17', 'http://localhost/upload5/admin/myplugins.jsp?pluginid=17', '127.0.0.1', 1191733145);
INSERT INTO `sd_syslog` VALUES (14, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/3.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.jsp?pluginid=17', 'http://localhost/upload5/admin/myplugins.jsp?pluginid=17', '127.0.0.1', 1191733937);
INSERT INTO `sd_syslog` VALUES (15, 'cui', 'php', 'warning: unlink(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/tb_3.png) [function.unlink]: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 854.', 1, '/upload5/admin/myplugins.jsp?pluginid=17', 'http://localhost/upload5/admin/myplugins.jsp?pluginid=17', '127.0.0.1', 1191734484);
INSERT INTO `sd_syslog` VALUES (16, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/4.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191734733);
INSERT INTO `sd_syslog` VALUES (17, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/5.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191734994);
INSERT INTO `sd_syslog` VALUES (18, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/6.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191733412);
INSERT INTO `sd_syslog` VALUES (19, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/7.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191733778);
INSERT INTO `sd_syslog` VALUES (20, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/8.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191733901);
INSERT INTO `sd_syslog` VALUES (21, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191735060);
INSERT INTO `sd_syslog` VALUES (22, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 1191787172);
INSERT INTO `sd_syslog` VALUES (23, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/9.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191787347);
INSERT INTO `sd_syslog` VALUES (24, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 1191793625);
INSERT INTO `sd_syslog` VALUES (25, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/10.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191794160);
INSERT INTO `sd_syslog` VALUES (26, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191796388);
INSERT INTO `sd_syslog` VALUES (27, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191797762);
INSERT INTO `sd_syslog` VALUES (28, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/11.jpg) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 1191797881);
INSERT INTO `sd_syslog` VALUES (29, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191799685);
INSERT INTO `sd_syslog` VALUES (30, '', 'Login', 'Login Error for user ''cuishouxiang''. ó??§?êo??í?ó', 1, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191800956);
INSERT INTO `sd_syslog` VALUES (31, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 1191800969);
INSERT INTO `sd_syslog` VALUES (32, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 315889471);
INSERT INTO `sd_syslog` VALUES (33, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/12.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 315889813);
INSERT INTO `sd_syslog` VALUES (34, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/index.php', '127.0.0.1', 315891392);
INSERT INTO `sd_syslog` VALUES (35, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/13.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 315891534);
INSERT INTO `sd_syslog` VALUES (36, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/14.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 315891982);
INSERT INTO `sd_syslog` VALUES (37, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 315893128);
INSERT INTO `sd_syslog` VALUES (38, 'cui', 'php', 'warning: getimagesize(C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery/images/15.png) [function.getimagesize]: failed to create stream: No such file or directory in C://Apache//Apache2//htdocs//Upload5//plugins//p17_image_gallery//p17_settings.php on line 557.', 1, '/upload5/admin/myplugins.php?pluginid=17', 'http://localhost/upload5/admin/myplugins.php?pluginid=17', '127.0.0.1', 315893327);
INSERT INTO `sd_syslog` VALUES (39, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 315894816);
INSERT INTO `sd_syslog` VALUES (40, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 1191860214);
INSERT INTO `sd_syslog` VALUES (41, '', 'Login', 'User ''cui'' logged in', 0, '/upload5/admin/index.php', 'http://localhost/upload5/admin/', '127.0.0.1', 1191862064);

-- --------------------------------------------------------

--
-- 表的结构 `sd_usergroups`
--

CREATE TABLE `sd_usergroups` (
  `usergroupid` smallint(5) unsigned NOT NULL auto_increment,
  `forumusergroupid` smallint(5) NOT NULL default '0',
  `name` varchar(100) NOT NULL default '',
  `adminaccess` tinyint(1) NOT NULL default '0',
  `commentaccess` tinyint(1) NOT NULL default '0',
  `offlinecategoryaccess` tinyint(1) NOT NULL default '0',
  `categoryviewids` text NOT NULL,
  `categorymenuids` text NOT NULL,
  `pluginviewids` text NOT NULL,
  `pluginsubmitids` text NOT NULL,
  `plugindownloadids` text NOT NULL,
  `plugincommentids` text NOT NULL,
  `pluginadminids` text NOT NULL,
  `custompluginviewids` text NOT NULL,
  `custompluginadminids` text NOT NULL,
  PRIMARY KEY  (`usergroupid`),
  KEY `forumusergroupid` (`forumusergroupid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

--
-- 导出表中的数据 `sd_usergroups`
--

INSERT INTO `sd_usergroups` VALUES (1, 0, 'Administrators', 1, 1, 1, '1,2,3,4', '1,2,3,4', '2,3,4,6,7,8,9,10,11,12,16,17,31,115,13,15,186,170,42,14,820,799,93,94,164,96', '2,4,6,7,10,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '115,13,15,186,170,42,14,820,799,93,94,164,96', '2,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '2,3,4,6,7,8,9,10,11,12,16,17,31,115,13,15,186,170,42,14,820,799,93,94,164,96', '1', '1');
INSERT INTO `sd_usergroups` VALUES (2, 0, 'Moderators', 0, 1, 1, '1,2,3,4', '1,2,3,4', '2,3,4,6,7,8,9,10,11,12,16,17,31,115,13,15,186,170,42,14,820,799,93,94,164,96', '2,4,6,7,10,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '115,13,15,186,170,42,14,820,799,93,94,164,96', '2,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '2,3,4,6,7,8,9,10,11,12,16,17,31', '1', '1');
INSERT INTO `sd_usergroups` VALUES (3, 0, 'Registered Users', 0, 0, 0, '1,2,3,4', '1,2,3,4', '2,3,4,6,7,8,9,10,11,12,16,17,31,115,13,15,186,170,42,14,820,799,93,94,164,96', '2,4,6,7,10,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '115,13,15,186,170,42,14,820,799,93,94,164,96', '2,16,17,115,13,15,186,170,42,14,820,799,93,94,164,96', '', '1', '');
INSERT INTO `sd_usergroups` VALUES (4, 0, 'Guests', 0, 0, 0, '1,2,3,4', '1,2,3,4', '2,3,4,6,7,8,9,10,11,12,16,17,31,115,13,15,186,170,42,14,820,799,93,94,164,96', '', '', '', '', '1', '');

-- --------------------------------------------------------

--
-- 表的结构 `sd_users`
--

CREATE TABLE `sd_users` (
  `userid` int(10) unsigned NOT NULL auto_increment,
  `usergroupid` smallint(5) unsigned NOT NULL default '0',
  `username` varchar(64) NOT NULL default '',
  `password` varchar(32) NOT NULL default '',
  `email` varchar(64) NOT NULL default '',
  `banned` tinyint(1) NOT NULL default '0',
  `activated` tinyint(1) NOT NULL default '0',
  `validationkey` varchar(50) default '',
  `joindate` int(10) unsigned NOT NULL default '0',
  `lastactivity` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`userid`),
  KEY `usergroupid` (`usergroupid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- 导出表中的数据 `sd_users`
--

INSERT INTO `sd_users` VALUES (1, 1, 'cui', '603e3edee9d71364c26b97ac9655515d', '[email protected]', 0, 1, '', 1191722203, 1191916707);

-- --------------------------------------------------------

--
-- 表的结构 `sd_usersystems`
--

CREATE TABLE `sd_usersystems` (
  `usersystemid` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(64) NOT NULL default '',
  `activated` enum('0','1') NOT NULL default '0',
  `dbname` varchar(64) NOT NULL default '',
  `queryfile` varchar(64) NOT NULL default '',
  `tblprefix` varchar(32) NOT NULL default '',
  `folderpath` varchar(64) NOT NULL default '',
  `cookietimeout` int(10) unsigned NOT NULL default '0',
  `cookieprefix` varchar(32) NOT NULL default '',
  `extra` varchar(64) NOT NULL default '',
  PRIMARY KEY  (`usersystemid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- 导出表中的数据 `sd_usersystems`
--

INSERT INTO `sd_usersystems` VALUES (1, 'Subdreamer', '1', '', 'subdreamer.php', '', '', 0, '', '');
INSERT INTO `sd_usersystems` VALUES (2, 'vBulletin 2', '0', '', 'vbulletin2.php', '', '', 0, '', '');
INSERT INTO `sd_usersystems` VALUES (3, 'vBulletin 3', '0', '', 'vbulletin3.php', '', '', 0, '', '');
INSERT INTO `sd_usersystems` VALUES (4, 'phpBB2', '0', '', 'phpbb2.php', '', '', 0, '', '');
INSERT INTO `sd_usersystems` VALUES (5, 'Invision Power Board 2', '0', '', 'ipb2.php', '', '', 0, '', '');
INSERT INTO `sd_usersystems` VALUES (6, 'Simple Machines Forum 1', '0', '', 'smf1.php', '', '', 0, '', '');

-- --------------------------------------------------------

--
-- 表的结构 `sd_vvc`
--

CREATE TABLE `sd_vvc` (
  `vvcid` int(10) unsigned NOT NULL auto_increment,
  `verifycode` varchar(100) NOT NULL default '',
  `datecreated` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`vvcid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- 导出表中的数据 `sd_vvc`
--

       

 

 ******************************************************************************************

***************************************************************************************

 

 

 

index.jsp代码:

 

 <% 
/**  +---------------------------------------------+ 
 *   |     Copyright ?2003 ?2006 Subdreamer, LLC   |
 *   |     http://www.subdreamer.com               |
 *   |     This file may not be redistributed.     |
 *   +---------------------------------------------+
 */
%>
<%//@  page  contentType="text/html;charset=gb2312"%>
<%@  page  import="java.sql.*,java.util.*,java.io.*,java.text.*,javax.servlet.*,javax.servlet.http.*"%>
<%// ########################### LOAD SUBDREAMER CORE ############################%>

<%@ include file="include/core.jsp" %>
<%

response.setDateHeader("Expires", 0); // date in the past
response.addHeader("Cache-Control", "no-store, no-cache, must-revalidate"); // HTTP/1.1
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.addHeader("Pragma", "no-cache"); // HTTP/1.0
// ############################## GET CATEGORYID ###############################

//$categoryid = (isset($_GET['categoryid']) AND ereg("^[0-9]+$", $_GET['categoryid'])) ? $_GET['categoryid'] : 1;
// ############################### USER SYSTEM  ################################

// usersystem is fetched in core.php
// fix username and password for foreign chracters, this only needs to be done
// on the frontend, becuase subdreamer doesn't htmlspecialchars data in the backend.

 

  // Subdreamer may be integrated with a forum in the same database,
  // or is using the Subdreamer User System
//require($rootpath . 'includes/usersystems/' . $usersystem['queryfile']);
%>
 
       <%//@ include file="include/usersystems/subdreamer.jsp" %>
<%


//unset($userinfo);
//$userinfo = GetUserInfo($usersettings);
//unset($usersettings);


%>

<%@ include file="include/functions.jsp" %>

<%
// ############################### LOAD DESIGN  ################################

// add an extra main setting for skins
//$mainsettings['skinheader'] = iif(strlen($sdurl), '') . '
                                                         //
                              //
                              //';

//if(empty($design['designpath']))
//response.sendRedirect("home.jsp");

// ############################### REWRITE LINK  ###############################

  // url examples:
  // index.php?categoryid=1&p2_start=0&p2_articleid=1&com_action=displaycomments
  // index.php?categoryid='.$categoryid.'&logout=1


  // full transformation example:
  // index.php?categoryid=1&p2_start=0&p2_articleid=1&com_action=displaycomments
  // into this:
  // home/p2_start/0/p2_articleid/1/com_action/displaycomments


//String pathinfo  =   request.getpathinfo();
//String   url   =   request.getrequesturl();
//String   uri   =   request.getrequesturi();
//String servletpath   =   request.getservletpath();
//String querystring  =   request.getquerystring();
//String categoryida= request.getParameter("categoryid");

 

           //out.println(design[1][0]);

          String cal1     = design[1][0];
           strdir="skins/"+cal1;
out.println(strdir);

%>

<%DBbean.closeConnection();%>
<%@ include file="skin.jsp" %>    

 

 

 

************************************************************************************************

*********************************************************************************************

**************************************************************************************************

*******************************************************************************

 

skin.jsp代码:

 

 

 <%          
                       String  strgravity1="skins/gravity/gravity1.jsp"; 
                       String  strgravity2="skins/gravity/gravity2.jsp";

                       String  strbobbyzhuo1="skins/bobbyzhuo/bobby1.jsp";

                       String  strbobbyzhuo2="skins/bobbyzhuo/bobby2.jsp";

                       String  strbobbyzhuo3="skins/bobbyzhuo/bobby3.jsp";
                       

                       String  stroldschoolSD="skins/oldschoolSD/main.jsp";

 
                       if  (stroldschoolSD.equals(strdir))   
                    {%>
                 <%@ include file="skins/oldschoolSD/main.jsp" %>
                    <%}
 
                       if  (strgravity1.equals(strdir))   
                    {%>
                 <%@ include file="skins/gravity/gravity1.jsp" %>
                    <%}

                       if  (strgravity2.equals(strdir))   
                    {%>
                 <%@ include file="skins/gravity/gravity2.jsp" %>
                    <%}
                       if  (strbobbyzhuo1.equals(strdir))   
                    {%>
                 <%@ include file="skins/bobbyzhuo/bobby1.jsp" %>
                    <%}
                       if  (strbobbyzhuo2.equals(strdir))   
                    {%>
                 <%@ include file="skins/bobbyzhuo/bobby2.jsp" %>
                    <%}
                       if  (strbobbyzhuo3.equals(strdir))   
                    {%>
                 <%@ include file="skins/bobbyzhuo/bobby3.jsp" %>
                    <%}
                    

         %>
 
 

 

***************************************************************************

**************************************************************************

*****************************************************************************

 

 

index2代码:

 

 

<%@  page  import="java.sql.*,java.util.*,java.util.regex.*,java.io.*"%>


<%//@ include file="include/core.jsp" %>
<%//@ include file="adminfunctions.jsp" %>
 
                         Servlet使用JSP            
 


 
                      

JSP使用JavaBean的例子:

 
                    
<%


response.setDateHeader("Expires", 0); // date in the past
response.addHeader("Cache-Control", "no-store, no-cache, must-revalidate"); // HTTP/1.1
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.addHeader("Pragma", "no-cache"); // HTTP/1.0  
%> 
<%


 String s = "java has regex/nJava has regex/n'"+"java"+"' has pretty good regular expressions/n Regular expressions are in java" ;
String urlname;
     urlname= s.replaceAll("'","!");
    // Replace one or more spaces at the beginning of each
    // line with no spaces. Must enable MULTILINE mode:
    //s = s.replaceAll("(?m)^ +", "");
    //out.println(s.length);
    out.println(urlname);


   
%>

 

 

********************************************************************************************

********************************************************************************************

********************************************************************************************

admin文件夹中的部分内容: 

 

 

 categories.jsp

 

 

   <%@  page  import="java.sql.*,java.util.*,java.io.*,javax.servlet.*,javax.servlet.http.*"%>
<%@  page  import  ="DBbean.DBM"%> 


<%@ include file="include/core.jsp" %>
<%@ include file="adminfunctions.jsp" %>
<%!//String  strdir,skinid,dirname1,dirname2,installpath,skinname,numdesigns,previewimage,authorname,authorlink,designpath[],maxplugins[],imagepath[];%>

<%!String  DisplayCategories, DisplayCat;%>

 
<%
response.setDateHeader("Expires", 0); // date in the past
response.addHeader("Cache-Control", "no-store, no-cache, must-revalidate"); // HTTP/1.1
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.addHeader("Pragma", "no-cache"); // HTTP/1.0


String  errors[]=new  String[4];
// ############################### PrintHeader ################################
PrintHeader(out,"Category Settings");
//out.println(PrintHeader);

 

// ############################### get the value of action################################
// get the value of $action
String action1= request.getParameter("action");
if (action1==null)
{
action1="displayskins";
}
                       String  deletecategory1="deletecategory"; 
                       String  displaycategories1="displaycategories";
                       String  updatecategories1="updatecategories";
                       String  insertcategory1="insertcategory"; 
                       String createcategory1="createcategory";
                       String  fixlostcategories1="fixlostcategories"; 

                          
// ############################### INSTALL SKIN ################################

   //if  (installskin1.equals(action1))
     //{
           //取得Post上来的表单信息
      
      //out.println(strdir);

  // install the skin


// ############################ DISPLAY CATEGORIES ############################
  
if  (displaycategories1.equals(action1))
   {
//cat.DisplayCategories(out,0, "");

DisplayCategories(out,0, "");
//action1="";
   }

// ########################### FIX LOST CATEGORIES #############################
if  (fixlostcategories1.equals(action1))
{

 

 

 

}

// ############################# DELETE CATEGORY ###############################
  
if  (deletecategory1.equals(action1))
{

 

 

 

}
// ########################### UPDATE CATEGORIES ############################
  
if  (updatecategories1.equals(action1))
{

 

 

 

}
// ############################## INSERT CATEGORY ##############################
  
if  (insertcategory1.equals(action1))
{
String name1= request.getParameter("name");
String parentid1= request.getParameter("parentid");
String menuitem1= request.getParameter("menuitem");
String displayonline1= request.getParameter("displayonline");

String urlname;
//out.println(name1);
//out.println(parentid1);
//out.println(menuitem1);
//out.println(displayonline1);

  // check for errors
  if(name1==null)
  {
    errors[0] = "Please select a category name.";
  }
     //urlname = name1.replaceAll("'"'","");
     urlname = name1.replaceAll("'","");
     urlname = urlname.replaceAll(" ","_");


  //if(!isset($errors))
  //{
    // get default design id
    //$skin   = $DB->query_first("SELECT skinid FROM sd_skins WHERE activated = '1' LIMIT 1");
    //$design = $DB->query_first("SELECT designid, maxplugins FROM sd_designs WHERE skinid = '". $skin['skinid'] ."' ORDER BY designid LIMIT 1");


       ResultSet skin = null ;
       skin=DBbean.executeQuery("SELECT skinid FROM sd_skins WHERE activated = '1' LIMIT 1");
              skin.last();
              int skinrows = skin.getRow();
              skin.beforeFirst();
               int  skinsskinid[]=new  int[skinrows];
                    int  n=0; 
                 while(skin.next()) 
                     {
                     skinsskinid[n]=skin.getInt("skinid");
                    n++;
                     }
                  skin.close();

       ResultSet design = null ;
       design=DBbean.executeQuery("SELECT designid, maxplugins FROM sd_designs WHERE skinid = '"+skinsskinid[0]+"' ORDER BY designid LIMIT 1");
              design.last();
              int designrows = design.getRow();
              design.beforeFirst();
               int  designsdesignid[]=new  int[designrows];

               int  designsmaxplugins[]=new  int[designrows];
                    int  k=0; 
                 while(design.next()) 
                     {
                     designsdesignid[k]=design.getInt("designid");

                     designsmaxplugins[k]=design.getInt("maxplugins");
                    k++;
                     }
                  design.close();

    // get the display order number for the new category
    //$getcategoryrows = $DB->query("SELECT categoryid FROM sd_categories");
    //$categoryrows    = $DB->get_num_rows($getcategoryrows);
    //$displayorder    = ++$categoryrows;
       ResultSet getcategoryrows = null ;
       getcategoryrows=DBbean.executeQuery("SELECT categoryid FROM sd_categories");
              getcategoryrows.last();
              int categoryrows = getcategoryrows.getRow();
              getcategoryrows.beforeFirst();
            int displayorder    = categoryrows+1;
                  getcategoryrows.close();

 

    // insert the new category
    //$DB->query("INSERT INTO sd_categories (parentid, designid, name, urlname, displayorder)
                //VALUES ('0', '"+designsdesignid[0] +"', '"+name1+"', '"+urlname+"', '"+displayorder+"')");


    int Insertnewcategory=DBbean.executeInsert("INSERT INTO sd_categories (parentid, designid, name, urlname, displayorder)VALUES ('0', '"+designsdesignid[0] +"', '"+name1+"', '"+urlname+"', '"+displayorder+"')");

    // get the auto increment number
    //$categoryid = $DB->insert_id();

       ResultSet getnewcategoryid = null ;
       getnewcategoryid=DBbean.executeQuery("SELECT categoryid FROM sd_categories WHERE name = '"+name1+"' ");
              //getnewcategoryid.last();
              //int categoryrows = getcategoryrows.getRow();
              //getcategoryrows.beforeFirst();
               int  newcategoryid[]=new  int[1];
                    int  i=0; 
                 while(getnewcategoryid.next()) 
                     {
                     newcategoryid[i]=getnewcategoryid.getInt("categoryid");
                    i++;
                     }
                  getnewcategoryid.close();

    // enter --empty-- plugin into pagesort for new category (this is a must, do not delete)
    //for($i = 1; $i <= $design['maxplugins']; $i++)
    //{
      //$DB->query("INSERT INTO " . TABLE_PREFIX . "pagesort (categoryid, pluginid, displayorder)
                  //VALUES ('$categoryid', 1, '$i')");
    //}

    for(int pluginselectioncount1 = 0; pluginselectioncount1 < designsmaxplugins[0]; pluginselectioncount1++)
       {
                      int  count;
                       count=pluginselectioncount1+1;

    int Insertpagesortplugins=DBbean.executeInsert("INSERT INTO sd_pagesort (categoryid, pluginid, displayorder)VALUES ('"+newcategoryid[0]+"', '1', '"+count+"')");
       }

 

out.println("");
                  
PrintRedirect(out,"mycategories.jsp?categoryid="+newcategoryid[0], 1);
}
// ############################## CREATE CATEGORY ##############################
  
if  (createcategory1.equals(action1))
{
  PrintSection(out,"Create Category");
          out.println("

");


          out.println("

");
          out.println("");
          out.println("");


          out.println("

");


          out.println("

");


          out.println("

");

          out.println("

");


          out.println("

Category Name
Name your new category:
Parent Category
Select a parent for this category:");


  // first argument:  categoryid that should be selected
  // second argument: display an empty first row of categoryid with value zero (1 = yes, 0 = no)


  //DisplayCategorySelection(out,0, 1,0,"","");


         out.println("

Category Online
Display this category online?Yes No
Menu Item
Display this category in the menu?Yes No
");
 
      EndSection(out);
}


%>

<%!
// ############################ DISPLAY CATEGORIES #############################
public void DisplayCategories(JspWriter out,int parentid, String sublevelmarker) throws IOException
      {
                     // start table
               if(parentid == 0)
                   {
               PrintSection(out,"Category Settings");

                out.println("

");
                out.println("");
                out.println("");
                out.println("");
                
                  }
               else
                  {
                sublevelmarker = "- - ";
                  }

                try
                    {
                     DBM d = new DBM();
     Connection  conn  = d.conntoDb(server,database,user,password);

     ResultSet getcategories=d.executeQuery("SELECT * FROM sd_categories WHERE parentid = "+parentid+" ORDER BY displayorder");
                  getcategories.last();
              int skinrows = getcategories.getRow();
               getcategories.beforeFirst();

              int  categoryid[]=new  int[skinrows];
              int  displayorder[]=new  int[skinrows];
              String  name []=new  String[skinrows];
              String  link []=new  String[skinrows];
              //result1=new  String[skinrows];
                  int  n=0; 
                 while(getcategories.next()) 
                     {
 
                     categoryid[n]=getcategories.getInt("categoryid");
                     displayorder[n]=getcategories.getInt("displayorder");
                     name[n]=getcategories.getString("name");
                     link[n]=getcategories.getString("link");
                out.println("

");
                out.println("");

               // display the trash icon, unless it's the home category
   
                 if(categoryid[n] == 1)
                 {
                 out.println("

");

                  }
                 else
                 {
                 out.println("

");
                 }
                out.println("");
                DisplayCategories(out,categoryid[n], sublevelmarker);
               
                     n++;                    
                     }
                  getcategories.close();
                   d.closeConnection();   
                  }


                 catch(Exception e)
                    {
                     System.out.println("exception"+e.getMessage());
                    }

             // end table
            if(parentid == 0)
             {
             out.println("

Display OrderCategoryPreviewDelete
");
                out.println("
"+sublevelmarker+""+name[n]+"");


                out.println("");


                out.println("

");
                // EndSection();
             }
     }

 


public void DisplayCategories1(JspWriter out,int parentid, String sublevelmarker) throws IOException
      {


             try
                    {
                     DBM d = new DBM();
Connection  conn  = d.conntoDb(server,database,user,password);
ResultSet getcategories=d.executeQuery("SELECT * FROM sd_categories WHERE parentid = "+parentid+" ORDER BY displayorder");
                  getcategories.last();
              int skinrows = getcategories.getRow();
               getcategories.beforeFirst();

              int  categoryid[]=new  int[skinrows];
              int  displayorder[]=new  int[skinrows];
              String  name []=new  String[skinrows];
              String  link []=new  String[skinrows];
              //result1=new  String[skinrows];
                  int  n=0; 
                 while(getcategories.next()) 
                     { 
                     categoryid[n]=getcategories.getInt("categoryid");
                     displayorder[n]=getcategories.getInt("displayorder");
                     name[n]=getcategories.getString("name");
                     link[n]=getcategories.getString("link");
                out.println("");


                out.println("");
                out.println(""+sublevelmarker+""+name[n]+"");
               

 

                     n++;                    
                     }
                  getcategories.close();
                  d.closeConnection();     
                  }


                 catch(Exception e)
                    {
                     System.out.println("exception"+e.getMessage());
                    }
   

}

 

%>

*******************************************************************************

 

********************************************************************************

 

 

 

adminfunctions.jsp

 

<%@ page import="java.sql.*,java.io.*"%>
<%!String  divNameList;%> 
<%@  page  import  ="DBbean.DBM"%>
<%//@ include file="include/core.jsp" %>
<%@ include file="include/iif.jsp" %>

<%!
// ############################### PRINT HEADER ################################################################
String PrintHeader,PrintSection;
String stylepath = "styles/advanced/";
String  admindir  = "";   

 public  void PrintHeader(JspWriter out,String pagetitle) throws IOException
      {
                out.println("");
                out.println("");
                out.println("");
                out.println("");
                out.println("");
                out.println("");


                out.println("");
                out.println("");
                out.println("

");
                out.println("");
                out.println("");
                out.println("");
                out.println("

"+pagetitle+"

");
                out.println("

");
                //PrintHeader= result.toString(); 
          }
// ############################### PRINT SECTION ############################################################
public void PrintSection(JspWriter out,String sectionname) throws IOException
      {
            //StringBuffer result = new StringBuffer(2000);
                out.println("");
                out.println("");
                out.println("");
                out.println("");
                out.println("");
                out.println("");


                out.println("

");


                out.println("

");


                out.println("

");
                out.println("");
                out.println("
");
                out.println("
"+sectionname+"
");

                out.println("

");
                out.println("");
                out.println("");
                out.println("
");
              
      }

// ################################ END SECTION ################################################################

public void EndSection(JspWriter out)throws IOException
      {
            //StringBuffer result = new StringBuffer(2000);
                out.println("

");
                out.println("

");
                //return result.toString();      
      }

// ############################### PAGE REDIRECT ###############################################################
public void PrintRedirect(JspWriter out,String gotopage, int timeout) throws IOException
      {
         //String admindir  = "styles/advanced/";
         String message = "Settings Updated!" ;


                PrintSection(out,"Settings Updated!");

                out.println("

");
                out.println("");
                out.println("
Redirecting...
");
                out.println(""+message+" Click here if you are not redirected.");
                out.println("
");
                out.println("");

         EndSection(out);
         PrintFooter(out);

 // exit();      
    }


//////////////////////////////////////////////////////


public String PrintRedirect(String gotopage, int timeout)
      {
         //String admindir  = "styles/advanced/";
         String message = "Settings Updated!" ;
            StringBuffer result = new StringBuffer(2000);


result.append("

");
                result.append("");
                result.append("");
                result.append("");
                result.append("");
                result.append("");


                result.append("

");


                result.append("

");


                result.append("

");
                result.append("");
                result.append("
");
                result.append("
"+"Settings Updated!"+"
");

                result.append("

");
                result.append("");
                result.append("");
                result.append("
");

 

 

                result.append("

");
                result.append("");
                result.append("
Redirecting...
");
                result.append(""+message+" Click here if you are not redirected.");
                result.append("
");
                result.append("");


result.append("

");
                result.append("

");

 


                return result.toString();      
    }
// ############################### PRINT FOOTER ################################################################
public String PrintFooter()
      {
            //PrintSection('Settings Updated!');
            StringBuffer result = new StringBuffer(2000);
                result.append("

");
                result.append("

");
                result.append("");
                result.append("

© 2003-2006 Subdreamer, LLC.

");
                return result.toString();      
      }

///////////////////////////////////////////
public  void PrintFooter(JspWriter out) throws IOException
      {
            //PrintSection('Settings Updated!');
           
                out.println("

");
                out.println("

");
                out.println("");
                out.println("

© 2003-2006 Subdreamer, LLC.

");
      
      }

// ######################## DISPLAY CATEGORY SELECTION #########################################################
public void DisplayCategorySelection(JspWriter out,int categoryid , int showzerovalue , int parentid, String sublevelmarker, String selectname ) throws IOException
      {

// start selection box
  if(parentid == 0)
  {
    out.println("");

  }
}

// ######################## Convert all applicable characters to HTML entities  #########################
//Convert all applicable characters to HTML entities
private static final char c[] = { '<', '>', '&', '/"'};
private static final String expansion[] = {"<", ">", "&", """};

public static String HTMLEncode(String s) {
 if (s == null) return "";
 StringBuffer st = new StringBuffer();
 for (int i = 0; i < s.length(); i++) {
  boolean copy = true;
  char ch = s.charAt(i);
  for (int j = 0; j < c.length ; j++) {
   if (c[j]==ch) {
    st.append(expansion[j]);
    copy = false;
    break;
   }
  }
  if (copy) st.append(ch);
 }
 return st.toString();
}

// ########################## UPDATE PLUGIN SETTINGS ###########################################################
//function UpdatePluginSettings($settings, $refreshpage)
//{
  //global $DB;

//  while(list($key,$val) = each($settings))
  //{
    //$DB->query("");
  //}

//  PrintRedirect($refreshpage, 1);
//}


 // plugin bitfield data
  //HashMap pluginbitfield = new HashMap();
   
        //    pluginbitfield.put("canview","1");
      //      pluginbitfield.put("cansubmit","2" ); 
    //        pluginbitfield.put("candownload","4" ); 
  //          pluginbitfield.put("cancomment","8" ); 
//            pluginbitfield.put("canadmin","16" );   

 

//public void UpdatePluginSettings($settings, String refreshpage) throws IOException
  //    {

//             try
  //             {
//String server="localhost";
//String database="upload5";
//String user="root";
//String password="";
  //                   DBM d = new DBM();
   //Connection  conn  = d.conntoDb(server,database,user,password);

// int Insertpluginrow=d.executUpdate("UPDATE " . TABLE_PREFIX . "pluginsettings SET value='$val' WHERE settingid='$key'");
                      
  //               }


//             catch(Exception e)
  //               {
    //             System.out.println("exception"+e.getMessage());
      //           }
  //PrintRedirect($refreshpage, 1);

//      }


%>
 
*************************************************************************

 

***************************************************************************

你可能感兴趣的:(subdreamer的java版)