Set up a demo site that allows many people to use the same login
This applies to Joomla 1.0.xx only
By default, Joomla allows a user to be logged in only once. If they (or someone else) logs in at the same time from another computer, the original user will be logged out. This is for security, but sometimes you want to allow this (for a demo site, for example).
You can set up Joomla to do this, but it requires a simple change to one of the core files.
You will need to edit includes/version.php. Look for this code:
/** @var string Whether site is a production = 1 or demo site = 0: 1 is default */
var $SITE = 1;
/** @var string Whether site has restricted functionality mostly used for demo sites: 0 is default */
var $RESTRICT = 0;
Change the $SITE to
var $SITE= 0;
This will allow multiple user logins with only one account. By default Joomla! allows only one active session per account as a security feature.
You should probably also change $RESTRICT to:
var $RESTRICT = 1;
This change disables those logging in, both frontend and backend from changing user details - like password and username.


