[bd] Attachment Store for XenForo 2.x 2.1.3

No permission to download
hellobut First Sergeant
Staff member
Bronze Member
You Are Richer Over 10 sales 2,000 Reaction Score 1,000 Reaction Score
Aug 6, 2020
1,130
2,921
$1,112
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);
    }