Skip to main content

 

When the user clicks on Aurena no page is displayed and the URL now has the suffix #aurena.casual#

 

On clicking on IFS Enterprise Explorer link again no login page and the URL now shows the suffix #rwc.client.path#

 

Click on IFS Aurena B2B and nothing happens other than the URL now shows the suffix #aurena.b2b#

 

If we add admin after the URL all the 3 options above work.

 

Any ideas on why and how to resolve this issue?

Hi @RutJWhalen ,

 

Did you able to resolve this? 


@rmssara Sorry for the delay in responding, missed the notification.

 

Basically, our index.html file located in the F:\IFS\IFSMWS\IFST\instance\IFST\www-root folder had been modified/updated and the href was not defined, see below:

 

        <h3>Application Access</h3>

        <div class="element">
            <a href="#aurena.casual#" class="linkContainer">
                <img class="image" id="AurenaLink" src="Images/AurenaImage.jpg">
                <h2>IFS Aurena</h2>
                <p class="helpText">Main user interface for employees, providing browser based access on any device.</p>
            </a>
        </div> 

 

This was resolved by adding the correct href for the option.:

            <a href="/main/ifsapplications/web/" class="linkContainer">
                <img class="image" id="AurenaLink" src="Images/AurenaImage.jpg">
                <h2>IFS Aurena</h2>
                <p class="helpText">Main user interface for employees, providing browser based access on any device.</p>
            </a>
        </div> 


Reply