Hi all
I have SVW configured for some users and working fine. However, the customer is asking whether there is any way to change the page that appears in the unprotected desktop's browser after the SVW is initalised, that says "You do not have permission to login. Please contact your administrator."
As far as I can see, there is no configuration possible on this. Have I missed anything?
IVE is version 7.2R4
Any help gratefully received...
Solved! Go to Solution.
Sorry, I looked at it and got side-tracked before I got you updated.
It can be done:
use SSL.thtml
replace
<% LoginPageErrorMessage %>
with
<% IF LoginPageErrorCode == 1025 %>
<b> put your custom text here
</b>
<% ELSE %>
<% LoginPageErrorMessage %>
<% END %>
you can see the sample I did at https://christenet.homeip.net/svw
you are welcome
Hi Zanyterp
Just wondering whether you had any joy in this? Guessing that the answer was either that it's not configurable or that you got sidetracked.
Hi Zanyterp
That is so helpful - I am deeply grateful.
Many thanks indeed.
What are they looking to change?
Using the default page you may be able to change the text; using custom pages you should be able to change it more
Hi Zanyterp
Thanks for the feedback. Maybe I'm not making myself very clear. When the SVW initialises, the user's browser in the real desktop gets redirected to the page as shown in the attached image. On the protected desktop, everything works fine and the user's browser opens on the authentication page. However, the customer is asking if the content of the page shown below can be changed, as it can be confusing to users. I have looked under Sign-in Pages and under the appropriate User Role UI options, but there seems to be no way to change the content of this page, or get the IVE to present a custom page to the browser in the real desktop. (NB we have to allow users to switch to real desktop during SVW sessions).
Sorry, I looked at it and got side-tracked before I got you updated.
It can be done:
use SSL.thtml
replace
<% LoginPageErrorMessage %>
with
<% IF LoginPageErrorCode == 1025 %>
<b> put your custom text here
</b>
<% ELSE %>
<% LoginPageErrorMessage %>
<% END %>
you can see the sample I did at https://christenet.homeip.net/svw