Enabling Content-Security-Policy (CSP) Frame Ancestor Headers
On the host server, running the WebUI, Open SQL Server Management Studio as an Administrator. Searching "studio" in Windows should get it to pop up.

Connect to their host sql server instance and open a new query against the Cablecast40 database.


Run the following command to enable the default CSP:Frame ancestor header.
MYSQL
1
update options set value = True where name = 'csp_headers_enabled'

You will see a success message if the command completes

Some databases may not have the value in the database in which case the above command will not work. In this event, try the following command.
MYSQL
1
2
Insert into Options (Name, Value)
Values ('csp_headers_enabled','True')
Additional domains that you want to embed content on cant be allowed from the Cablecast UI after this is enabled.
This is found in settings -> system settings -> public connectivity

After configuration completion, reboot the main host server, it forces all of the configuration files to update.