Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[DST]勋章中心 v1.0 for Discuz! 6.0.0正式版【2007-9-11更新】

[复制链接]
wangyong11 发表于 2008-3-28 18:39:47 | 显示全部楼层
已解决
后台插件设置里面的勋章中心设置里设置启用
回复

使用道具 举报

梦蝶公主 发表于 2008-4-2 22:11:09 | 显示全部楼层
装完后打开帖子一片空白
回复

使用道具 举报

papcong 发表于 2008-4-3 20:46:20 | 显示全部楼层
留名。。。。。。。
回复

使用道具 举报

jasper6313 发表于 2008-4-21 14:50:29 | 显示全部楼层
check ./plugins/medalcenter/config.cfg.php is writable!
为什么有这个问题
回复

使用道具 举报

辛勤de园丁 发表于 2008-4-28 17:53:57 | 显示全部楼层

安装不成功啊

1.我的那个viewthread.htm 文件修改过的,
已经升级数据库,上传所有文件,现在请帮忙看看手动修改那里!

www.sq169.cn/bbs

QQ 6493550
  1. <?php

  2. /*
  3.         [SupeSite/X-Space] (C)2001-2006 Comsenz Inc.
  4.         论坛查看主题页面

  5.         $RCSfile: viewthread.php,v $
  6.         $Revision: 1.46 $
  7.         $Date: 2007/06/27 17:15:09 $
  8. */

  9. if(!defined('IN_SUPESITE')) {
  10.         exit('Access Denied');
  11. }

  12. $tid = empty($_SGET['tid'])?0:intval($_SGET['tid']);

  13. //页面跳转
  14. if($tid && !empty($_SCONFIG['htmlviewnews'])) {
  15.         $_SHTML['action'] = 'viewthread';
  16.         $_SHTML['tid'] = $tid;
  17.         $_SGLOBAL['htmlfile'] = gethtmlfile($_SHTML);
  18.         ehtml('get', $_SCONFIG['htmlviewnewstime']);
  19.         $_SCONFIG['debug'] = 0;
  20. }

  21. $thread = $item = array();
  22. if($tid) {
  23.         dbconnect(1);
  24.         $query = $_SGLOBAL['db_bbs']->query('SELECT * FROM '.tname('threads', 1).' WHERE tid=\''.$tid.'\'');
  25.         $thread = $_SGLOBAL['db_bbs']->fetch_array($query);
  26. }
  27. if(empty($thread)) {
  28.         messagebox('error', 'not_found', S_URL);
  29. }

  30. $threadurl = B_URL.'/viewthread.php?tid='.$tid;

  31. $jumptobbs = false;
  32. if(!empty($thread['readperm'])) {
  33.         $jumptobbs = true;
  34. } elseif (!empty($thread['price'])) {
  35.         $jumptobbs = true;
  36. }
  37. if(B_VER == '5') {
  38.         if($thread['supe_pushstatus'] <= 0) {
  39.                 $jumptobbs = true;
  40.         }
  41. }
  42. if($jumptobbs) {
  43.         sheader($threadurl);
  44.         exit;
  45. }

  46. //重新定义
  47. if(!empty($_SCONFIG['htmlviewnews'])) {
  48.         $_SHTML['action'] = 'viewthread';
  49.         $_SHTML['tid'] = $tid;
  50.         $_SGLOBAL['htmlfile'] = gethtmlfile($_SHTML);
  51.         ehtml('get', $_SCONFIG['htmlviewnewstime']);
  52.         $_SCONFIG['debug'] = 0;
  53. }

  54. include_once(S_ROOT.'./include/common.inc.php');

  55. $perpage = 21;

  56. $fid = $thread['fid'];
  57. $query = $_SGLOBAL['db_bbs']->query('SELECT f.*, ff.* FROM '.tname('forums', 1).' f LEFT JOIN '.tname('forumfields', 1).' ff ON ff.fid=f.fid WHERE f.fid=\''.$fid.'\'');
  58. if(!$forum = $_SGLOBAL['db_bbs']->fetch_array($query)) {
  59.         messagebox('error', 'not_found');
  60. }
  61. if($forum['status'] < 1) {//隐藏板块
  62.         $jumptobbs = true;
  63. } elseif(!empty($forum['password'])) {
  64.         $jumptobbs = true;
  65. } elseif(!empty($forum['viewperm'])) {
  66.         $viewpermarr = explode("\t", $forum['viewperm']);
  67.         if(!in_array('7', $viewpermarr)) {
  68.                 $jumptobbs = true;
  69.         }
  70. } elseif(!empty($forum['redirect'])) {
  71.         $forumurl = $forum['redirect'];
  72.         $jumptobbs = true;
  73. }
  74. if($jumptobbs) {
  75.         sheader($threadurl);
  76.         exit;
  77. }

  78. @include_once(S_ROOT.'./data/system/bbsforums.cache.php');
  79. if(!empty($_SGLOBAL['bbsforumarr']) && !empty($_SGLOBAL['bbsforumarr'][$forum['fid']]['name'])) {
  80.         $forum['name'] = $_SGLOBAL['bbsforumarr'][$forum['fid']]['name'];
  81. }

  82. $iarr = array();
  83. $listcount = $thread['replies']+1;
  84. unset($_SGET['lastpost']);
  85. $page = 1;
  86. $listkey = 'posts';
  87. $action = 'viewthread';
  88. $item['listcount'] = $listcount;
  89. $item['tid'] = $tid;
  90. $space['jammer'] = 0;
  91. include_once(S_ROOT.'./include/bbs_post.inc.php');
  92. $iarr = $item[$listkey];

  93. $thread['attachments'] = array();
  94. $thread['message'] = $iarr[$item['pid']]['message'];
  95. $description = shtmlspecialchars(str_replace(array("\r", "\n"), '', cutstr(trim(strip_tags($thread['message'])), 200)));
  96. if(!empty($iarr[$item['pid']]['attachments'])) $thread['attachments'] = $iarr[$item['pid']]['attachments'];
  97. unset($iarr[$item['pid']]);

  98. $keywords = $forum['name'].','.$thread['subject'];

  99. $guidearr = array();
  100. $guidearr[] = array('url' => geturl('action/bbs'),'name' => $channels['menus']['bbs']['name']);
  101. $guidearr[] = array('url' => geturl('action/forumdisplay/fid/'.$forum['fid']),'name' => $forum['name']);
  102. $guidearr[] = array('url' => B_URL.'/viewthread.php?tid='.$tid, 'name' => $lang['view_thread']);

  103. $title = $thread['subject'].' - '.$forum['name'].' - '.$_SCONFIG['sitename'];

  104. $tplname = 'bbs_viewthread';

  105. $title = strip_tags($title);
  106. $keywords = strip_tags($keywords);
  107. $description = strip_tags($description);

  108. include template($tplname);

  109. ob_out();

  110. if(!empty($_SCONFIG['htmlviewnews'])) {
  111.         ehtml('make');
  112. } else {
  113.         maketplblockvalue('cache');
  114. }

  115. ?>
复制代码

[ 本帖最后由 辛勤de园丁 于 2008-4-28 18:21 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

毒狼 发表于 2008-5-10 21:30:37 | 显示全部楼层
http://www.0453c.com/plugin.php? ... ter&module=main

无法显示网页
您要访问的网页有问题,无法显示。

--------------------------------------------------------------------------------

请尝试以下操作:

打开 www.0453c.com  主页,然后查找指向您感兴趣信息的链接。
单击刷新按钮,或以后再试。

单击搜索,寻找 Internet 上的信息。
也可查看相关站点列表。




HTTP 500 - 内部服务器错误
Internet Explorer  
不行呢??
回复

使用道具 举报

le88 发表于 2008-6-1 19:04:44 | 显示全部楼层
这个到底能用么,怎么那么多人出问题了……
回复

使用道具 举报

卟小落 发表于 2008-6-16 19:16:42 | 显示全部楼层
完成安装了~谢谢a!!!
回复

使用道具 举报

lhg0928 发表于 2008-6-22 12:29:46 | 显示全部楼层
升级数据库里出里来:
升级错误,MySQL 提示: Duplicate column name 'type' ,请返回。
是怎么回事
回复

使用道具 举报

dellnotebook 发表于 2008-6-22 16:15:11 | 显示全部楼层
6.1版本怎么装不了啊
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-21 23:33 , Processed in 0.039889 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表