You can enable the import and export of spots and the download of spot files like videos and images for specific user types in IXM One.
Enable spot import and export
To enable the import and export of spots for user types, perform the following steps:
Navigate to the configuration files on the server at: GVServer2\www\gv2\gf\GFWebHtmlCustomer\
Open one of the following folders:
00000: edit configurations for the entire server, which means for all customers.
000xxx: edit customer-specific settings. xxx is the customer ID.
Open the config.json file in your folder with a text editor like Notepad++.
Set cms > enableExportImportOfSpotsForUserType to one or more of the following options:
Admin: admin users can import and export spots.
StandardUser: standard users can import and export spots.
LocationUser: location users can import and export spots.
Save your changes and close the file.
"cms": {
"enableExportImportOfSpotsForUserType": [
"Admin",
"StandardUser",
"LocationUser"
],
}
Enable export of spot types
To enable the export of specific spot types, perform the following steps:
Navigate to the configuration files on the server at: GVServer2\www\gv2\gf\GFWebHtmlCustomer\
Open one of the following the folders:
00000: edit configurations for the entire server, which means for all customers.
000xxx: edit customer-specific settings. xxx is the customer ID.
Open the config.json file in your folder with a text editor like Notepad++.
Go to cms > export.
Set the following settings to true to enable the export:
composerSpots: specified users can export HTML Composer spots.
playlistToVideo: specified users can export playlists as a video.
spotpoolToVideo: specified users can export spot pools as a video.
Save your changes and close the file.
"cms": {
"export": {
"composerSpots": true,
"playlistToVideo": false,
"spotpoolToVideo": false
},
Enable spot file download
To enable the download of spot files such as videos and images for specific user types, perform the following steps:
Navigate to the configuration files on the server at: GVServer2\www\gv2\gf\GFWebHtmlCustomer\
Open one of the following the folders:
00000: edit configurations for the entire server, which means for all customers.
000xxx: edit customer-specific settings. xxx is the customer ID.
Open the config.json file in your folder with a text editor like Notepad++.
Set cms > allowDownloadableSpotFilesForUserType to one or more of the following options:
Admin: admin users can download spot files.
StandardUser: standard users can download spot files.
LocationUser: location users can download spot files.
Save your changes and close the file.
{
"cms":{
"allowDownloadableSpotFilesForUserType": [
"Admin",
"StandardUser",
"LocationUser"
],
}