Relative Content

Tag Archive for flasksessionflask-session

Flask session not saved

I don’t know why this happen, I’ve try to config everything but still not work. I’m working with React and Flask.

how to clear flask session filesystem

app = Flask(__name__, static_url_path=”/static”) app.config[“SECRET_KEY”] = os.urandom(24) app.config[“SESSION_TYPE”] = “filesystem” app.config[“PERMANENT_SESSION_LIFETIME”] = timedelta(days=31) app.config.from_object(__name__) The flask up configuartion is mentioned above. my SESSION_TYPE is filesystem and can be changed to database if need be. I havnt tried database stored sessions so far. However for filesystem sessions when someone visits the site it stores a session […]