成长值: 576
签到天数: 4817 天 [LV.Master]伴坛终老
|
发表于 2015/6/20 02:01
|
显示全部楼层
|阅读模式
| Google Chrome 43.0.2357.124 | Windows 8.1
方法有待研究,目前已知就是远程附件功能。。
已经找到方案
搜索\template\default\forum\discuzcode.htm
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
复制代码
修改成如下,注意替换自己的域名
- <a href="http://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
复制代码
手机版在 template/default/mobile/forum/discuzcode.htm 和 template/default/touch/forum/discuzcode.htm
搜索
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
复制代码
修改
- <a href="http://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode" target="_blank">$attach[filename]</a>
复制代码
独家,注意注明出处:http://bbs.itzmx.com/thread-9349-1-1.html
2025年3月4日补充
帖子未插入的下载附件,和手机版未点击开的缩略图这两处还没改,有时间在弄
电脑版
未插入的图片附件搜索
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" {if $_GET['from'] != 'preview'}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})" id="aid$attach[aid]"{/if} class="xw1" target="_blank">$attach[filename]</a>
复制代码
改为
- <a href="https://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" {if $_GET['from'] != 'preview'}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})" id="aid$attach[aid]"{/if} class="xw1" target="_blank">$attach[filename]</a>
复制代码
图片附件还有一个要改的,鼠标移动上去悬浮窗呼出的"下载附件"按钮
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" target="_blank">{lang download}</a>
复制代码
改为
- <a href="https://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" target="_blank">{lang download}</a>
复制代码
未插入的压缩包附件搜索
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" {if $_GET['from'] != 'preview'}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} id="aid$attach[aid]" target="_blank">$attach[filename]</a>
复制代码
改为
- <a href="https://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode" {if $_GET['from'] != 'preview'}onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})"{/if} id="aid$attach[aid]" target="_blank">$attach[filename]</a>
复制代码
手机版
未插入的图片附件搜索,提示下触屏版没有"下载附件"按钮,等于说只要改标准版
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" id="aid$attach[aid]" class="xw1" target="_blank">$attach[filename]</a>
复制代码
改为
- <a href="https://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode¬humb=yes" id="aid$attach[aid]" class="xw1" target="_blank">$attach[filename]</a>
复制代码
未插入的压缩包附件搜索
- <a href="forum.php?mod=attachment{$is_archive}&aid=$aidencode" id="aid$attach[aid]" target="_blank">$attach[filename]</a>
复制代码
改为
- <a href="https://att.itzmx.com/forum.php?mod=attachment{$is_archive}&aid=$aidencode" id="aid$attach[aid]" target="_blank">$attach[filename]</a>
复制代码
互补:https://bbs.itzmx.com/thread-111924-1-1.html
|
|