我在文章体系模型中添加了两个字段,member:一般会员能够检查的内容;vip:VIP会员能够检查的内容
我想完成的作用是:

  游客:翻开网页后,看到[newstext]字段里的内容
  一般会员:登陆后,看到[member]字段里的内容(但[newstext]字段和[vip]字段里的内容就不显现了)
  VIP会员:登陆后,看到[vip]字段里的内容(但[newstext]字段和[member]字段里的内容就不显现了)

我在论坛找到下面这个验证权限的show.php文件(http://bbs.phome.net/ShowThread/?threadid=89138&forumid=13),依照这个思路进行了修正。但修正后呈现了两个问题:

  1、游客翻开网页后,[newstext]字段里的内容没有显现出来,正文处是一片空白。
  2、VIP会员登陆后,正文处[vip]字段和[member]字段里的内容都显现出来了,而不是只显现[vip]字段的内容。

下面便是我修正过的show.php,我想可能是我有改错的当地,费事帮我看看是哪里改错了好吗?
<?php
require("class/connect.php");
include("class/db_sql.php");
include("class/config.php");
include("class/class.php");
$link=db_connect();
$empire=new mysqlquery();
$classid=intval($_GET['classid']);
$id=intval($_GET['id']);
$muserid=(int)getcvar('mluserid');//用户id
$musername=RepPostVar(getcvar('mlusername'));//用户名
$mgroupid=(int)getcvar('mlgroupid');//会员组id
if($classid&&$id&&$class_r[$classid][tbname]&&$muserid)
{
$r=$empire->fetch1("select id,member from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 1");
if($r[id])
{
?>
document.write('<?=$r[member]?>');
<?php
}
}
else
{
?>
document.write('<?=$r[newstext]?>'); 这儿本来是登录后才干检查这句话,我给改成了<?=$r[newstext]?>
<?php
}

下面这段 if / else 本来的文件里没有,是我仿制上面那段然后修正的,调用[vip]这个字段的内容
if($classid&&$id&&$class_r[$classid][tbname]&&$muserid)
{
$r=$empire->fetch1("select id,vip from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 2");    这儿我将会员组ID由1改成了2
   if($r[id])
{
?>
document.write('<?=$r[vip]?>');
<?php
}
}
else
{
?>
document.write('<?=$r[newstext]?>');
<?php
}


db_close();
$empire=null;
?>

修正栏目,把内容页扩展名改为.php
然后模板里加php验证代码
模板加这个代码
<!--code.start-->?
if(!$_COOKIE[ecmsmlgroupid])
{
echo "您不是会员";
}
elseif($_COOKIE[ecmsmlgroupid]==1)
{
echo"一般会员";
}
elseif($_COOKIE[ecmsmlgroupid]==2)
{
echo"VIP会员";
}
?<!--code.end-->

ecms为你的cookie前缀,能够看e/class/config.php &nbsp

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:帝国cms内容模板下载验证权限的问题发布于2023-01-24 08:53:04

相关推荐