Sessions are used to store the user information on the server. The information is used primarily for identifying the user on subsequent accesses. Thus, we can say that the sessions maintain the state in a web application. Sessions create a Unique ID for each visitor and store the information based on this UID. The session Continue reading…
Configuring Session in Yii Framework – CDbHttpSession
The first post of the series explained the storing of the session data in the files using the CHttpSession component. This is the default method for managing sessions. However, saving the session in database is considered to give be a better option for handling sessions.
In a Yii application, you can store the user session in Continue reading…
Configuring Session in Yii Framework –CCacheHttpSession
Yii framework has three different possibilities for configuring the session. In the Yii Session series, we are already familiar with the session configuration by using the regular server side session and the database based session handling. This is the last article of the series and it talks about the session handling by using cache as Continue reading…
Follow Us