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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] 远程附件(+备份)for discuz4.* 5.*

[复制链接]
plainer13 发表于 2006-5-12 19:17:49 | 显示全部楼层 |阅读模式
attchftp.php见附件
适用于discuz4,5
在discuz5中以下代码不一定能找到,可找到相近代码
开启远程附件还要更改config.inc.php的attachurl


手动安装本机测试
不用升级数据库

1、把 attchftp.php 文件放在论坛根目录,并修改里面的值。

2、打开 include/common.inc.php,找到:
  1. require_once DISCUZ_ROOT.'./config.inc.php';
复制代码
在上面添加:
  1. require_once DISCUZ_ROOT.'./attchftp.php';
复制代码

4、打开 include/post.func.php,找到:
  1. // watermark filename
复制代码
在上面加上:
  1. global $ftplist;
复制代码

再找:
  1. $target = $attachdir.'/'.stripslashes($attach['attachment']);
复制代码
在下面加上:
  1. if(!$ftplist['store']['on']) {
复制代码

再找:
  1. $attacharray[] = $attach;
  2.                         }
  3.                 } else {
  4.                         showmessage('post_attachment_save_error');
  5.                 }
复制代码
下面加上:
  1.                         } else {
  2.                         $attach_fname = substr($filename, 0, 64) . '_' . random(12) . '.' . $extension;
  3.                         $ftp_store_hd = ftpconnect($ftplist['store']);
  4.                                                 
  5.                         if($attach_subdir) {
  6.                                 if(!@ftp_chdir($ftp_store_hd, $attach_subdir)) {
  7.                                         ftp_mkdir($ftp_store_hd, $attach_subdir);
  8.                                         ftp_chdir($ftp_store_hd, $attach_subdir);
  9.                                 }
  10.                                 $attach_fname0 = $attach_subdir . '/' . $attach_fname;
  11.                         } else {
  12.                                 $attach_fname0 = $attach_fname;
  13.                         }
  14.                         if(@ftp_put($ftp_store_hd, $attach_fname, $attach['tmp_name'], FTP_BINARY)) {
  15.                                 @ftp_close($ftp_store_hd);                     
  16.                                 $attach['filename'] = $attach['name'];
  17.                                 $attach['filesize'] = $attach['size'];
  18.                                 $attach['perm'] = $allowsetattachperm ? $attachperm[$key] : 0;
  19.                                 $attach['description'] = cutstr(dhtmlspecialchars($attachdesc[$key]), 100);
  20.                                 $attach['attachment'] = $attach_fname0;
  21.                                 $attacharray[] = $attach;
  22.                                                 if($ftplist['backup']['on']){
  23.                                                 $ftp_backup_hd=ftpconnect($ftplist['backup']);
  24.                                                 if($attach_subdir) {
  25.                                 if(!@ftp_chdir($ftp_backup_hd, $attach_subdir)) {
  26.                                         ftp_mkdir($ftp_backup_hd, $attach_subdir);
  27.                                         ftp_chdir($ftp_backup_hd, $attach_subdir);
  28.                                 }
  29.                                 
  30.                         }
  31.                                                 if(@ftp_put($ftp_backup_hd,$attach_fname,$attach['tmp_name'],FTP_BINARY)){
  32.                                                                 @ftp_close($ftp_backup_hd);
  33.                                                                 }
  34.                                                 }
  35.                                                                
  36.                                                                
  37.                         } else {
  38.                                 showmessage('post_attachment_save_error');
  39.                         }
  40.                 }
复制代码

7、打开attachment.php,找:
  1. if(is_readable($filename) && $attachexists) {
复制代码
在上面添加:
  1. if(!$ftplist['store']['on']) {
复制代码
再找:
  1. else {

  2.         showmessage('attachment_nonexistence');

  3. }
复制代码
在下面添加:
  1. } else {
  2. ob_end_clean();
  3. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  4. header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
  5. header('Cache-Control: private');
  6. header('Pragma: no-cache');
  7. header('Content-Encoding: none');
  8. if(!$download && $isimage) {
  9.         header('Content-Disposition: '.(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') ? 'inline; ' : 'attachment; ').'filename='.$attach['filename']);
  10. } else {
  11.         header('Content-Disposition: attachment; filename='.$attach['filename']);
  12. }
  13. header('Content-Type: '.$attach['filetype']);
  14. if($download) {
  15.         $result = ftpconnect($ftplist['store']);
  16.         $ftp_path = dirname($attach[attachment]);
  17.         $ftp_file = basename($attach[attachment]);
  18.         ftp_chdir($result,$ftp_path);
  19.         $tmpfile = tempnam( getcwd()."/", "temp" );
  20.         if(ftp_get($result, $tmpfile, $ftp_file, FTP_BINARY)){
  21.                 ftp_quit($result);
  22.                 readfile($tmpfile);
  23.                 unlink($tmpfile);
  24.                 exit;
  25.                } else {
  26.                 showmessage('attachment_nonexistence');
  27.         }
  28.         unlink($tmpfile);
  29.         ftp_quit($result);
  30. } else {
  31.         readfile($ftplist['store']['url'].'/'.$attach['attachment']);
  32. }
  33. if(!$isimage) {        
  34.         updatecredits($discuz_uid, $creditspolicy['getattach'], -1);
  35. }
  36. }
复制代码
8、完成。

attchftp.php同
请注意附件都没有在线删除

[ 本帖最后由 plainer13 于 2006-9-15 16:08 编辑 ]

本帖子中包含更多资源

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

x

评分

1

查看全部评分

elefee 发表于 2006-5-12 19:18:47 | 显示全部楼层
沙发
回复

使用道具 举报

Spider_C++ 发表于 2006-5-12 19:28:23 | 显示全部楼层
板凳?
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-12 19:29:33 | 显示全部楼层
帮忙测试一下吧,我不太懂
回复

使用道具 举报

sdzfx 发表于 2006-5-12 19:43:44 | 显示全部楼层
以前发过吧
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-12 19:57:07 | 显示全部楼层
原帖由 sdzfx 于 2006-5-12 19:43 发表
以前发过吧

更改
https://discuz.dismall.com/viewthread.php?tid=229806#
安装存在一些问题

[ 本帖最后由 plainer13 于 2006-5-12 20:05 编辑 ]
回复

使用道具 举报

孤情一刀 发表于 2006-5-12 20:06:27 | 显示全部楼层
顶 !
回复

使用道具 举报

孤情一刀 发表于 2006-5-12 20:06:43 | 显示全部楼层
再支持一下
回复

使用道具 举报

shenstef 发表于 2006-5-12 20:09:03 | 显示全部楼层
友情演出
回复

使用道具 举报

孤情一刀 发表于 2006-5-12 20:11:44 | 显示全部楼层
有没手动安装的方法?
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 06:13 , Processed in 0.034109 second(s), 7 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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