Web Interface "remembers" (in a cookie) the folder location by default where users exit Web Interface and at the next login starts automatically in that folder. To overwrite the default of remembering folders and starting always in the root, two things need to be changed.
- Start always in the root
Edit applist.cs in site/serverscripts
-- find --
currentFolder = userPrefs.getCurrentFolder();
-- change to --
currentFolder = ""; - Remove or Disable option from the presentation settings
Edit presentationSettings.inc in site/include
-- find --
value="<%=VAL_ON%>" <%=viewControl.getRememberFolderCheckedStr()%>>
-- change to --
value="<%=VAL_ON%>" <%=viewControl.getRememberFolderCheckedStr()%>" disabled>
To remove the option from the presentation settings
Edit presentationSettings.cs in site/serverscripts
-- find --
bool bCustomizeRememberFolderOption = true;
-- change to --
bool bCustomizeRememberFolderOption = false;
0 comments:
Post a Comment