Customise the 'Contact your administrator for assistance' page
Sep 27, 2024
07:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sep 27, 2024
07:17 AM
Customise the 'Contact your administrator for assistance' page
Version: Windchill 12.1
Use Case: I'd like to add a link to our internal support portal on this page
Description:
Solved! Go to Solution.
Labels:
- Labels:
-
General Customization
ACCEPTED SOLUTION
Accepted Solutions
Sep 27, 2024
08:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sep 27, 2024
08:14 AM
I believe the JSP you want to customize is here:
codebase/wtcore/error.jsp
Make sure you back up and manage properly your modifications.
2 REPLIES 2
Sep 27, 2024
08:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sep 27, 2024
08:14 AM
I believe the JSP you want to customize is here:
codebase/wtcore/error.jsp
Make sure you back up and manage properly your modifications.
Sep 27, 2024
10:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Sep 27, 2024
10:39 AM
Added an entry to codebase/WEB-INF/web.xml and restart
<!-- add it above any existing error-page entries in web.xml>
<error-page>
<exception-type>wt.session.SessionUsers$PreLoginException</exception-type>
<location>/wtcore/licensingError.jsp</location>
</error-page>
Created a new page (licensingError.jsp) to handle licensing issues
