To change the default title, perform the following steps:


1. locate *\Clients\www\software\html5\settings.js
(if you use a third party server like IIS/Apache then look inside their default root folders)

2. locate inside that file settings.js following string

W.setDocuTitle = function() { try { document.title = "HTML5"; } catch(b) { } }(); 

3. change the default string "HTML5", to the desired name.


OR


Do it from the AdminTool\WEB\Web Portal Customization menu directly :



Do not forget to click on 'Save' to apply the change.


OR


In the index.html file located c:\Program File(x86)\Tsplus\Clients\www

After opening in an editor, look near the top of the file you will see <title>Web Access</title>

Change to: <title>Your text here</title>




To set your own favicon 


1. locate the folder:  *\Clients\www\ 

    (if you use a third party server like IIS/Apache then look inside their default root folders)


2. place your favicon.ico inside that folder like in example *\Clients\www\favicon.ico


3. Make sure your favicon.ico is accessible via http(s)://your_server.com/favicon.ico


PS: the favicon.ico works fine for FireFox, Chrome, IE11 browsers. However IE Edge 12 has unspecified behavior on https:// protocol (as example unsigned domain), so use working browsers if you want to display your specific favicon since this tutorial does not describe how to workaround third part issues. Tickets regarding such questions about IE Edge will be discarded as not TSplus related to be fixed. If favicon is not displayed on FireFox, Chrome or IE11, then delete cache, and check format of your icon image.


OR


In the index.html file located c:\Program File(x86)\Tsplus\Clients\www

Add this line under the <title> <Title>
<link rel="shortcut icon" type="image/ico" href="my_favicon.ico">

image