[bd] Attachment Store for XenForo 2.x

[bd] Attachment Store for XenForo 2.x 2.1.3

No permission to download
hellobut First Sergeant
Staff member
Bronze Member
badge id 104 You Are Richer badge id 74 Over 10 sales badge id 63 2,000 Reaction Score badge id 62 1,000 Reaction Score
Aug 6, 2020
1,130
2,909
$1,112
hellobut submitted a new resource:

[bd] Attachment Store - Store attachment differently and more effectively

Store attachment differently and more effectively.

Features:
  1. Store attachments in data directory
  2. Store attachments with Amazon S3 (+CloudFront)
  3. Store attachments in remote server via FTP
  4. Tools to move existing attachments to new storage
  5. With option "Keep Local File" for Amazon S3 and FTP, your data is extremely safe and you can disable/uninstall the add-on anytime without absolutely no problems

Installation:
  1. Upload files and directories inside...

Read more about this resource...
 
tip:if you want to change files folder like Y/m Y/m/d Y or other folder,you can change it like this :

/src/addons/Xfrocks/AttachmentStore/Data/Storage.php

from
Code:
  private function getFilePathDate($data)
    {
        return gmdate('Y/m', $data->upload_date);
    }

to
Code:
  private function getFilePathDate($data)
    {
        return gmdate('Y/m/d', $data->upload_date);
    }
 
Back
Top