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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] 悬赏/提问帖插件发布

[复制链接]
slime 发表于 2005-12-22 01:53:25 | 显示全部楼层 |阅读模式
悬赏帖第二版动工
预计1月28日正式发布
建议还没有安装本插件的朋友暂时不要再安装第一版!

所有已发现的问题已经全部解决,所有操作都整理到一张帖子里了,后面那些跟帖就不用看了,我已经把它们都删掉了。

发现好象只有有问题的人才回帖来问,成功安装的也出来说一句哦。

附件里是所有改动过的文件,如果你以前没有装过任何插件,那么直接上传,1-14步都可以省了。
如果要手工改的话,就只上传images下面的文件吧。
注意,我用的论坛是UTF-8,请大家下载后把所有lang文件转化为GBK格式,否则可能出现乱码。

测试区1
插件演示:www.jiandanma.com
测试帐号:test 密码: test
测试帐号2:tryit 密码: 123456
请只在新手区测试,谢谢合作。

测试区2
插件演示:http://car.10000j.com/bbs
测试帐号:test 密码: test
测试帐号2:test1 密码: test1
测试帐号3:test2 密码: test2

功能说明:https://discuz.dismall.com/viewthread.php?tid=208803
有什么问题、BUG或是建议的话,请跟帖不要另开一帖,免得我漏过没看到,谢谢。
过年前比较忙,只能小修小补,寒假的时候,会做个第二版上来,有什么建议要及时提哦。
05.12.25  改动文件pms.lang.php,修正短消息显示错误,附件已重新上传
05.12.25 帖子末尾显示错误是我整理时的手误,如果您是之前直接复制viewthread.thm的,请重新下载附件并上传 感谢iceberg
05.12.25  改动文件post_editpost.htm 修正编辑帖子时显示不正常问题  附件已重新上传
05.12.23 改动文件misc.php 修正quote代码不能正常显示问题 附件已重新上传 感谢eor测试
第二版功能预订(近期较忙,预计一月底发布)
每增加一个功能都至少是在理论上会影响网速,所以最后会由大家投票决定是否需要:
1、功能:只能在特定论坛版块发布悬赏帖
  影响网速:发帖
  数据库改动:无
2、功能:悬赏帖发布、采纳、得分情况记录
  影响网速:发帖、采纳
  数据库改动:新增数据表,不改动原数据表架构
3、功能:防止作者修改“X楼作者XXX意见被采纳”信息
  方案一:影响网速:查看帖子
      数据库改动:posts数据表新增字段
  方案二:强行关闭帖子
      影响网速:几乎没有
      数据数据库改动:无
4、功能:任意读者对所采纳意见有不同看法时“揪错”
              功能三采用方案二时适用,不影响双方悬赏积分,可选短消息积分
      影响网速:几乎没有
      数据库改动:无
5、功能:版主强行“揪错”,可选扣罚双方积分,短消息通知
              影响网速:几乎没有
      数据库改动:无
6、重写:现在一共改了13个源文件,很多朋友都在叫累,仔细理了一下思路,发现很多文件其实可以单独拿出来写的,这样我的工作量大一点,但大家需要改动的地方就少很多。不过这样一来,第二版就不能和现在保持兼容了,我到时再想想办法
PS:最近单位的事情一大堆,可是还是老忍不住来这里看插件,我这几天再来的话,大家要记得骂我呀。


现在,我们开始吧:
1、修改POST.PHP
找到

  1. $price = isset($price) ? intval($price) : 0;
复制代码

在它后面插入

  1. //plugin question start
  2. $prize = isset($prize) ? intval($prize) : 0;       
  3. $query = $db->query("SELECT extcredits$creditstrans FROM `cdb_members` where

  4. uid=".$discuz_uid);
  5. $row = $db->fetch_array($query);
  6. $maxprize=floor(($row['extcredits'.$creditstrans]-10)/2);
  7. $maxprize=($maxprize<$maxprice)?$maxprize:$maxprice;
  8. $maxprize2=$maxprize*2;
  9. //plugin question end
复制代码

2、修改include/newthread.inc.php
找到

  1. $icons = '';
复制代码

在后面插入

  1. /*plugin question start
复制代码

找到

  1. include template('post_newthread');
复制代码

前面插入

  1.         plugin question end*/
  2.        
  3.         //plugin question start

  4.                 if(is_array($_DCACHE['icons'])) {
  5.                 $key = 1;
  6.                 foreach($_DCACHE['icons'] as $id => $icon) {
  7.                   if($icon=="iconq.gif"){
  8.                            $iconq= ' <input type="radio" name="iconid" id="iconqid"

  9. value="'.$id.'" '.'><img src="'.SMDIR.'/'.$icon.'">';
  10.                            }elseif($icon!="icona.gif"){
  11.                         $icons .= ' <input type="radio" name="iconid" value="'.$id.'"><img

  12. src="'.SMDIR.'/'.$icon.'">';
  13.                         $icons .= !(++$key % 10) ? '<br>' : '';
  14.                         }
  15.                 }
  16.         }

  17.    //plugin question end
复制代码

找到

  1. if(isset($poll) && $allowpostpoll && trim($polloptions)) {
复制代码

前面插入

  1.         //plugin question start
  2.         $prize = $maxprize ? ($prize <= $maxprize ? $prize : $maxprize) : 0;
  3.         if($prize > 0 && floor($prize * (1 - $creditstax)) == 0) {
  4.             showmessage('post_net_price_iszero');
  5.         }
  6.         if($price==0 && $prize>0){
  7.         $price=0-$prize;
  8.         }
  9.     $iconid=$prize>0 ? $iconqid : $_DCACHE['icons'][$iconid]=='iconq.gif' ? 0 : $iconid;
  10.         //plugin question end
复制代码

找到

  1. $tid = $db->insert_id();
复制代码

在后面插入

  1.         //plugin question start
  2.         if($price<-1){
  3.         $db->query("UPDATE {$tablepre}members SET

  4. extcredits$creditstrans=extcredits$creditstrans+$price*2 WHERE uid='$discuz_uid'");
  5.         }
  6.         //plugin question end
复制代码

3、修改include/editpost.inc.php
找到
  1. $icons = '';
复制代码

在后面插入

  1. /*plugin question start
复制代码

找到
  1. $query = $db->query("SELECT * FROM {$tablepre}posts WHERE pid='$pid' AND tid='$tid' AND

  2. fid='$fid'");
复制代码

前面插入

  1.         plugin question end*/
  2.        
  3.         //plugin question start
  4.         $thread['prizedisplay'] = $thread['price'] == -1 ? 0 : 0-$thread['price'];
  5.         $iconq = '';

  6.         if(is_array($_DCACHE['icons']) && $isfirstpost) {
  7.                 $key = 1;
  8.                 $thread_icon=$_DCACHE['icons'][$thread['iconid']];
  9.                 if($thread_icon=="iconq.gif"||$thread_icon=="icona.gif"){
  10.                   $icons='<input type="radio" name="iconid" value="'.$thread

  11. ['iconid'].'"checked><img src="'.SMDIR.'/'.$thread_icon.'">';
  12.                   $show_none=1;
  13.                   }else{
  14.                 foreach($_DCACHE['icons'] as $id => $icon) {
  15.                     if($icon=="iconq.gif"){
  16.                            $iconq= ' <input type="radio" name="iconid" value="'.$id.'" '.

  17. ($thread['iconid'] == $id ? 'checked' : '').'><img src="'.SMDIR.'/'.$icon.'">';
  18.                            }elseif($icon!="icona.gif"){
  19.                         $icons .= ' <input type="radio" name="iconid" value="'.$id.'" '.

  20. ($thread['iconid'] == $id ? 'checked' : '').'><img src="'.SMDIR.'/'.$icon.'">';
  21.                         $icons .= !(++$key % 10) ? '<br>' : '';
  22.                         }
  23.                 }
  24.                 }
  25.                

  26.         }
  27.         //plugin question end
复制代码

找到
  1. $polladd = '';
复制代码

前面插入

  1.                         //plugin question start
  2.                         $prize =($maxprize ? ($prize <= $maxprize ? ($prize > 0-$thread

  3. ['price'] ? $prize : 0-$thread['price']) : $maxprize) : 0);

  4.                         if($prize > 0 && floor($prize * (1 - $creditstax)) == 0) {
  5.                                 showmessage('post_net_price_iszero');
  6.                         }
  7.                         $price=$prize>0?0-$prize:$price;
  8.                         $iconid=$prize<=0 && ($_DCACHE['icons'][$iconid]=='iconq.gif'?

  9. 0:$iconid);
  10.                         //plugin question end
复制代码


4、修改templates/default/post_newthread.htm
在第一行插入:

  1. <!--plugin question start-->
  2. <style type="text/css">
  3. <!--
  4. #normalicon {
  5.         position:absolute;
  6.         z-index:0;
  7. }
  8. #questionicon{
  9.         position:absolute;
  10.         z-index:0;
  11.         visibility: hidden;
  12. }
  13. -->
  14. </style>
  15. <script type="text/JavaScript">
  16. <!--
  17. function MM_findObj(n, d) { //v4.01
  18.   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
  19.     d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  20.   if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  21.   for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  22.   if(!x && d.getElementById) x=d.getElementById(n); return x;
  23. }

  24. function MM_showHideLayers() { //v6.0
  25.   var i,p,v,obj,args=MM_showHideLayers.arguments;
  26.   for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
  27.     if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
  28.     obj.visibility=v; }
  29. }

  30. function question_layers(){
  31.   if(document.input.prize.value<=0){
  32.      MM_showHideLayers('normalicon','','show');MM_showHideLayers('questionicon','','hide');
  33.          document.input.iconid[0].checked=true;
  34.          document.input.price.contentEditable=true;
  35.          MM_showHideLayers('prize1','','show');MM_showHideLayers('prize2','','hide');
  36.          document.input.prize.value=0;
  37.          }else{
  38.          MM_showHideLayers('normalicon','','hide');MM_showHideLayers

  39. ('questionicon','','show');
  40.          document.input.iconqid.checked=true;
  41.          document.input.price.value=0;
  42.          document.input.price.contentEditable=false;
  43.          }
  44.        
  45.   }
  46. //-->
  47. </script>
  48. <!--plugin question end-->
复制代码

找到:

  1. <!--{if $maxprice}-->
  2.         <tr>
  3.         <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
  4.         <td class="altbg2"><input name="price" type="text" value="$price" size="6"> <span

  5. class="smalltxt">{$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if

  6. $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->

  7. {lang post_price_charge_comment}<!--{/if}-->
  8.           )</span></td>
  9.         </tr>
  10. <!--{/if}-->
复制代码

在后面插入

  1. <!--plugin question start-->
  2. <!--{if $maxprize>0}-->
  3.         <tr>
  4.         <td class="altbg1">{lang prize}({$extcredits[$creditstrans][title]}):</td>
  5.         <td valign="bottom" class="altbg2"><input name="prize" value="$prize" type="text"

  6. onchange="question_layers()" size="6"><span class="smalltxt">{$extcredits[$creditstrans]

  7. [unit]}({lang post_prize_comment_zg}$maxprize{$extcredits[$creditstrans][unit]}{lang

  8. post_prize_comment_sb}$maxprize2{$extcredits[$creditstrans][unit]}{lang

  9. post_prize_comment_jt})</span></td>
  10.         </tr>
  11. <!--{/if}-->
  12. <!--plugin question end-->
复制代码

找到
  1. <td class="altbg2"><input type="radio" name="iconid" value="0" checked> {lang none}

  2. $icons
复制代码

在前面(TO:kt600 这个确实是在前面而不能是在上面了^_^)
插入

  1. <!--plugin question start
复制代码

在后面插入

  1. plugin question end--><td class="altbg2"  valign="top"  height="30">
  2.         <!--plugin question start-->
  3.         <div id="normalicon" position: relative><input type="radio" name="iconid" value="0"

  4. checked>{lang none} $icons</div><div id="questionicon" position: relative>$iconq</div>
  5.           <!--plugin question end-->
复制代码

5、修改post_editpost.htm
找到

  1. <!--{if $maxprice}-->
复制代码

把这句删掉
在后面插入


  1. <!--plugin question change "$maxprice" to "$maxprice && $thread['price']>=-1--">
  2. <!--{if $maxprice && $thread['price']>=-1}-->
复制代码

就是同一段:

  1. <!--{if $maxprice && $thread['price']>=-1}-->
  2.         <tr>
  3.         <td class="altbg1">{lang price}({$extcredits[$creditstrans][title]}):</td>
  4.         <td class="altbg2">
  5.         <!--{if $thread['price'] == -1 || $thread['freecharge']}-->
  6.                 <input type="text" name="price" size="6" value="$thread[pricedisplay]"

  7. disabled> <span class="smalltxt">{$extcredits[$creditstrans][unit]}
  8.                 <!--{if $thread['price'] == -1}-->({lang post_price_refunded})<!--{else}-->

  9. ({lang post_price_free})<!--{/if}-->
  10.                 </span></td>
  11.         <!--{else}-->
  12.                 <input type="text" name="price" size="6" value="$thread[pricedisplay]"> <span

  13. class="smalltxt">{$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if

  14. $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->

  15. {lang post_price_charge_comment}<!--{/if}-->)</span></td>
  16.         <!--{/if}-->
  17.         </tr>
  18. <!--{/if}-->
复制代码

在后面插入:

  1. <!--plugin question start-->
  2. <!--{if $maxprice && $thread['price']<-1 && $_DCACHE['icons'][$thread['iconid']]

  3. =='iconq.gif'}-->
  4.         <tr>
  5.         <td class="altbg1">{lang prize}({$extcredits[$creditstrans][title]}):</td>
  6.         <td class="altbg2">
  7.                 <input type="text" name="prize" size="6" value="$thread[prizedisplay]"> <span

  8. class="smalltxt">{$extcredits[$creditstrans][unit]} ({lang post_price_comment}<!--{if

  9. $maxincperthread}-->{lang post_price_income_comment}<!--{/if}--><!--{if $maxchargespan}-->

  10. {lang post_price_charge_comment}<!--{/if}-->)</span></td>
  11.         </tr>
  12. <!--{/if}-->
  13. <!--plugin question end-->
复制代码

6、修改templates.lang.php
找到
  1. 'price_thread' => '浏览需支付',
复制代码

在后面插入

  1.         //plugin question start
  2.         'prize' => '悬赏',
  3.         'post_prize_comment_zg' => '最高',
  4.         'post_prize_comment_sb'=>',双倍预扣',
  5.         'post_prize_comment_jt'=>',结帖返还',
  6.         'prize_thread'=>'解答可获得',
  7.         'true_post'=>'采纳',
  8.     'prize_end'=>'悬赏问题已解决',
  9.         //plugin question end
复制代码


7.修改template/default/misc.lang.php
找到

  1. 'post_hidden' => '**** 本内容被作者隐藏 *****',
复制代码

前面插入

  1.         //plugin question start
  2.         'plugin_question_misc_ok'=>' [quote]第$number 楼作者 $uname 的意见被采纳[/quote]',
  3.         //plugin question end
复制代码

8.修改template/default/pms.lang.php
拉到最底下,找到

  1. );
  2. ?>
复制代码

在上面那句最后加逗号。
前面插入

  1. //plugin question start
  2.         'reason_question_subject' => '[Discuz!] 您的悬赏帖答案被认可了',
  3.         'reason_question_message' => '这是由论坛系统自动发送的通知短消息。

  4. [b]以下您所发表的答案被 [url={$boardurl}viewpro.php?uid={$discuz_uid}][i]{$discuz_user}[/i]

  5. [/url] 主题作者认可。[/b]

  6. [b]主题:[/b] [url={$boardurl}viewthread.php?tid={$thread[tid]}]{$thread[subject]}[/url]
  7. [b]所在论坛:[/b] [url={$boardurl}forumdisplay.php?fid={$fid}]$forum[name][/url]
  8. [b]加分:[/b] {$price}
  9. [b]留言:[/b] {$reason}

  10. 如果您对本次操作有异议,请与我取得联系。',

  11.         'reason_question_subject1' => '[Discuz!] 您的悬赏帖被强制结帖了',
  12.         'reason_question_message1' => '这是由论坛系统自动发送的通知短消息。

  13. [b]以下您所发表的悬赏被 [url={$boardurl}viewpro.php?uid={$discuz_uid}][i]{$discuz_user}[/i]

  14. [/url] 由于发布时间过久,且早已有了合适的答案,被强制结帖了。[/b]

  15. [b]主题:[/b] [url={$boardurl}viewthread.php?tid={$thread[tid]}]{$thread[subject]}[/url]
  16. [b]所在论坛:[/b] [url={$boardurl}forumdisplay.php?fid={$fid}]$forum[name][/url]
  17. [b]加分:[/b] {$price}
  18. [b]留言:[/b] {$reason}

  19. 如果您对本次操作有异议,请与我取得联系。',
  20. //plugin question end
复制代码

9.修改messages.lang.php
最前面:
找到

  1. $language = array
  2. (
复制代码

在后面插入

  1.         //plugin question start
  2.         'hack_message'=>'您的非法操作已经被系统记录',
  3.         'plugin_question_misc_ok'=>'您已经采纳了 $number 楼作者 $uname 的意见',
  4.     //plugin question end
复制代码


10修改template/default/viewthread.htm
找到
  1.         <!--{if $thread['price'] > 0}-->  <a href="misc.php?

  2. action=viewpayments&tid=$tid">{lang price_thread} {$extcredits[$creditstrans][title]} <span

  3. class="bold">$thread[price]</span> {$extcredits[$creditstrans][unit]}</a>  <!--{/if}-->

复制代码

在后面插入

  1. <!--plugin question start-->
  2.         <!--{if $_DCACHE[icons][$thread['iconid']]=='iconq.gif' && $thread['price']< 0}-->  

  3. {lang prize_thread} {$extcredits[$creditstrans][title]} <span class="bold">$thread[price]-

  4. </span> {$extcredits[$creditstrans][unit]}</a>  <!--{/if}-->
  5.         <!--{if $_DCACHE[icons][$thread['iconid']]=='icona.gif' && $thread['price']< 0}-->  

  6. {lang prize_end}  <!--{/if}-->
  7. <!--plugin question end-->
复制代码

找到
  1. <!--{if $thread['modaction'] || $thread['blog'] || $thread['readperm'] || $thread

  2. ['price'] > 0}-->
复制代码

改成
  1. <!--{if $thread['modaction'] || $thread['blog'] || $thread['readperm'] || $thread

  2. ['price'] <> 0}-->
复制代码

找到
  1. <!--{if $forum['ismoderator'] || $post['authorid'] == $discuz_uid}-->
复制代码

前面插入

  1. <!--plugin question start-->
  2.         <!--{if $_DCACHE[icons][$thread['iconid']]=='iconq.gif' && $thread['price']<0 &&

  3. $post['uid']<>$thread['authorid'] && $post['uid']<>$discuz_uid && ($forum['ismoderator'] ||

  4. $thread['authorid'] == $discuz_uid)}--><a href="misc.php?action=accept&tid=$tid&pid=$post

  5. ['pid']&uid=$post['uid']&number=$post['number']&uname=$post[author]"><img

  6. src="{IMGDIR}/true.gif" border="0" align="absmiddle" alt="{lang true_post}" /><!--{/if}-->
  7. <!--plugin question end-->
复制代码

11修改template/default/forumdisplay.htm
找到

  1.                 <!--{if $thread['price'] > 0}--> - [{lang price} {$extcredits[$creditstrans]

  2. [title]} <span class="bold">$thread[price]</span> {$extcredits[$creditstrans][unit]}]<!--

  3. {/if}-->
复制代码

在后面插入

  1. <!--plugin question start-->
  2.                 <!--{if $_DCACHE[icons][$thread['iconid']]=='iconq.gif' && $thread['price'] <

  3. 0}--> - [{lang prize} {$extcredits[$creditstrans][title]} <span class="bold">$thread[price]-

  4. </span> {$extcredits[$creditstrans][unit]}]<!--{/if}-->
  5.                 <!--{if $_DCACHE[icons][$thread['iconid']]=='icona.gif' && $thread['price'] <

  6. 0}--> - [{lang prize_end}]<!--{/if}-->
  7. <!--plugin question end-->
复制代码

12修改/misc.php
拉到最后
找到

  1.             showmessage('undefined_action', NULL, 'HALTED');
复制代码

前面插入

  1. //plugin question start
  2.     if($action=="accept"){
  3.                                @require_once

  4. DISCUZ_ROOT.'./forumdata/cache/cache_forumdisplay.php';
  5.                 if($_DCACHE[icons][$thread['iconid']]=='iconq.gif' && ($discuz_uid==$thread

  6. ['authorid'] || $forum['ismoderator']) && $thread['price']<0 && $discuz_uid!=$uid){
  7.                   foreach($_DCACHE[icons] as $iconid=>$iconname){
  8.                     $icona = $iconname=='icona.gif' ? $iconid:$icona;
  9.                         }
  10.                   $message='plugin_question_misc_ok';
  11.                   $price=0-$thread['price'];
  12.                   $prize=floor($price*0.95);
  13.                     $db->query("UPDATE {$tablepre}members SET

  14. extcredits$creditstrans=extcredits$creditstrans+$price WHERE uid='$thread[authorid]'");
  15.                   $db->query("UPDATE {$tablepre}members SET

  16. extcredits$creditstrans=extcredits$creditstrans+$price WHERE uid='$uid'");
  17.                   $query=$db->query("SELECT message FROM {$tablepre}posts where tid='$tid' &&

  18. first=1");
  19.                   $result=$db->fetch_array($query);
  20.                   $post_message=$result['message'];
  21.                   @include_once language('misc');
  22.                   eval("\$post_message.= "$language[plugin_question_misc_ok]";");
  23.                   $db->query("UPDATE {$tablepre}posts SET message='$post_message',bbcodeoff=0 where

  24. tid='$tid' && first=1");
  25.               $db->query("UPDATE {$tablepre}threads SET iconid=$icona WHERE tid='$tid'");

  26.                   sendpm($uid, 'reason_question_subject','reason_question_message');
  27.                   if($discuz_uid!=$thread['authorid']){
  28.                     sendpm($thread['authorid'],

  29. 'reason_question_subject1','reason_question_message1');
  30.               }
  31.                   
  32.               }else{
  33.                    $message="hack_message";
  34.                    }
  35.                 showmessage($message, "viewthread.php?tid=$tid");

  36.             }else{
  37. //plugin question end
复制代码

在后面加上

  1. //plugin question start
  2. }
  3. //plugin question end
复制代码


13修改viewthread.php
最前面
找到

  1. require_once DISCUZ_ROOT.'./include/discuzcode.func.php';
复制代码

在后面插入

  1. //plugin question start
  2. @require_once DISCUZ_ROOT.'./forumdata/cache/cache_forumdisplay.php';
  3. //plugin question end
复制代码

14上传两个图标文件到/images/smilies
15用管理员帐号登录,进入系统设置,单击“帖子相关”中的“Smilies 编辑”,主题图标编辑,输入

iconq.gif,提交,再输入icona.gif,提交
16上传文件按钮图片true.gif到/images/default
17开启积分交易功能并给用户组添加交易权限,本程序是紧紧依付在买卖帖功能之上的,如果如果用户没有

帖子出售权限,则本功能也会无效
17给测试帐号输入足够的积分
18更新缓存
全部工作完成,现在可以使用这个插件了。

注意,为减少编程的工作量,如下设定不可更改:
1、10点以上积分才可以进行交易;
2、悬赏权限与买卖帖权限绑定;
3、只有管理员和作者本人可以采纳非本人发布的回帖。

[ 本帖最后由 slime 于 2006-1-19 19:13 编辑 ]

本帖子中包含更多资源

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

x
5iwy 发表于 2005-12-22 01:59:24 | 显示全部楼层
哈哈,半夜的鸟儿有虫吃~~

刚顶了就出来了
回复

使用道具 举报

bhqtcn 发表于 2005-12-22 02:00:22 | 显示全部楼层
好啊
回复

使用道具 举报

jumptome000 发表于 2005-12-22 02:03:06 | 显示全部楼层
頂頂頂頂
回复

使用道具 举报

kiss8 发表于 2005-12-22 02:04:20 | 显示全部楼层
搬等字坐着装插件!
回复

使用道具 举报

5iwy 发表于 2005-12-22 02:07:27 | 显示全部楼层
头一个失败的

Discuz! info: MySQL Query Error

User: admin
Time: 2005-12-22 2:07am
Script: /bbs/post.php

SQL: SELECT extcredits0 FROM `cdb_members` where uid=1
Error: Unknown column 'extcredits0' in 'field list'
程序文件跟数据库有冲突,请使用正确的程序文件上传上去覆盖

Similar error report has beed dispatched to administrator before.

[ 本帖最后由 5iwy 于 2005-12-22 02:08 编辑 ]
回复

使用道具 举报

5iwy 发表于 2005-12-22 02:11:01 | 显示全部楼层
我倒,还没完哪………………
回复

使用道具 举报

 楼主| slime 发表于 2005-12-22 02:11:22 | 显示全部楼层
原帖由 5iwy 于 2005-12-22 02:11 发表
我倒,还没完哪………………

早咧
回复

使用道具 举报

bhqtcn 发表于 2005-12-22 02:13:31 | 显示全部楼层
难怪装了没有反应
回复

使用道具 举报

5iwy 发表于 2005-12-22 02:18:14 | 显示全部楼层
老大你该先占好楼的啊……
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-3-29 19:41 , Processed in 0.114535 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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