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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] 水客版宠物forD4正式版

[复制链接]
Neoion 发表于 2006-1-18 01:18:36 | 显示全部楼层
还是期待楼主发布清晰详细的安装说明之后再装。

谢谢楼主的辛勤劳动
回复

使用道具 举报

离恨天 发表于 2006-1-18 01:35:28 | 显示全部楼层
原帖由 阿狗狗 于 2006-1-18 01:05 发表

我考慮考慮   整理看看

插件修改的任务MS交给你了。

辛苦了。
回复

使用道具 举报

hellobbs 发表于 2006-1-18 03:33:09 | 显示全部楼层
应该不错的,尝试安装
回复

使用道具 举报

Eor 发表于 2006-1-18 06:07:48 | 显示全部楼层
原帖由 阿狗狗 于 2006-1-17 23:45 发表




先把你的viewthread.php備份
再用這個試試




[code]
<?php

/*
        [DISCUZ!] viewthread.php - view thread posts
        This is NOT a freeware, use is subject to license t ...

老大还是出错啊!

本帖子中包含更多资源

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

x
回复

使用道具 举报

阿狗狗 发表于 2006-1-18 08:40:36 | 显示全部楼层
測試過了  沒有問題
我用你的文件一樣正常顯示
你看看是不是其他地方沒弄好吧


  1. <?php

  2. /*
  3.         [DISCUZ!] viewthread.php - view thread posts
  4.         This is NOT a freeware, use is subject to license terms

  5.         Version: 4.0.0
  6.         Web: [url]http://www.comsenz.com[/url]
  7.         Copyright: 2001-2005 Comsenz Technology Ltd.
  8.         Last Modified: 2005-3-6 15:38
  9. */

  10. define('CURSCRIPT', 'viewthread');

  11. require_once './include/common.inc.php';
  12. require_once DISCUZ_ROOT.'./include/forum.func.php';
  13. require_once DISCUZ_ROOT.'./include/discuzcode.func.php';
  14. //悬赏提问帖 start
  15. @require_once DISCUZ_ROOT.'./forumdata/cache/cache_forumdisplay.php';
  16. //悬赏提问帖 end


  17. $discuz_action = 3;

  18. $query = $db->query("SELECT t.*, tm.uid AS moduid, tm.username AS modusername, tm.dateline AS moddateline, tm.action AS modaction
  19.         FROM {$tablepre}threads t LEFT JOIN {$tablepre}threadsmod tm ON t.moderated=1 AND tm.tid=t.tid
  20.         WHERE t.tid='$tid' AND t.displayorder>='0'");

  21. if(!$thread = $db->fetch_array($query)) {
  22.         showmessage('thread_nonexistence');
  23. } elseif($thread['moderated']) {
  24.         if($thread['modaction']) {
  25.                 include language('modactions');
  26.                 $thread['moddateline'] = gmdate("$dateformat $timeformat", $thread['moddateline'] + $timeoffset * 3600);
  27.                 $thread['modaction'] = $modactioncode[$thread['modaction']];
  28.         } else {
  29.                 $db->query("UPDATE {$tablepre}threads SET moderated='0' WHERE tid='$tid'", 'UNBUFFERED');
  30.         }
  31. }

  32. $codecount = 0;
  33. $oldtopics = isset($_DCOOKIE['oldtopics']) ? $_DCOOKIE['oldtopics'] : 'D';
  34. if(strpos($oldtopics, 'D'.$tid.'D') === FALSE) {
  35.         $oldtopics = 'D'.$tid.$oldtopics;
  36.         if(strlen($oldtopics) > 3072) {
  37.                 $oldtopics = preg_replace("((D\d+)+D).*$", "\\1", substr($oldtopics, 0, 3072));
  38.         }
  39.         dsetcookie('oldtopics', $oldtopics, 3600);
  40. }

  41. if($lastvisit < $thread['lastpost'] && (!isset($_DCOOKIE['f'.$fid]) || $thread['lastpost'] > $_DCOOKIE['f'.$fid])) {
  42.         dsetcookie('fid'.$fid, $thread['lastpost'], 3600);
  43. }

  44. $navigation = "&raquo; <a href="forumdisplay.php?fid=$fid".($extra ? '&'.preg_replace("/^(&)*/", '', $extra) : '')."">$forum[name]</a> &raquo; $thread[subject]";
  45. $navtitle = $thread['subject'].' - '.strip_tags($forum['name']).' - ';
  46. if($forum['type'] == 'sub') {
  47.         $query = $db->query("SELECT fid, name FROM {$tablepre}forums WHERE fid='$forum[fup]'");
  48.         $fup = $db->fetch_array($query);
  49.         $navigation = "&raquo; <a href="forumdisplay.php?fid=$fup[fid]">$fup[name]</a> $navigation";
  50.         $navtitle = $navtitle.' - '.strip_tags($fup['name']);
  51. }

  52. if($thread['typeid'] && isset($forum['threadtypes']['types'][$thread['typeid']])) {
  53.         $thread['subject'] = ($forum['threadtypes']['listable'] ? '<a href="forumdisplay.php?fid='.$fid.'&filter=type&typeid='.$thread['typeid'].'">['.$forum['threadtypes']['types'][$thread['typeid']].']</a>' : '['.$forum['threadtypes']['types'][$thread['typeid']].']').' '.$thread['subject'];
  54. }

  55. if(empty($forum['allowview'])) {
  56.         if(!$forum['viewperm'] && !$readaccess) {
  57.                 showmessage('group_nopermission', NULL, 'NOPERM');
  58.         } elseif($forum['viewperm'] && !forumperm($forum['viewperm'])) {
  59.                 showmessage('forum_nopermission', NULL, 'NOPERM');
  60.         }
  61. }

  62. if($thread['readperm'] && $thread['readperm'] > $readaccess && !$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
  63.         showmessage('thread_nopermission', NULL, 'NOPERM');
  64. }

  65. if($thread['price'] > 0) {
  66.         if($maxchargespan && $timestamp - $thread['dateline'] >= $maxchargespan * 3600) {
  67.                 $db->query("UPDATE {$tablepre}threads SET price='0' WHERE tid='$tid'");
  68.                 $thread['price'] = 0;
  69.         } else {
  70.                 if(!$discuz_uid) {
  71.                         showmessage('group_nopermission', NULL, 'NOPERM');
  72.                 } elseif(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
  73.                         $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
  74.                         if(!$db->num_rows($query)) {
  75.                                 require_once DISCUZ_ROOT.'./include/threadpay.inc.php';
  76.                                 exit();
  77.                         }
  78.                 }               
  79.         }
  80. }

  81. if($forum['password'] && $forum['password'] != $_DCOOKIE['fidpw'.$fid]) {
  82.         header("Location: {$boardurl}forumdisplay.php?fid=$fid&sid=$sid");
  83.         exit();
  84. }

  85. $raterange = $modratelimit && $adminid == 3 && !$forum['ismoderator'] ? array() : $raterange;

  86. $extra = rawurlencode($extra);
  87. $allowgetattach = !empty($forum['allowgetattach']) || ($allowgetattach && !$forum['getattachperm']) || forumperm($forum['getattachperm']);

  88. //get trade thread status (pos. -1)
  89. $allowposttrade = substr(sprintf('%02b', $forum['allowtrade']), -1, 1);

  90. //get pay to author status (pos. -2)
  91. $allowpaytoauthor = substr(sprintf('%02b', $forum['allowtrade']), -2, 1);

  92. if(empty($action) && $tid) {

  93.         if($discuz_uid && $newpm) {
  94.                 require_once DISCUZ_ROOT.'./include/pmprompt.inc.php';
  95.         }

  96.         $highlightstatus = isset($highlight) && str_replace('+', '', $highlight) ? 1 : 0;
  97.         $maxsigrows = $maxsigrows ? 'style="height: '.$maxsigrows.'em"' : '';

  98.         $page = empty($page) || !ispage($page) ? 1 : $page;
  99.         $start_limit = $numpost = ($page - 1) * $ppp;
  100.         if($start_limit > $thread['replies']) {
  101.                 $start_limit = $numpost = 0;
  102.                 $page = 1;
  103.         }

  104.         $multipage = multi($thread['replies'] + 1, $ppp, $page, "viewthread.php?tid=$tid&extra=$extra".(isset($highlight) ? "&highlight=".rawurlencode($highlight) : ''));

  105.         $polloptions = array();
  106.         if($thread['poll']) {
  107.                 $query = $db->query("SELECT pollopts FROM {$tablepre}polls WHERE tid='$tid'");
  108.                 if(is_array($pollopts = unserialize($db->result($query, 0)))) {
  109.                         foreach($pollopts['options'] as $option) {
  110.                                 $polloptions[] = array
  111.                                         (
  112.                                         'option'        => dhtmlspecialchars(stripslashes($option[0])),
  113.                                         'votes'                => $option[1],
  114.                                         'width'                => @round($option[1] * 300 / $pollopts['max']) + 2,
  115.                                         'percent'        => @sprintf ("%01.2f", $option[1] * 100 / $pollopts['total'])
  116.                                         );
  117.                         }

  118.                         $allowvote = $allowvote && (empty($thread['closed']) || $alloweditpoll) && !in_array(($discuz_uid ? $discuz_user : $onlineip), $pollopts['voters']);
  119.                         $optiontype = $pollopts['multiple'] ? 'checkbox' : 'radio';
  120.                 } else {
  121.                         $db->query("UPDATE {$tablepre}threads SET poll='0' WHERE tid='$tid'", 'UNBUFFERED');
  122.                 }
  123.         }

  124.         $extcredits_thread = array();
  125.         foreach($extcredits as $key => $value) {
  126.                 if($value['showinthread']) {
  127.                         $extcredits_thread['extcredits'.$key] = array('title' => $value['title'], 'unit' => $value['unit']);
  128.                 }
  129.         }

  130.         $fieldsadd = '';
  131.         if(is_array($_DCACHE['fields_thread'])) {
  132.                 foreach($_DCACHE['fields_thread'] as $field) {
  133.                         $fieldsadd .= ', mf.field_'.$field['fieldid'];
  134.                 }
  135.         }

  136.         $postlist = $attachtags = array();
  137.         $newpostanchor = $postcount = $attachpids = 0;

  138.         $query = $db->query("SELECT p.*, m.uid, m.username, m.groupid, m.regdate, m.lastactivity, m.posts, m.digestposts, m.oltime, m.pageviews, m.credits, m.extcredits1, m.extcredits2, m.extcredits3, m.extcredits4, m.extcredits5, m.extcredits6, m.extcredits7, m.extcredits8, m.email, m.gender, m.showemail,b.mypetname,b.mypet,b.mypetname,b.mypetlevel,b.mypetdead,b.openpk,b.mypethp,b.mypetsp,b.mypetexp,mypetsex,b.mypetsx, m.invisible, m.avatarshowid, mf.nickname, mf.site, mf.icq, mf.qq, mf.yahoo, mf.msn, mf.taobao, mf.alipay, mf.location, mf.medals, mf.avatar, mf.avatarwidth, mf.avatarheight, mf.sightml AS signature, mf.customstatus $fieldsadd FROM {$tablepre}posts p LEFT JOIN {$tablepre}members m ON m.uid=p.authorid LEFT JOIN {$tablepre}memberfields mf ON mf.uid=m.uid LEFT JOIN $tablepre"."mypetdata b ON b.username=p.author WHERE p.tid='$tid' AND p.invisible='0' ORDER BY dateline LIMIT $start_limit, $ppp");
  139.                        while($post = $db->fetch_array($query)) {
  140. //任务精灵 2005-12-14
  141.                 if($post['missionid']<>'') {
  142.                         $post['hack_mission']=explode('|', $post['missionid']);
  143.                         if($post['hack_mission'][0]<>$discuz_uid) $post['missionid']='';
  144.                 }
  145. //任务精灵 end

  146.                 if(!$newpostanchor && $post['dateline'] > $lastvisit) {
  147.                         $post['newpostanchor'] = '<a name="newpost"></a>';
  148.                         $newpostanchor = 1;
  149.                 } else {
  150.                         $post['newpostanchor'] = '';
  151.                 }
  152.                 $post['lastpostanchor'] = $numpost == $thread['replies'] ? '<a name="lastpost"></a>' : '';
  153.                 $post['number'] = ++$numpost;
  154.                 $post['count'] = $postcount++;

  155.                 $post['thisbg'] = $thisbg = isset($thisbg) && $thisbg == 'altbg1' ? 'altbg2' : 'altbg1';
  156.                 $post['dateline'] = gmdate("$dateformat $timeformat", $post['dateline'] + $timeoffset * 3600);
  157. $post[petpic]=$post[mypetname];
  158. $petnowexp=$post[mypetexp];
  159. $post[mypetlevel] = floor(sqrt(sqrt($petnowexp)));
  160. $petlevel = $post[mypetlevel] ;
  161. $post[picdisplay] = intval($post[mypetlevel]/10);
  162. if ($post[picdisplay]>10){$post[picdisplay]=11;}
  163. $petnextlvexp = pow($petlevel+1,4);

  164.                 if($post['username']) {

  165.                         $post['groupid'] = getgroupid($post['authorid'], $_DCACHE['usergroups'][$post['groupid']], $post);
  166.                         $post['readaccess'] = $_DCACHE['usergroups'][$post['groupid']]['readaccess'];
  167.                         if($userstatusby == 1 || $_DCACHE['usergroups'][$post['groupid']]['byrank'] === 0) {
  168.                                 $post['authortitle'] = $_DCACHE['usergroups'][$post['groupid']]['grouptitle'];
  169.                                 $post['stars'] = $_DCACHE['usergroups'][$post['groupid']]['stars'];
  170.                         } elseif($userstatusby == 2) {
  171.                                 foreach($_DCACHE['ranks'] as $rank) {
  172.                                         if($post['posts'] > $rank['postshigher']) {
  173.                                                 $post['authortitle'] = $rank['ranktitle'];
  174.                                                 $post['stars'] = $rank['stars'];
  175.                                                 break;
  176.                                         }
  177.                                 }
  178.                         }

  179.                         if($allowpaytoauthor) {
  180.                                 if(!$post['alipay'] && $post['email'] && $post['showemail']) {
  181.                                         $post['alipay'] = $post['email'];
  182.                                 }
  183.                         } else {
  184.                                 $post['alipay'] = '';
  185.                         }

  186.                         $post['authoras'] = addslashes($post['author']);
  187.                         $post['regdate'] = gmdate($dateformat, $post['regdate'] + $timeoffset * 3600);
  188. //--------------背单词语音版--------->
  189.                 require_once "./wordlib/libconfig.php";
  190.                 require_once "./wordcfg.php";
  191.                 $n=count($listkind);
  192.                 $opwo="<select onchange=Fword(this.options[this.selectedIndex].value)>";
  193.                 $opwo.="<option value=''>选择词库级别</option>";
  194.                 foreach($listkind as $key=>$value)
  195.                 {
  196.                         $opwo.="<option value=$key>$value</option>";
  197.                 }
  198.                 $opwo.="</select>";
  199.                 $woselect=$opwo;
  200.                 $post['words']=getword($wordkind,$wordcuttype,$words);
  201. //--------------背单词语音版--------->

  202.                         $post['allowuseblog'] = $_DCACHE['usergroups'][$post['groupid']]['allowuseblog'];

  203.                         if($post['medals']) {
  204.                                 require_once DISCUZ_ROOT.'./forumdata/cache/cache_medals.php';
  205.                                 foreach($post['medals'] = explode("\t", $post['medals']) as $key => $medalid) {
  206.                                         if(isset($_DCACHE['medals'][$medalid])) {
  207.                                                 $post['medals'][$key] = $_DCACHE['medals'][$medalid];
  208.                                         } else {
  209.                                                 unset($post['medals'][$key]);
  210.                                         }
  211.                                 }
  212.                                 
  213.                         }

  214.                         $post['avatarshow'] = $avatarshowstatus && ($post['avatarshowid'] || $avatarshowdefault) ? avatarshow($post['avatarshowid'], $post['gender']) : '';
  215.                         if($_DCACHE['usergroups'][$post['groupid']]['groupavatar']) {
  216.                                 $post['avatar'] = '<img src="'.$_DCACHE['usergroups'][$post['groupid']]['groupavatar'].'" border="0">';
  217.                         } elseif($avatarshowstatus != 2 && $_DCACHE['usergroups'][$post['groupid']]['allowavatar'] && $post['avatar']) {
  218.                                 $post['avatar'] = '<img src="'.$post['avatar'].'" width="'.$post['avatarwidth'].'" height="'.$post['avatarheight'].'" border="0">';
  219.                         } else {
  220.                                 $post['avatar'] = '<a href="memcp.php?action=profile"><img
  221. src="images/common/nopic.gif" alt="默认头像" border="0"></a>';
  222.                         }

  223.                 } else {

  224.                         if(!$post['authorid']) {
  225.                                 $post['useip'] = substr($post['useip'], 0, strrpos($post['useip'], '.')).'.x';
  226.                         }

  227.                 }

  228.                 $post['attachments'] = array();
  229.                 if($post['attachment'] && $allowgetattach) {
  230.                         $attachpids .= ",$post[pid]";
  231.                         $post['attachment'] = 0;
  232.                         if(preg_match("/\[attach\](\d+)\[\/attach\]/i", $post['message'])) {
  233.                                 $attachtags[] = $post['pid'];
  234.                         }
  235.                 }

  236.                 $forum['allowbbcode'] = $forum['allowbbcode'] ? ($_DCACHE['usergroups'][$post['groupid']]['allowcusbbcode'] ? 2 : 1) : 0;

  237.                 $post['ratings'] = karmaimg($post['rate'], $post['ratetimes']);
  238.                 $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml'], ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0));
  239.                 $post['signature'] = $post['usesig'] ? $post['signature'] : '';
  240.                 //帖子显示评分记录开始
  241.                 if($post['rate']) {
  242.                         $queryr = $db->query("SELECT * FROM {$tablepre}ratelog WHERE pid='$post[pid]' ORDER BY dateline");
  243.                         if($db->num_rows($queryr)) {
  244.                                 if($post['tid'] == $thread['tid']) {
  245.                                         $post['pft'] = array();
  246.                                         while($log = $db->fetch_array($queryr)) {
  247.                                                 $log['dateline'] = gmdate("$dateformat $timeformat", $log['dateline'] + $timeoffset * 3600);
  248.                                                 $log['score'] = $log['score'] > 0 ? '+'.$log['score'] : $log['score'];
  249.                                                 $log['reason'] = dhtmlspecialchars($log['reason']);
  250.                                                 $post['pft'][] = $log;
  251.                                         }
  252.                                 }
  253.                         }
  254.                 }
  255.                 //帖子显示评分记录结束
  256.                 $postlist[$post['pid']] = $post;

  257.         }

  258.         if($attachpids) {

  259.                                 //图文混排,删除了段内容,替换为下面内容
  260.                 $query = $db->query("SELECT aid, pid, displayorder, dateline, readperm, filename, description, filetype, attachment, filesize, downloads
  261.                                         FROM {$tablepre}attachments WHERE pid IN ($attachpids) ORDER BY displayorder");
  262.                 //图文混排结束

  263.                 if($db->num_rows($query)) {
  264.                         require_once DISCUZ_ROOT.'./include/attachment.func.php';

  265.                         while($attach = $db->fetch_array($query)) {
  266.                                 $extension = strtolower(fileext($attach['filename']));
  267.                                 $extension == 'torrent' ? $attach['bt'] = 1 : $attach['bt'] = 0;
  268.                                 $attach['dateline'] = gmdate("$dateformat $timeformat", $attach['dateline'] + $timeoffset * 3600);
  269.                                 $attach['attachicon'] = attachtype($extension."\t".$attach['filetype']);
  270.                                 $attach['attachsize'] = sizecount($attach['filesize']);
  271.                                 //图文混排删除上面内容,加入下面
  272.                                 $isimage = in_array($extension, array('jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp'));
  273.                                 require_once DISCUZ_ROOT.'./include/att_typeid.func.php';
  274.                                 $attach['$type'] = attachtypeid($attach['filetype']);
  275.                                 $attach['$idname'] = random(2);
  276.                                 if ( $isimage && $attachimgpost && !$attach['permid'] ){
  277.                                         $postlist[$attach['pid']]['attachimg'][$attach[aid]] = $attach;
  278.                                 }else{
  279.                                         $postlist[$attach['pid']]['attachments'][$attach[aid]] = $attach;
  280.                                 }
  281.                                 
  282.                                 if ( $attach['permid'] && $isimage && $attachimgpost && !isset($postlist[$attach['pid']]['attachimg'][$attach[aid]]) && ($disablepermscheck || checkperms( $attach['permid'],$attach['readperm'],'attach')==1)){
  283.                                         $postlist[$attach['pid']]['attachimg'][$attach[aid]] = $attach;

  284.                                 }

  285.                
  286.                 if (isset($postlist[$attach['pid']]['attachimg'][$attach[aid]]) && $forum['allowbbcode'] && $forum['allowimgcode'] && !$post['bbcodeoff']){
  287.                 $posmessage = str_replace( "images/common/attachnoperm.gif?{$attach[displayorder]}","$attachurl/$attach[attachment]",$postlist[$attach['pid']]['message']);
  288.                                 
  289.                 if($postlist[$attach['pid']]['message']!=$posmessage){
  290.                 $postlist[$attach['pid']]['message']=$posmessage;
  291.                 unset($posmessage,$postlist[$attach['pid']]['attachimg'][$attach[aid]]);
  292.                 }else{
  293.                     unset($posmessage,$postlist[$attach['pid']]['attachments'][$attach[aid]]);
  294.                 }
  295.                 }//结束
  296.                         }

  297.                         foreach($attachtags as $pid) {
  298.                                 $postlist[$pid]['message'] = preg_replace("/\[attach\](\d+)\[\/attach\]/ie", "attachtag($pid, \\1)", $postlist[$pid]['message']);
  299.                         }
  300.                 } else {
  301.                         $db->query("UPDATE {$tablepre}posts SET attachment='0' WHERE pid IN ($attachpids)", 'UNBUFFERED');
  302.                 }

  303.         }

  304.         if(empty($postlist)) {
  305.                 showmessage('undefined_action', NULL, 'HALTED');
  306.         }

  307.         $visitedforums = $visitedforums ? visitedforums() : '';
  308.         $forumselect = $forumjump ? forumselect() : '';

  309.         $usesigcheck = $discuz_uid && $sigstatus ? 'checked' : '';
  310.         $allowpostreply = ((!$thread['closed'] && !checkautoclose()) || $forum['ismoderator']) && ((!$forum['replyperm'] && $allowreply) || ($forum['replyperm'] && forumperm($forum['replyperm'])) || $forum['allowreply']);
  311.         $allowpost = (!$forum['postperm'] && $allowpost) || ($forum['postperm'] && forumperm($forum['postperm'])) || $forum['allowpost'];

  312.         if($delayviewcount) {
  313.                 $logfile = DISCUZ_ROOT.'./forumdata/viewcount.log';
  314.                 if(substr($timestamp, -2) == '00') {
  315.                         require_once DISCUZ_ROOT.'./include/misc.func.php';
  316.                         updateviews();
  317.                 }

  318.                 if(@$fp = fopen($logfile, 'a')) {
  319.                         fwrite($fp, "$tid\n");
  320.                         fclose($fp);
  321.                 } elseif($adminid == 1) {
  322.                         showmessage('view_log_invalid');
  323.                 }
  324.         } else {
  325.                 $db->query("UPDATE {$tablepre}threads SET views=views+1 WHERE tid='$tid'", 'UNBUFFERED');
  326.         }

  327.         include template('viewthread');

  328. } elseif($action == 'printable' && $tid) {

  329.         require_once DISCUZ_ROOT.'./include/printable.inc.php';

  330. }

  331. ?>
复制代码

本帖子中包含更多资源

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

x
回复

使用道具 举报

Eor 发表于 2006-1-18 09:29:57 | 显示全部楼层
原帖由 阿狗狗 于 2006-1-18 08:40 发表
測試過了  沒有問題
我用你的文件一樣正常顯示
你看看是不是其他地方沒弄好吧


[code]<?php

/*
        [DISCUZ!] viewthread.php - view thread posts
        This is NOT a freeware, use is su ...

为什么在我这里就出错啊??????????????

[ 本帖最后由 Eor 于 2006-1-18 10:31 编辑 ]

本帖子中包含更多资源

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

x
回复

使用道具 举报

tly 发表于 2006-1-18 10:04:41 | 显示全部楼层

谢谢楼主的无私奉献,我安装后没有问题,就是宠物公告处如何修改?

回复

使用道具 举报

阿狗狗 发表于 2006-1-18 10:38:14 | 显示全部楼层
原帖由 tly 于 2006-1-18 10:04 发表
http://www.sdgj.net/pet.php

後台管理中心  
插件設置==>

  1. 首頁導入論壇的編號,如 ...
  2. 你可以開一個交流論壇   
复制代码

  1. 首頁導入寵物系統公告的 ...
  2. 你可以設一個寵物系統更新公告
复制代码
回复

使用道具 举报

shl008 发表于 2006-1-18 21:02:49 | 显示全部楼层
为什么我安装以后有几个连接进不去啊。。比如事务所。。资讯查询。。管理后台。。。
回复

使用道具 举报

tly 发表于 2006-1-18 23:28:54 | 显示全部楼层
原帖由 阿狗狗 于 2006-1-18 10:38 发表

後台管理中心  
插件設置==>

  1. 首頁導入論壇的編號,如 ...
  2. 你可以開一個交流論壇   
复制代码

  1. 首頁導入寵物系統公告的 ...
  2. 你可以設一個寵物系統更新公告
复制代码


谢谢老大,我论坛上很多会员提出不少对宠物的建议,看看能不能帮助修改下
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-6-29 07:50 , Processed in 0.139114 second(s), 15 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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