Grigoriy Dobryakov
Grigoriy Dobryakov
Found here https://github.com/lynndylanhurley/ng-token-auth/blob/058bc2bb56ee455c40a53485c2070a8d7df6db2d/src/ng-token-auth.coffee
Solution for globally disable this behaviour: app/scripts/app.coffee ``` httpMethods = ['get', 'post', 'put', 'patch', 'delete'] angular.forEach(httpMethods, (method) -> $httpProvider.defaults.headers[method] ?= {} delete $httpProvider.defaults.headers[method]["If-Modified-Since"] ) ```
> Does the rest of the data look fine? In most cases no :( The rest data looks like �Ĥ��� till the end of body.
> are you maybe using compression in c# and did not configure it on the php side? Compression? Hmm.. Could you please point me to the manuals describing this?
Unfortunately no. As we investigated, in the best case the library gives us decimal value as set of bytes. Looks like { value: "�Ĥ���" } in json. The single working...
@nick-zh @Steveb-p We are using jobcloud library too. Doesn't work out-of-the-box at the moment. We use the hack with `hexdec(bin2hex())` and convert values manually (`$1234567` to `$12345.67` mentioning the exponent...
+1. Let me explain a workaround to others: create a file named (for example) as `config/initializers/vkontakte.rb` with following content: ``` VkontakteApi.configure do |config| config.api_version = '5.21' end ``` And restart...
`sv restart cron` does not help. Only manual re-edit helps.
The file `crontab.txt` has correct _linux_ line endings (LF).
Applied workaroud ``` # Dockerfile RUN echo "#!/bin/bash\ntouch /etc/crontab /etc/cron.d/* /var/spool/cron/crontabs/*" >> /etc/my_init.d/touch-crond && chmod 744 /etc/my_init.d/touch-crond ```