Configuration: session.php

Session configuration define the $_SESSION[$key] used by framework. If you installed 2 framework on same server with same login method and same session key, the app will be share same session. If you want to separated it, simply fill the session key value uniquely. The session configuration located at app/config/session.php.

Example

<?php
...
$saltkey = 's3M3Fr321$';
...