When reporting an issue, please list the version of Pocket you are using and any relevant information about your software environment:
Version: Pocket v0.3.5
env: multiple
Copyright (c) 2000 BeOpen.com.
All Rights Reserved.
Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All Rights Reserved.
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.
All Rights Reserved.
Backend Python Library: /usr/bin/python3
Platform: linux
## Steps to Reproduce Issue:
>> Avoid vague language like "it doesn't work." Please describe as specifically as you can what behavior you are actually seeing (eg: an error message? a nil return value?).
1. run upgrade script as per https://github.com/reactive-firewall/Pocket-PiAP/wiki/Upgrading-Manually-while-in-Beta
2. reboot via `sudo shutdown -hr now`
3. wait for reboot and network to come back up
4. attempt to login to web UI via `https://pocket.piaplib.local` with valid user (previously working user)
5. get 406 error
## Logs (If Available):
>> Please attach any logs from Pocket-PiAP relevant to the bug.
**REDACTED**
## Additional Information:
>> Anything else relevant to this issue.
cause of this issue is a permissions issue on the backend
workaround:
```bash
sudo find /usr/local/lib/python3.4/dist-packages/ -type d -print0 2>/dev/null | xargs -0 -L 1 -I{} sudo chmod -v 755 {}
sudo find /usr/local/lib/python*/dist-packages/ -type f -iname "*.py" -print0 2>/dev/null | xargs -0 -L 1 -I{} sudo chmod -v 755 {}
# test
sudo -u pocket python3 -m piaplib.pocket keyring saltify --msg test -S test | grep -F "9ba1f63365a6caf66e46348f43cdef956015bea997adeb06e69007ee3ff517df10fc5eb860da3d43b82c2a040c931119d2dfc6d08e253742293a868cc2d82015" || echo "FAILED"
Basic Info
Copyright (c) 2000 BeOpen.com. All Rights Reserved.
Copyright (c) 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved. Backend Python Library: /usr/bin/python3 Platform: linux