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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

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

[复制链接]
 楼主| plainer13 发表于 2006-5-12 22:01:55 | 显示全部楼层
原帖由 孤情一刀 于 2006-5-12 21:59 发表

一直这样..-_-~唉.....

我也不清楚,可是我的没问题啊
再检查一下吧,不行就把增加的数据表和相关代码删掉

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

使用道具 举报

孤情一刀 发表于 2006-5-12 22:06:06 | 显示全部楼层
算了我等其他人能修改成功后我再改吧!!
回复

使用道具 举报

cn256 发表于 2006-5-12 22:34:09 | 显示全部楼层
好东西.......
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-13 08:12:41 | 显示全部楼层

简化版

已测试
为保证扩展性,不对discuz数据表进行任何修改;
不对远程附件在线删除(减少了冗余的ftp连接,不会丢失附件,同步工具稍后送出);
安装见readme.txt。
手动安装见楼下
演示http://okice.uni.cc/discuz1远程附件和备份都开启

[ 本帖最后由 plainer13 于 2006-5-13 15:22 编辑 ]

本帖子中包含更多资源

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

x
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-13 08:12:57 | 显示全部楼层

简化版手动安装-测试

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

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

2、打开 include/common.inc.php,找到:


  1. require_once DISCUZ_ROOT.'./config.inc.php';
复制代码

在上面添加:


  1. require_once DISCUZ_ROOT.'./attchftp.php';
复制代码


3、打开 admin/forum.inc.php,找:



  1. $tids = 0;
  2.                 $query = $db->query("SELECT tid FROM {$tablepre}threads WHERE attachment>'0' AND fid='$fid'");
  3.                 while($thread = $db->fetch_array($query)) {
  4.                         $tids .= ','.$thread['tid'];
  5.                 }

  6.                 if($tids) {
  7.                         $query = $db->query("SELECT filename FROM {$tablepre}attachments WHERE tid IN ($tids)");
  8.                         while($attach = $db->fetch_array($query)) {
  9.                                 @unlink($attachdir.'/'.$attach['filename']);
  10.                         }
  11.                         $db->query("DELETE FROM {$tablepre}attachments WHERE tid IN ($tids)");
  12.                 }
复制代码

修改成:



  1.                 $tids = 0;
  2.         $query = $db->query("SELECT tid FROM {$tablepre}threads WHERE attachment>'0' AND fid='$fid'");
  3.         while($thread = $db->fetch_array($query)) {
  4.              $tids .= ','.$thread['tid'];
  5.         }

  6.        if($tids) {
  7.              $query = $db->query("SELECT filename FROM {$tablepre}attachments WHERE tid IN ($tids)");
  8.                                                  
  9.                                 
  10.               while($attach = $db->fetch_array($query)) {
  11.                      if(!($ftplist['store']['on'])){
  12.                                         @unlink($attachdir.'/'.$attach['filename']);
  13.                                         }
  14.                                                                                 }
  15.                     $db->query("DELETE FROM {$tablepre}attachments WHERE tid IN ($tids)");
  16.                }
  17.                         
  18.        }

复制代码


4、打开 include/post.func.php,找到:


  1. // watermark filename
复制代码

在上面加上:


  1. global $ftplist,$fid, $timestamp;
复制代码

再找:


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

复制代码


5、打开 include/editpost.inc.php,找:


  1. @unlink($attachdir.'/'.$attach['attachment']);
复制代码

有2处

都改成:
  1. if(!$ftplist['store']['on']) {
  2.                                         @unlink($attachdir.'/'.$attach['attachment']);
  3.                                 }
复制代码

6、打开topicadmin.php,找:


找(共两处):


  1. @unlink($attachdir.'/'.$attach['attachment']);
复制代码

改成:


  1. if(!$ftplist['store']['on']) {
  2.                                                 @unlink($attachdir.'/'.$attach['attachment']);
  3.                                         }
复制代码

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-5-13 15:13 编辑 ]
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-13 10:16:51 | 显示全部楼层

同步工具

占位
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-13 10:27:24 | 显示全部楼层
原帖由 孤情一刀 于 2006-5-12 22:06 发表
算了我等其他人能修改成功后我再改吧!!

我的2个论坛都测试成功,还是仔细看看吧
回复

使用道具 举报

cust 发表于 2006-5-13 10:50:15 | 显示全部楼层
支持
回复

使用道具 举报

 楼主| plainer13 发表于 2006-5-13 11:10:24 | 显示全部楼层

数据库问题

There seems to have been a problem with the database of your Discuz! Board

Discuz! info: MySQL Query Error

Time: 2006-5-13 12:57am
Script: /discuz1/index.php

SQL: SELECT * FROM cdb_simple_settings WHERE variable NOT IN ('bbrules', 'bbrulestxt', 'maxonlines', 'welcomemsg', 'welcomemsgtxt', 'newsletter', 'creditsnotify', 'custombackup')
Error:  Table 'okiceuni_other.cdb_simple_settings' doesn't exist
Errno.:  1146

Please check-up your MySQL server and forum scripts, similar errors will not be reported again in recent 24 hours
If you have troubles in solving this problem, please visit Discuz! Community
http://www.Discuz.net.
奇怪
回复

使用道具 举报

jjpan 发表于 2006-5-13 13:13:47 | 显示全部楼层
试试看
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-21 23:38 , Processed in 0.027641 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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