You can specify which files can be uploaded as spot files. That means, user can’t use other file types for spots in IXM One.
To create a list of allowed file formats, 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++.
Go to common > upload > types > spot > fileTypes > extensions.
Specify the file extensions of file formats that you want to allow as spot files such as .html.zip.
Save your changes and close the file.
"common": {
"upload": {
"types": {
"media": {
"maxSize": "1024MB"
},
"spot": {
"fileTypes": {
"extensions": [
".mp4",
".html.zip",
".asc.zip"
]
}
}
}
}
}