帝国cms留言板功能如何使用
时间:2023年07月10日
/来源:网络
/编辑:佚名
留言板使用
留言板功能如何使用,爱折腾的摄影大叔在建自己的博客站时, 用到了 帝国cms自带的留言功能。
这里记录一下,具体步骤如下:
第一步:在需要页面需要的调用区域输入表单,css样式根据自己的网站风格设定;
表单如下:
<form action="[!--news.url--]e/enews/index.php" method="post" name="form1" id="form1" class="contact-form">
<fieldset class="col-md-4 col-sm-6 col-xs-12">
<input type="text" id="name" name="name" placeholder="昵称">
</fieldset>
<fieldset class="col-md-4 col-sm-6 col-xs-12">
<input type="email" id="email" name="email" placeholder="邮箱">
</fieldset>
<fieldset class="col-md-4 col-sm-12 col-xs-12" style=" position: relative;">
<input type="text" id="subject" name="key" placeholder="验证码">
<img src="[!--news.url--]e/ShowKey/?v=gbook" onclick="this.src= this.src +'&xx='+Math.random()" alt="看不清楚,点击刷新" style="position: absolute;top: 2px;right: 16px;">//验证码区域
</fieldset>
<fieldset class="col-md-12 col-sm-12 col-xs-12">
<textarea name="lytext" id="message" cols="30" rows="6" placeholder="想说的话……"></textarea>
</fieldset>
<fieldset class="col-md-12 col-sm-12 col-xs-12">
<input type="submit" class="button default" value="发送给">
</fieldset>
<input name="enews" type="hidden" id="enews" value="AddGbook">
<input type="hidden" name="bid" value="1">
<input type="hidden" name="ecmsfrom" value="[!--news.url--]about/">
</form>
第二步:后台开启前台留言功能
帝国cms后台—系统—系统参数设置—留言板(开启)
第三步:验证码管理
1:帝国cms后台—系统—系统参数设置—信息设置—留言验证码勾选(开启 )
2:帝国cms后台—系统—系统参数设置—验证码配色
3:验证码图片大小设置
找到:/e/ShowKey/index.php
约第78行或搜索:
//显示验证码
function ShowKey($v)
找到:
$img=imagecreate(47,20); 中的数字(47,20)这两个数字 和后面三个地方的(47,20)
说明:(47,20)这里的数字和自己设置有关,不是一样的。
第四步:找到公共模板—留言模板(修改留言板模板)
第五步:设置留言权限
1、登录后台,单击“插件”菜单,选择“管理留言”子菜单,进入管理留言界面:
至此;留言板功能开启设置完成!具体留言板功能参考:帝国cms官方教程
留言板功能如何使用,爱折腾的摄影大叔在建自己的博客站时, 用到了 帝国cms自带的留言功能。
这里记录一下,具体步骤如下:
第一步:在需要页面需要的调用区域输入表单,css样式根据自己的网站风格设定;
表单如下:
<form action="[!--news.url--]e/enews/index.php" method="post" name="form1" id="form1" class="contact-form">
<fieldset class="col-md-4 col-sm-6 col-xs-12">
<input type="text" id="name" name="name" placeholder="昵称">
</fieldset>
<fieldset class="col-md-4 col-sm-6 col-xs-12">
<input type="email" id="email" name="email" placeholder="邮箱">
</fieldset>
<fieldset class="col-md-4 col-sm-12 col-xs-12" style=" position: relative;">
<input type="text" id="subject" name="key" placeholder="验证码">
<img src="[!--news.url--]e/ShowKey/?v=gbook" onclick="this.src= this.src +'&xx='+Math.random()" alt="看不清楚,点击刷新" style="position: absolute;top: 2px;right: 16px;">//验证码区域
</fieldset>
<fieldset class="col-md-12 col-sm-12 col-xs-12">
<textarea name="lytext" id="message" cols="30" rows="6" placeholder="想说的话……"></textarea>
</fieldset>
<fieldset class="col-md-12 col-sm-12 col-xs-12">
<input type="submit" class="button default" value="发送给">
</fieldset>
<input name="enews" type="hidden" id="enews" value="AddGbook">
<input type="hidden" name="bid" value="1">
<input type="hidden" name="ecmsfrom" value="[!--news.url--]about/">
</form>
第二步:后台开启前台留言功能
帝国cms后台—系统—系统参数设置—留言板(开启)
第三步:验证码管理
1:帝国cms后台—系统—系统参数设置—信息设置—留言验证码勾选(开启 )
2:帝国cms后台—系统—系统参数设置—验证码配色
3:验证码图片大小设置
找到:/e/ShowKey/index.php
约第78行或搜索:
//显示验证码
function ShowKey($v)
找到:
$img=imagecreate(47,20); 中的数字(47,20)这两个数字 和后面三个地方的(47,20)
说明:(47,20)这里的数字和自己设置有关,不是一样的。
第四步:找到公共模板—留言模板(修改留言板模板)
第五步:设置留言权限
1、登录后台,单击“插件”菜单,选择“管理留言”子菜单,进入管理留言界面:
至此;留言板功能开启设置完成!具体留言板功能参考:帝国cms官方教程
新闻资讯 更多
- 【帝国cms教程】帝国CMS模板变量$GLOBALS[navclassid]用法分析04-03
- 【帝国cms教程】鲜为人知帝国CMS内容页调用上一篇和下一篇的精华方法汇总04-03
- 【帝国cms教程】怎么快速找出帝国CMS数据库配置文件路径及迁移网站后修改技巧!04-03
- 【帝国cms教程】帝国CMS模板$GLOBALS[navclassid]用法详解04-03
- 【帝国cms教程】帝国cms 7.5版列表页分页样式修改笔记04-02
- 【帝国cms教程】解决帝国CMS搜索页面模板不支持灵动标签和万能标签的方法04-02
- 【帝国cms教程】帝国CMS只备份栏目和模板的方法04-02
- 【帝国cms教程】帝国CMS怎样删除清空数据库记录?04-02
热门文章
- 178Moban源码谈谈免费源码与收费源码的区别
- 2帝国CMS忘记后台登陆用户名、密码、认证码的解决方法
- 3帝国CMS(EmpireCMS) v7.5后台任意代码执行漏洞及具体修复方法
- 4帝国CMS和WordPress 哪个好?哪个适合建站?
- 5如何解决Discuz的密码错误次数过多请15分钟后登陆的问题
- 6帝国cms灵动标签取得内容和栏目链接地址
- 7emlog pro 注册码“开心”教程(如果有一天,emlog官方版 或者 emlog免费版 跑路了,那用户怎么办?)
- 8织梦CMS在nginx下设置伪静态方法(附nginx伪静态规则)
- 9帝国cms后台登录出现”您还未登录”怎么解决?
- 10帝国cms7.5忘记登录密码 和忘记登录认证码以及多次登录 失败被锁定解决办法