逐梦论坛's Archiver

shillan 发表于 2005-12-28 05:14

【论坛增强】在论坛首页调用首帖图文

不好意思,需要补丁了。看最后。

程序下载:[img]http://www.zhumeng.org/attachments/fileType/rar.gif[/img]此主题相关文件 [url=http://www.zhumeng.org/attachments/2005/12/28/051354.rar]051354.rar[/url]

安装方法及设置方法都在压缩包里,注意查看。
这是为防止论坛对代码的错误解释而做的,因为压缩包注释是完全文本的。

因为旧帖超过了我允许的修改期限,所以新发帖公布出来。



解决部分图片显示不出来的补丁:

找到;
----------------
                 imgpos = instr(topconte,"<img")
----------
下面加一行:
-------------------
                 if imgpos = 0 then imgpos = instr(topconte,"<img")
------------


解决调用回收站帖的问题:
找到:
----------------
                       topid = con.execute("select top 1 id from leadbbs_topic  order by id desc" )(0)

----------------------------------
替换为:
---------------------------
                       topid = con.execute("select top 1 id from leadbbs_topic where boardid<>444 order by id desc" )(0)
-------------------------

解决调用置回复提帖的问题:
topid = con.execute("select top 1 id from leadbbs_topic where boardid=" & pic_boardid & " order by rootid desc" )(0)
替换为:
                       topid = con.execute("select top 1 id from leadbbs_topic where boardid=" & pic_boardid & " order by id desc" )(0)

蚂蚁 发表于 2006-7-15 04:03

除了以上修改,还得修改论坛文件,因为它会调用论坛上传后的
images/filetype/gif.gif图片,也就是下面样子前面的图片:
=======样式=========
[img]http://www.zhumeng.org/attachments/filetype/gif.gif[/img]此主题相关图片
=======样式完========

而并不会去调用你上传后的图片。具体怎么做呢?很简单,为了保证文件的完整性,我并没有删除使用的单个定义。

打开文件:announce/uploadfile.asp

将里面的[color=red]" & headstr & "[/color]全部替换为空即可。

baihebbs 发表于 2006-9-19 18:09

能说详细一点么?
到首页如何调用toppic_fun.asp这个文件?
如何让调用图片滚动,最好是幻灯片的形式

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.