Session guide
The Session module provides a session tracking and session storage mechanism.
Last updated
Was this helpful?
The Session module provides a session tracking and session storage mechanism.
Last updated
Was this helpful?
When using the module, each visitor to your web app is assigned a random and secure unique identifier, and you'll be able to keep track of their activity across requests, and store visitor-specific data.
The most obvious use of a session mechanism like this is to implement a login system to let your users identify themselves with some sort of password, and give them access to their private sections and functionalities. This is exactly what the does using .
But you can use the module for many other purposes. Let's see how.
The module uses the cherrycake_session
table in the database to store the sessions information.
You can create the Session table in your database by importing the
session.sql
file you'll find in the , under theinstall/database
directory.
Because needs a connection to a database, you need to set it but by creating a /config/Database.config.php
file just like we did in the .
First, let's remember our simple , which worked with this basic HelloWorld
app module:
Now, let's say we want to show how many times the visitor has seen the Hello World page. We'll do this by storing the views counter in the visitor's session, like this:
Now, every time a visitor reloads the page they'll see the counter growing:
Note we've updated the show
method to use the module to create the HTML document structure, now that we learned how it works in the .
Now, to use the module, you first need to add it to the list of your core , like this:
See this example working in the site.