[bd] Attachment Store for XenForo 2.x 2.1.3

No permission to download
Joined
Aug 6, 2020
Messages
1,130
Reaction score
3,068
Credits
$1,142
hellobut submitted a new resource:

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


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);
    }