大家好,对帝国cms内容模板验证权限的问题感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看帝国cms内容模板验证权限的问题的例子吧。
我在文章系统模型中添加了两个字段,member:普通会员可以查看的内容;vip:VIP会员可以查看的内容
我想实现的效果是:
我在论坛找到下面这个验证权限的show.php文件(http://bbs.phome.net/ShowThread/?threadid=89138&forumid=13),按照这个思路进行了修改。但修改后出现了两个问题:
下面就是我修改过的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验证代码
模板加这个代码
<?
if(!$_COOKIE[ecmsmlgroupid])
{
echo "您不是会员";
}
elseif($_COOKIE[ecmsmlgroupid]==1)
{
echo"普通会员";
}
elseif($_COOKIE[ecmsmlgroupid]==2)
{
echo"VIP会员";
}
?>
ecms为你的cookie前缀,可以看e/class/config.php