• Quick User Guides PTB version 9.5 (EN)

    Below are all Quick User Guides for Principal Toolbox version 9.5. All Guides are Word documents so that you can fit them to your processes, configuration and workflow.

  • Quick User Guides Fortes Change Cloud (NL)

    Hier vind je alle Quick User Guides voor Fortes Change Cloud. Alle Guides zijn Word documenten zodat je ze op maat kunt maken voor je eigen processen en configuratie.

  • Quick Admin Guides Fortes Change Cloud (NL)

    Hier vind je alle Admin User Guides voor Fortes Change Cloud. Alle Guides zijn Word documenten zodat je ze op maat kunt maken voor je eigen processen en configuratie.

  • How to run application on port 80 (instead of the default port 9000)

    Normally the Apache Tomcat server is reached to an url with a port number like http://localhost:9000/. This can be changed to reach your server by typing http://localhost/. 1. Open the server.xml file in a text editor. The server.xml can be found in the \conf directory of the Tomcat application. Find the section which defines the non-SSL…

  • How to redirect IIS 7 / 7.5 to Principal Toolbox application

    General This information was extracted from the original post on: How To Configure IIS 7.0 and Tomcat with the JK 1.2 Connector. For more information and troubleshooting please look at that post. For this instruction, you will need the Jakarta ISAPI connector and configuration files as attached to this topic (see…

  • How to increase the PermGen Space in Tomcat

    By default, Tomcat is assigned a very little PermGen memory for the running process. This can cause “Java.Lang.OutOfMemoryError: PermGen Space” errors in the Tomcat logging. To fix it, increase the PermGen memory settings by using the following Java VM options. Increasing the Java PermGen memory Start the Tomcat8w monitor application, which…

  • How to solve trailing slash (/) in Tomcat 7+

    Tomcat is not adding trailing slash (/) to web app’s context (example: APPLICATION.COM/TEST/) When you have Tomcat 7.0.67 or higher, you need to add the following attribute to your context.xml <Context mapperContextRootRedirectEnabled=”true”>…</Context> As per the 7.0.67:Move the functionality that provides redirects for context roots and directories where a trailing /…