[bd] Attachment Store for XenForo 2.x

[bd] Attachment Store for XenForo 2.x 2.1.3

Sem autorização para baixar
  • Criador do tópico Criador do tópico hellobut
  • Data de início Data de início
Associado
06/08/2020
Mensagens
1.112
Pontuação de reações
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
CÓDIGO:
  private function getFilePathDate($data)
    {
        return gmdate('Y/m', $data->upload_date);
    }

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