Milos Stojanovic

Results 74 comments of Milos Stojanovic

Hi, Pagination is just a front-end convenience, the whole content of the current directory will always be loaded in one go. This is how the underlying flysystem works since most...

No, but I'll tag this as a suggestion and try to include some kind of config parameter in future versions.

Nope, this is not possible yet

Hi, The ZipAdapter is not implemented in v3, and we need that here https://flysystem.thephpleague.com/v1/docs/adapter/zip-archive/

Hi, Thanks for your question. The main reason is simplicity and compatibility. You can share your patch so others can try your approach. We can then see how it goes...

Hi, Is there anything in the logs? Can filegator write to each of those folders? If one folder has a wrong permissions then everything could fail. It can also happens...

Hi, Thanks for this. Process Control Extensions (Process) is not very widely used php extension, many people don't have this installed and they have a good reason. Further more, as...

Oh wait, this is a Symfony component, my bad. Let me actually try this...

Yup, this works great, but again, it should be implemented using the `ArchiverInterface` interface. Something like: `configuration.php`: ``` 'Filegator\Services\Archiver\ArchiverInterface' => [ 'handler' => '\Filegator\Services\Archiver\Adapters\SymfonyProcessArchiver', 'config' => [ 'bin' => '/usr/bin/zip',...

The only real catch here it how to make this work with remote filesystems, s3 or ftp. The current version uses tmp files to solve this problem.