[bd] Attachment Store for XenForo 2.x

[bd] Attachment Store for XenForo 2.x 2.1.3

Vous n'avez pas l'autorisation de télécharger
  • Auteur du fil de discussion Auteur du fil de discussion hellobut
  • Date de début Date de début
Inscrit(e) le
Août 6, 2020
Messages
1,112
Score de réaction
3,192
Credits
$1,298
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);
    }
 
Haut