panomitrius
panomitrius
Did you find a solution for this @cur1ou5soul? I have a similar problem.
I have the same issue. Everything seems to work fine. But no data at all gets written. I've set the download folders to /data. I've tried to check the pre...
Found the solution, it's a permission error. ``` UMASK=000 PUID=0 PGID=0 ``` Solved it!
I've tried addin the script by using `VPN_OPTIONS=--script-security 2 --route-up /config/tun_up.sh` instead, after following the solution [mentioned here](https://superuser.com/questions/505012/how-to-execute-multiple-scripts-when-openvpn-establishes), but that gives me the error `WARNING: Failed running command (--route-up): external...
Started working after 8 or so restarts of the docker containers at different times during the day.. No idea why the first restarts didn't solve it but now it works..
I managed to get the script running without errors adding these 3 lines to manage.py: `import codecs` `sys.stdout = codecs.getwriter('utf8')(sys.stdout)` `sys.stderr = codecs.getwriter('utf8')(sys.stderr)` after finding the suggestions [here](https://gist.github.com/opera443399/0fb9b7b4ce3f37045fdd33639279e6a1) However, manage.py...
I realized that Zulip uses the email service different than for example Rocket Chat and that I can’t use it with it’s default settings with zoho email. However I could...
> Monkey-patching `sys.stdout` and `sys.stderr` is certainly wrong; the error isn’t about printing something to stdout or stderr. > > It looks like your problem matches https://bugs.python.org/issue29750 “smtplib doesn't handle...
I found a sollution by commenting the SSL_CERTIFICATE_GENERATION option and linking my current ssl certicates by adding them as volumes: `volumes:` ` #...after the other volume settings` ` - '/etc/letsencrypt/live/privkey.pem:/data/certs/zulip.key:ro'...
Getting similar errors.. Tried both with `#!/bin/bash` and `#!/bin/zsh` When I run the script I get all this without typing anything: ``` bash ./backup.sh ./backup.sh: line 29: [: -v: unary...