phpwind如何在门户上增加论坛统计信息
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-10 22:15:26 浏览: 评论:0
大家都知道phpwind都自带个门户系统,可以让论坛很好的用建设资讯网站的方式来展现论坛帖子,但官方默认门户上是没有体现论坛今日帖子等其他统计信息的,如果我们有需要在门户网站上出现统计信息,那需要如何修改网站呢?
门户的默认模板文件在mode\area\template\里头,我们一般会想论坛统计信息放在头部,那我们就修改header.htm文件里头吧,查找如下代码:
- <!--#}#-->
- <div id="main">
在这段代码后面附上代码:
- <div class="forum-info cc gray" style=" margin-bottom:10px">
- <div class="fr">主题:$topics | 帖子:$article | 会员:$totalmember | 新会员:<span class="black">$newmember</span> <a href="rss.php" target="_blank" title="RSS订阅本版面最新帖子"><img src="$imgpath/$stylepath/rss.png" align="absmiddle" /></a></div>
- <!--
- EOT;
- if($db_todaypost){print <<<EOT
- -->
- 今日:$tposts | 昨日:$yposts |
- <!--
- EOT;
- }print <<<EOT
- -->
- 最高日:$hposts </div>
然后在mode\area\index.php 里头查找
pwCache::getData(D_P.'data/bbscache/area_config.php');
在这下面贴上代码:
- $query = $db->query("SELECT f.fid,f.name,f.type,f.childid,fd.tpost,fd.topic,fd.article FROM pw_forums f LEFT JOIN pw_forumdata fd USING(fid) WHERE f.ifsub='0' AND f.ifcms!=2 $sqlwhere ORDER BY f.vieworder");
- while ($forums = $db->fetch_array($query)) {
- if ($forums['type'] === 'forum') {
- //$article += $forums['article']; 主题
- $topics += $forums['topics'];
- $tposts += $forums['tpost'];
- }
- }
- $db->free_result($query);
- if ($hposts < $tposts) {
- pwQuery::update('pw_bbsinfo', 'id=:id', array(1), array('hposts'=>$tposts));
- $hposts = $tposts;
- }
- $rt = $db->get_one("SELECT * FROM `pw_bbsinfo`");
- $yposts=$rt['yposts'];
- $totalmember=$rt['totalmember'];
- $newmember=$rt['newmember'];
更新一下门户缓存后即可看到页面效果。
Tags: phpwind 门户 论坛统计
相关文章
- ·wamp本地安装phpwind问题:‘RewriteEngine’(2013-11-15)
- ·以phpwind为例分享nofollow的使用方法(2013-11-15)
- ·win03+IIS安装phpwind9.0时提示pdo_mysql未安装(2013-11-15)
- ·jsp网站到phpwind论坛的同步登陆登出实现(2013-11-15)
- ·win2003+iis服务器phpwind网址伪静态处理方法(2013-11-15)
- ·关于选择phpwind和Discuz程序做论坛的一点个人看法(2013-11-15)
- ·jsp网站到phpwind论坛的同步登陆登出实现(2014-01-10)
- ·win2003+iis服务器phpwind网址伪静态处理方法(2014-01-10)
- ·PHPwind论坛怎么设置伪静态 (2014-01-10)
- ·做论坛用phpwind好还是Discuz好?(2014-01-10)
- ·教你如何成功通过修改数据库实现更换phpwind的APP账号(2014-01-10)
- ·网站与phpwind用户同步的方法(2014-04-03)
- ·phpwind 9.0解决QQ登陆,新浪微博登陆乱码(2014-04-03)
- ·ixwebhosting空间下phpwind 伪静态设置(2014-04-10)
- ·PHPwind论坛怎样实现301跳转(2014-04-10)
- ·解决phpwind安装出现403Forbidden问题(2014-04-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)