小鸡快跑 发表于 2005-10-21 22:09:17

【已解決】本站资源下载的插件问题

老大只提供修改好的文件下载给我们造成了很大的麻烦啊,我们网页本身已经做了修改,不能覆盖源文件,只好不断地切换两个文件,睁大眼睛看细微的改动,对我们这样的菜鸟来讲,实在是伤脑筋啊,老大能不能把具体添加或修改的地方按步骤说明啊。

[本贴已被 蝈蝈 于 2006年03月12日 11时48分19秒 编辑过]

温柔幻刀 发表于 2005-10-23 02:39:51

呵呵!!本站提供下载的很多插件或软件也是来自其他网友提供,所以无法做到修改好了再提供啊!!何况每个人修改的并不一样。所以还请见谅 啊!!!

小鸡快跑 发表于 2005-10-24 01:42:58

理解理解,老大我想问一下,下载资源里有个首页下载的文件是不是你们的首页啊,解压要密码
请看:http://www.wenrou.cn/down_view.asp?id=536
能告诉密码吗?

小鸡快跑 发表于 2005-10-24 01:52:12

还有老大,渔人码头插件有吗,我想要!!!!!!

saintom 发表于 2005-10-26 01:22:08

本站插件下载的密码均为wenrou.cn或者www.wenrou.cn
关于楼上所说的插件本站均已经提供!!

小鸡快跑 发表于 2005-10-26 16:11:46

不好意思,找遍资源下载也没有找到我想要的渔人码头插件!!!!!!11

小鸡快跑 发表于 2005-10-26 16:16:36

还有个问题问一下老大,乔客魅力和经验好象没有的吧,我在数据库里也想调用这两个字段,可是找不到,你们是自己加的吗?

再请教个问题,我首页同样调用article的每个专栏怎么会出现颜色不一致的情况呢?请各位老大进来看一下:http://www.cijizx.cn/
附首页代码如下:
sub main_center_list_pic(cl_type,cl_tnum,cl_cnum,cl_classid)
dim tmp1,tmp2,tmp_title,tmp_tit,tmp_count,tmp_img,tmp_record,tmp_tab,tmp_table,tmp_whe,tmp_where,tmp_url,tmp_topic,tmp_color,tmp_name
dim i:i=0
tmp_where="hidden=1 "
if cl_classid>0 then tmp_where=tmp_where&" and s_id="&cl_classid
select case cl_type
case "shop"
    tmp_title="shop"
        tmp_tit="商品名称"
        tmp_name="发 布 人"
        tmp_count="定购次数"
        tmp_table="shop_product"       
    tmp_record="id,name,brand,tim,counter,smallimg"
        tmp_whe=" and isgood=1"
case "article"
    tmp_title="article"
    tmp_tit="校务专栏"
    tmp_count="浏览次数"
    tmp_img="gif025"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=131"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
case "article"
    tmp_title="article"
    tmp_tit="文章标题"
    tmp_count="浏览次数"
    tmp_img="gif026"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=132"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
case "article"
    tmp_title="article"
    tmp_tit="文章标题"
    tmp_count="浏览次数"
    tmp_img="gif027"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=133"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
case "article"
    tmp_title="article"
    tmp_tit="文章标题"
    tmp_count="浏览次数"
    tmp_img="gif028"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=136"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
case "article"
    tmp_title="article"
    tmp_tit="文章标题"
    tmp_count="浏览次数"
    tmp_img="gif029"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=135"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
case "news"
    tmp_title="news"
    tmp_tit="新闻标题"
        tmp_name="发 布 人"
    tmp_count="浏览次数"
    tmp_table="news"
    tmp_record="id,topic,username,tim,counter,pic"
    tmp_img="article"
        tmp_whe=" and ispic=1"
case "flea"
    tmp_title="flea"
        tmp_tit="市场信息"
        tmp_name="发 布 人"
        tmp_count="浏览次数"
        tmp_table="flea"       
    tmp_record="id,name,username,tim,counter,pic"
        tmp_whe=" and isgood=1"
case "video"
    tmp_title="video"
    tmp_tit="影视名称"
        tmp_name="影片主演"
    tmp_count="浏览次数"
    tmp_table="video"
    tmp_record="id,name,role,tim,counter,pic"
    tmp_img="video"
        tmp_whe=" and star=5"
case "down"
    tmp_title="down"
    tmp_tit="软件名称"
        tmp_name="发 布 人"
    tmp_count="下载次数"
    tmp_table="down"
    tmp_record="id,name,username,tim,counter,pic"
        tmp_whe=" and types=5"
case else
    cl_type="music_disk"
    tmp_title="music_disk"
    tmp_tit="专辑名称"
        tmp_name="专辑歌手"
    tmp_count="浏览次数"
    tmp_table="music_disk"
    tmp_record="id,name,singer,tim,hits,pic"
    tmp_img="music_disk"
        tmp_whe=" and istop=1"
end select
    sql="select top 1 "&tmp_record&" from "&tmp_table&" where "&tmp_where&tmp_whe&" order by id desc"
    set rs=joekoe_cms.exec(sql,1)
    if not rs.eof then
    tmp1=tmp1&vbcrlf&"<tr align=center>" & _
         vbcrlf&"<td width='35%'>"&pic_fk(rs(5),4,""&cl_type&"_view.asp?id="&rs(0))&"</td>" & _
         vbcrlf&"<td width='65%'>" & _
         vbcrlf&"<table border=0 width='100%' class=tf>" & _
         vbcrlf&"<tr><td><b><a href='"&cl_type&"_view.asp?id="&rs(0)&"' alt='"&rs(1)&"'>"&joekoe_cms.code_html(rs(1),1,cl_cnum)&"</a></b></td></tr>" & _
         vbcrlf&"<tr><td>发布时间:"&joekoe_cms.time_type(rs(3),4)&"</td></tr>" & _
         vbcrlf&"<tr><td>"&tmp_name&":<font class=red2 alt='"&joekoe_cms.code_html(rs(2),1,0)&"'>"&joekoe_cms.code_html(rs(2),1,cl_cnum)&"</font></td></tr>" & _
         vbcrlf&"</table>" & _
         vbcrlf&"</td>" & _
         vbcrlf&"</tr>"
   end if
rs.close
    tmp1="<table border=0 cellspacing=0 cellpadding=2 width='100%'>"&tmp1&"</table>"
sql="select top "&cl_tnum&" "&tmp_record&" from "&tmp_table&" where "&tmp_where&" order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
    tmp_url=cl_type&"_view.asp?id="&rs(0)
      if cl_type="article" then
      tmp_color="style=""color:"&rs(5)&";"""
        end if
    if i mod 2=0 then tmp2=tmp2&vbcrlf&"<tr>"
    tmp2=tmp2&vbcrlf&"<td height="&dim_num(6)&">"&img_skin("h_"&tmp_img)&"<a href='"&tmp_url&"' "&tmp_color&" alt='"&tmp_tit&":"&joekoe_cms.code_html(rs(1),1,0)&"<br>"&tmp_name&":"&rs(2)&"<br>"&tmp_count&":"&rs(4)&" 人次<br>整理时间:"&rs(3)&"' target=_blank>"&joekoe_cms.code_html(rs(1),1,cl_cnum)&"</a></td>"
        if i+1 mod 2=0 then tmp2=tmp2&vbcrlf&"</tr>"
    if i=1 then tmp2=tmp2&vbcrlf&"<tr><td height=1></td></tr>"
    rs.movenext
        i=i+1
loop
rs.close
tmp2="<table border=0 cellspacing=0 cellpadding=2 width='100%'><tr height=3><td width='50%'></td><td width='50%'></td></tr>"&tmp2&"</table>"
response.write vbcrlf&"<table border=0 cellspacing=0 cellpadding=0 width='100%'><tr>" & _
               vbcrlf&"<td height=0 background=''></td>" & _
               vbcrlf&"</tr></table>" & _
               vbcrlf&"<table border=0 cellspacing=0 cellpadding=0 width='100%'><tr><td height=5></td></tr><tr align=center><td>"&tmp1&"</td></tr>" & _
               vbcrlf&"<tr align=center><td>"&tmp2&"</td></tr>" & _
               vbcrlf&"</table>"&ukong
end sub

sub main_center_list(cl_type,cl_tnum,cl_cnum,cl_classid)
dim tmp1,tmp_title,tmp_tit,tmp_count,tmp_img,tmp_record,tmp_table,tmp_where,tmp_url,tmp_color,tmp_name
tmp_img=cl_type
tmp_where="hidden=1"
if cl_classid>0 then tmp_where=tmp_where&" and s_id="&cl_classid
select case cl_type
case "forum"
    cl_type="forum"
    tmp_title="forum"
    tmp_tit="论坛标题"
    tmp_count="论坛回复"
    tmp_img="forum"
    tmp_table="bbs_topic"
    tmp_record="id,topic,username,tim,re_counter,tcolor,forum_id"
    tmp_where="forum_id<>999999999"
    if cl_classid>0 then tmp_where="forum_id="&cl_classid
case else
    tmp_title="article"
    tmp_tit="文章标题"
    tmp_count="浏览次数"
    tmp_table="article"
    tmp_record="id,topic,username,tim,counter,c_id"
    tmp_where="c_id=136ss"
    if cl_classid>0 then tmp_where="c_id="&cl_classid
end select
sql="select top "&cl_tnum&" "&tmp_record&" from "&tmp_table&" where "&tmp_where&" order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
    tmp_url=cl_type&"_view.asp?id="&rs(0)
    if cl_type="forum" then
      tmp_url=cl_type&"_view.asp?forum_id="&rs(6)&"&view_id="&rs(0)
    end if
    if cl_type="article" or cl_type="news" or cl_type="forum" then
      tmp_color="style=""color:"&rs(5)&";"""
        end if
    tmp1=tmp1&vbcrlf&"<tr><td height="&dim_num(6)&">"&img_skin("h_"&tmp_img)&"<a href='"&tmp_url&"' "&tmp_color&" alt='"&tmp_tit&":"&joekoe_cms.code_html(rs(1),1,0)&"<br>发 布 人:"&rs(2)&"<br>"&tmp_count&":"&rs(4)&" 人次<br>整理时间:"&rs(3)&"' target=_blank>"&joekoe_cms.code_html(rs(1),1,cl_cnum)&"</a><td><td align=right><font color=gray size=1>"&rs("username")&"</font></td></tr><tr><td height=1 background='images/bg_dian.gif'></td></tr>"
    rs.movenext
loop
rs.close
tmp1="<table border=0 cellspacing=0 cellpadding=2 width='100%'>"&tmp1&vbcrlf&"</table>"
    response.write vbcrlf&"<table border=0 cellspacing=0 cellpadding=0 width='100%'><tr>" & _
               vbcrlf&"<td height=0></td>" & _
               vbcrlf&"</tr></table>" & _
               vbcrlf&"<table border=0 cellspacing=0 cellpadding=0 width='100%'><tr><td height=5></td></tr><tr align=center><td>"&tmp1&"</td></tr>" & _
               vbcrlf&"</table>"&ukong
end sub

能帮助我,感激不尽!

温柔幻刀 发表于 2005-10-28 06:38:09

呵呵!!本站魅力和经验是仿照乔币和帖子数目弄出来的,以后整理出来提供下载!!!

小鸡快跑 发表于 2005-11-6 22:00:46

刀哥看下乔客里的这篇文章,我在forum_view.asp中 找不到
u_integral=rs("u_integral")
下面插入
u_faction=rs("u_usercp")
它这个版本是不是不是1.2免费版的,我的是1.2免费版的,我应该怎么改呢?急切期盼中

魅力的增加:
进入后台按顺序依此执行如下SQL语句:
alter table add usercp varchar(100) default 0
update set usercp='0' where isnull(usercp)

在forum_view.asp中
寻找:
dim fir_id,fir_topic,fir_top,counter,re_counter,fir_istop,fir_isgood,fir_islock,del_type
增加u_usercp
修改成:
dim fir_id,fir_topic,fir_top,counter,re_counter,fir_istop,fir_isgood,fir_islock,del_type,u_usercp
寻找类似此行
"user_data.url as u_url,user_data.face as u_face,user_data.tim as u_tim,user_data.remark as u_remark,user_data.bbs_counter as u_bbs_counter,user_data.emoney as u_emoney,user_data.userCP as u_userCP,user_data.integral as u_integral,user_data.power as u_power,user_data.popedom as u_popedom " & _
加入 user_data.u_usercp as u_usercp 后:
"user_data.url as u_url,user_data.face as u_face,user_data.tim as u_tim,user_data.remark as u_remark,user_data.bbs_counter as u_bbs_counter,user_data.emoney as u_emoney,user_data.userCP as u_userCP,user_data.integral as u_integral,user_data.u_usercp as u_usercp,user_data.power as u_power,user_data.popedom as u_popedom " & _
寻找
u_integral=rs("u_integral")
下面插入
u_faction=rs("u_usercp")
3. 编辑 config_forum.asp
寻找类似此行
vbcrlf & "<tr><td>等级:"&user_view_power(u_power,0)&user_star(u_integral,u_power,2)&".......后面还有......
在此后插入 <br>魅力:"&u_usercp&" 后
vbcrlf & "<tr><td>等级:"&user_view_power(u_power,0)&user_star(u_integral,u_power,2)&"<br>魅力:"&u_usercp&" .......后面还有......
这样可以在短信奖励中增加了,威望也可以这样加

温柔幻刀 发表于 2005-11-17 06:23:19

请严格按照本站的提示操作!!!
页: [1] 2 3
查看完整版本: 【已解決】本站资源下载的插件问题