Author: Kepion Product Team
Introduction
Note: HTML5 is currently enabled by default on all new installations of Kepion after version 6.0.18273, but if you need to enable it manually for any reason, follow the steps below:
Scope:
- Browsers: Modern Chrome/Edge/IE11.
-
Modules: APPS, ADMINISTRATOR, SYSTEM.
Example
To enable your environment for HTML5, please run the following on your SQL Server:
IF EXISTS(SELECT * FROM [CPMAppHost].[dbo].[SystemSettings] WHERE [Key] = N'IsHtml')
DELETE FROM [CPMAppHost].[dbo].[SystemSettings]
WHERE [Key] = N'IsHtml';
INSERT INTO [CPMAppHost].[dbo].[SystemSettings]
([Key],[Value])
VALUES(N'IsHtml', 1);
Then stop and start the Kepion Planning server from your IIS Manager.
Now you should be able to open Chrome/Edge and connect to Kepion.
Comments
0 comments
Please sign in to leave a comment.