caching login related #51
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
the caching and the login mechanism interfere witch each other. this is more compley than i initially thought.
"etag" and "last modified" headers which basically prevent the browser to reload a page when the header did not change.
django settings specific config, i.e. a file based cache which definetly imposes problems with the login mechanism, this should be turned off entirely
the csrf middleware token does somehow get cached by 1. and/or 2. which makes it impossible to login or to add/modify a new coin.
For simplicity all caching features should be disabled and then the csrf-token-problem might be investigated. it is no option to turn off csrf protection as it seems to bee really hard-coded into django ant there is no simple option to just turn it completely off...
problem-timeline