need to have a single login for multiple clients to view Demo sections - Joomla! Forum - community, help and support
can me or guide me on how can have single login , password allow many users use, without booting previous person logged in?
there 'hidden' feature implemented 1.0.8, circumvents more robust session managment introduced.
prior 1.0.8, because of problems in session management, possible have more 1 user accessing account @ 1 time. increase security, removed.
however, needed allow our demo site demo.joomla.org ability 'loosen' session management system introduced.
you need change value in
/includes/version.php
you need change:
to
it decided not make more configurable, because useful limited subset of cases, when demo site being run, applies maybe less 1% of users. having visible config setting confuse 99% of users.
prior 1.0.8, because of problems in session management, possible have more 1 user accessing account @ 1 time. increase security, removed.
however, needed allow our demo site demo.joomla.org ability 'loosen' session management system introduced.
you need change value in
/includes/version.php
you need change:
code: select all
/** @var string whether site production = 1 or demo site = 0 */
var $site = 1;to
code: select all
/** @var string whether site production = 1 or demo site = 0 */
var $site = 0;it decided not make more configurable, because useful limited subset of cases, when demo site being run, applies maybe less 1% of users. having visible config setting confuse 99% of users.
Comments
Post a Comment