Giulio Provasi

Results 13 comments of Giulio Provasi

sure here it is ``` { "name": "acme/app", "type": "library", "description": "app", "keywords": [ "laravel", "site", ], "license": "proprietary", "authors": [ { "name": "acme", "email": "[email protected]", "homepage": "https://www.acme.com/" } ],...

I ended up doing same stuff as `predis/predis` in the meantime : composer.json ``` "scripts": { "post-install-cmd": "./scripts/apply-patches.sh", "post-update-cmd": "./scripts/apply-patches.sh" } ``` apply-patches.sh ``` #!/usr/bin/env bash # hop in current...

@giampaolo do you have an idea ? I get the same issue on my ftp server Some users can't upload any files due to the fact that STOR sends no...

I found out that doing this works (kindof): ``` import urllib.request as req def open(self, filename, mode): """Open a file returning its handler.""" assert isinstance(filename, unicode), filename x = req.urlopen('http://mirror.filearena.net/pub/speed/SpeedTest_2048MB.dat')...

Ok, I managed to use `urllib` (not `requests`) as their response *"implements"* all the BufferedStream methods: ``` import urllib.request as req def open(self, filename, mode): """Open a file returning its...

Ok I see, I will take a look at the branch in question. The API calls are on a dedicated network which will have no lag/firewalls, so it shouldn't be...

Thank you for the input, that lead me to the right direction, I will indeed post some code once that works ;)

@giampaolo here is how I've implemented the upload/download directly to the remote server storing the final file, I am not completely 100% sure about the "wait for chunks from client"...

indeed fixed, I had it removed as we don't support `APPE`

> It's almost like you'd want to persist the last validator Indeed this should be the proper behavior. I will indeed override the `throwValidationException` method right now ;)