MCImageManager:Configuration/SessionAuthenticator.config prefix
From Moxiecode Documentation Wiki
Contents |
[edit]
Option: SessionAuthenticator.config_prefix
This option enables override any config option from a session, the value of this option will be used as a prefix when it looks though the sessions for config options.
[edit]
Example of session override in PHP
$_SESSION['imagemanager.filesystem.rootpath'] = '/some/root';
[edit]
Example of session override in ASPX
Session["imagemanager.filesystem.rootpath"] = "/some/root";
[edit]
Example of usage in the config.php file
$mcImageManagerConfig['SessionAuthenticator.config_prefix'] = "imagemanager";
[edit]
Example of usage in the Web.Config file
<add key="SessionAuthenticator.config_prefix" value="imagemanager" />
