MCImageManager:Configuration/SessionAuthenticator.rootpath key
From Moxiecode Documentation Wiki
Contents |
[edit]
Option: SessionAuthenticator.rootpath_key
This option enables you specify what session key to grab the filesystem.rootpath from.
[edit]
Example of usage in the config.php file
$mcImageManagerConfig['SessionAuthenticator.rootpath_key'] = "MyPath";
[edit]
Example of usage in the Web.Config file
<add key="SessionAuthenticator.rootpath_key" value="MyPath" />
[edit]
Example on how to set the session in PHP
$_SESSION['MyPath'] = '/some/root/path';
[edit]
Example on how to set the session in ASPX
Session("MyPath") = "/some/root/path";
