@@ -74,7 +74,6 @@ | |||||
} | } | ||||
?> | ?> | ||||
</select> | </select> | ||||
<span>(为了系统安全,游客投稿已禁止,开启游客投稿功能,到会员发布文件删除禁止游客操作)</span> | |||||
</td> | </td> | ||||
</tr> | </tr> | ||||
<tr> | <tr> | ||||
@@ -75,7 +75,6 @@ | |||||
} | } | ||||
?> | ?> | ||||
</select> | </select> | ||||
<span>(为了系统安全,游客投稿已禁止,开启游客投稿功能,到会员发布文件删除禁止游客操作)</span> | |||||
</td> | </td> | ||||
</tr> | </tr> | ||||
<tr> | <tr> | ||||
@@ -480,7 +480,7 @@ CREATE TABLE `#@__member` ( | |||||
`loginip` char(46) NOT NULL default '', | `loginip` char(46) NOT NULL default '', | ||||
`checkmail` smallint(6) NOT NULL default '-1', | `checkmail` smallint(6) NOT NULL default '-1', | ||||
`loginerr` tinyint NULL DEFAULT 0, | `loginerr` tinyint NULL DEFAULT 0, | ||||
`send_max` int DEFAULT '1', | |||||
`send_max` int DEFAULT '0', | |||||
`user_money` decimal(10, 2) unsigned NULL default 0.00, | `user_money` decimal(10, 2) unsigned NULL default 0.00, | ||||
`pmid` int(8) UNSIGNED NULL DEFAULT 0, | `pmid` int(8) UNSIGNED NULL DEFAULT 0, | ||||
PRIMARY KEY (`mid`), | PRIMARY KEY (`mid`), | ||||
@@ -101,7 +101,7 @@ DELETE FROM `#@__sysconfig` WHERE `#@__sysconfig`.`varname` = 'cfg_vdcode_member | |||||
ALTER TABLE `#@__arctype` CHANGE COLUMN `iscross` `cross` tinyint(1) NOT NULL DEFAULT 0 AFTER `ishidden`; | ALTER TABLE `#@__arctype` CHANGE COLUMN `iscross` `cross` tinyint(1) NOT NULL DEFAULT 0 AFTER `ishidden`; | ||||
ALTER TABLE `#@__admin` ADD COLUMN `loginerr` tinyint NULL DEFAULT 0 AFTER `loginip`; | ALTER TABLE `#@__admin` ADD COLUMN `loginerr` tinyint NULL DEFAULT 0 AFTER `loginip`; | ||||
ALTER TABLE `#@__member` ADD COLUMN `loginerr` tinyint NULL DEFAULT 0 AFTER `checkmail`; | ALTER TABLE `#@__member` ADD COLUMN `loginerr` tinyint NULL DEFAULT 0 AFTER `checkmail`; | ||||
ALTER TABLE `#@__member` ADD COLUMN `send_max` int NULL DEFAULT 1 AFTER `loginerr`; | |||||
ALTER TABLE `#@__member` ADD COLUMN `send_max` int NULL DEFAULT 0 AFTER `loginerr`; | |||||
-- 6.2.3 | -- 6.2.3 | ||||
INSERT INTO `#@__sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_bizcore_api', 'DedeBIZ Core接口服务器', 1, 'string', 'http://localhost:8087'); | INSERT INTO `#@__sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_bizcore_api', 'DedeBIZ Core接口服务器', 1, 'string', 'http://localhost:8087'); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
if ($cfg_mb_album == 'N') { | if ($cfg_mb_album == 'N') { | ||||
ShowMsg("系统关闭了图片功能,您浏览的功能不可用", "-1"); | ShowMsg("系统关闭了图片功能,您浏览的功能不可用", "-1"); | ||||
exit(); | exit(); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
if ($cfg_mb_album == 'N') { | if ($cfg_mb_album == 'N') { | ||||
ShowMsg("系统关闭了图片功能,您浏览的功能不可用", "-1"); | ShowMsg("系统关闭了图片功能,您浏览的功能不可用", "-1"); | ||||
exit(); | exit(); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/userlogin.class.php"); | require_once(DEDEINC."/userlogin.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
@@ -14,7 +14,6 @@ $aid = isset($aid) && is_numeric($aid) ? $aid : 0; | |||||
$channelid = isset($channelid) && is_numeric($channelid) ? $channelid : 1; | $channelid = isset($channelid) && is_numeric($channelid) ? $channelid : 1; | ||||
//删除收藏 | //删除收藏 | ||||
if ($dopost == "delStow") { | if ($dopost == "delStow") { | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
$type = empty($type) ? '' : HtmlReplace(trim($type), -1); | $type = empty($type) ? '' : HtmlReplace(trim($type), -1); | ||||
$tupdate = ''; | $tupdate = ''; | ||||
if (!empty($type)) { | if (!empty($type)) { | ||||
@@ -30,7 +29,6 @@ if ($dopost == "delStow") { | |||||
} | } | ||||
//添加投稿 | //添加投稿 | ||||
else if ($dopost == "addArc") { | else if ($dopost == "addArc") { | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
if ($channelid == 1) { | if ($channelid == 1) { | ||||
$addcon = 'article_add.php?channelid='.$channelid; | $addcon = 'article_add.php?channelid='.$channelid; | ||||
} else if ($channelid == 2) { | } else if ($channelid == 2) { | ||||
@@ -54,7 +52,6 @@ else if ($dopost == "addArc") { | |||||
} | } | ||||
//修改投稿 | //修改投稿 | ||||
else if ($dopost == "edit") { | else if ($dopost == "edit") { | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
if ($channelid == 1) { | if ($channelid == 1) { | ||||
$edit = 'article_edit.php?channelid='.$channelid; | $edit = 'article_edit.php?channelid='.$channelid; | ||||
} else if ($channelid == 2) { | } else if ($channelid == 2) { | ||||
@@ -134,7 +131,6 @@ else if ($dopost == "delArc") { | |||||
} | } | ||||
//查看文档 | //查看文档 | ||||
else if ($dopost == "viewArchives") { | else if ($dopost == "viewArchives") { | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
if ($type == "") { | if ($type == "") { | ||||
header("location:".$cfg_phpurl."/view.php?aid=".$aid); | header("location:".$cfg_phpurl."/view.php?aid=".$aid); | ||||
} else { | } else { | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/userlogin.class.php"); | require_once(DEDEINC."/userlogin.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/userlogin.class.php"); | require_once(DEDEINC."/userlogin.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__).'/config.php'); | require_once(dirname(__FILE__).'/config.php'); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
$menutype = 'mydede'; | $menutype = 'mydede'; | ||||
$menutype_son = 'op'; | $menutype_son = 'op'; | ||||
$_menu_buy = true; | $_menu_buy = true; | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
$dopost = isset($dopost)? $dopost : ''; | $dopost = isset($dopost)? $dopost : ''; | ||||
$menutype = 'mydede'; | $menutype = 'mydede'; | ||||
$menutype_son = 'op'; | $menutype_son = 'op'; | ||||
@@ -7,7 +7,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
$svali = GetCkVdValue(); | $svali = GetCkVdValue(); | ||||
if (strtolower($vdcode) != $svali || $svali == "") { | if (strtolower($vdcode) != $svali || $svali == "") { | ||||
ShowMsg("验证码不正确", "-1"); | ShowMsg("验证码不正确", "-1"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/userlogin.class.php"); | require_once(DEDEINC."/userlogin.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
@@ -9,7 +9,6 @@ | |||||
* @link https://www.dedebiz.com | * @link https://www.dedebiz.com | ||||
*/ | */ | ||||
require_once(dirname(__FILE__)."/config.php"); | require_once(dirname(__FILE__)."/config.php"); | ||||
CheckRank(0, 0);//禁止游客操作 | |||||
require_once(DEDEINC."/dedetag.class.php"); | require_once(DEDEINC."/dedetag.class.php"); | ||||
require_once(DEDEINC."/customfields.func.php"); | require_once(DEDEINC."/customfields.func.php"); | ||||
require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | require_once(DEDEMEMBER."/inc/inc_catalog_options.php"); | ||||