By default, Offline Viewer has security settings that restrict what it opens, and the resources it will load. These features can be configured or turned off in environments that don't require them, so that Offline Viewer is more convenient to use.
-
Find the OfflineViewer.config file, or create it.
The file should be in the same directory as the Offline Viewer application.
-
Open OfflineViewer.config in a text editor.
-
Configure the disableExternalResources setting.
This setting determines if Offline Viewer loads external resources such as pages, links, and images.
-
Set the value to true to disable external resources (default value if omitted).
-
Set the value to false to allow external resources.
-
-
Configure the verificationType setting
This setting determines what checksum verification Offline Viewer performs before opening a .ofln file. Setting this value to Skip can be useful for organizations that can't, or don't need to, create a checksum file for .ofln files.
-
Set the value to Full to perform a full check on modified site contents (default value if omitted).
-
Set the value to Quick to perform a check on modified file sizes only.
-
Set the value to Skip to skip modification checks.
-
-
Save the changes to the OfflineViewer.config file.
Ensure the file is saved in the same directory as the Offline Viewer application.
-
Ensure the OfflineViewer.config file can't be opened or edited by unauthorized users.
Sample OfflineViewer.config file
{
"_comment": [
"**********************************************************************************",
" Description: Author-it OfflineViewer Configuration Settings ",
" Author: Author-it Software Corp (http://www.author-it.com) ",
" Copyright: Author-it Software Corp, All Rights Reserved ",
" Last Updated: 23-Oct-2024 ",
" Version: 2024.R5 ",
" ",
" disableExternalResources: ",
" - prevents loading of external pages, links and images ",
" - possible values: true, false ",
" - default value when omitted: true ",
" ",
" verificationType: ",
" - configure CheckSum verification behavior ",
" - possible values: Full, Quick, Skip ",
" - default value when omitted: Full ",
" -- Full: perform full check on modified site contents ",
" -- Quick: perform check on modified file-sizes only ",
" -- Skip: do not perform any modification checks ",
"**********************************************************************************"
],
"disableExternalResources": "true",
"verificationType": "Full"
}