I use Backload as backend for plupload. Is there any way to disable automatic thumbnails generation in backload? I didn't find a notice about that.
Asked
Active
Viewed 277 times
2 Answers
2
I found the solution in official documentation. Maybe it would be useful to someone.
Set the path attribute of the thumbnails configuration element to an empty string: <thumbnails path="" ... />

Sergеу Isupov
- 504
- 1
- 8
- 20
0
Setting path to empty string is not sufficient for backload version 2.2.2. Instead <thumbnails ... >
has a store
attribute. So you need to put this into configuration:
<thumbnails store="false" />

infiniteRefactor
- 1,940
- 15
- 22