Download
To download Perceptive product installation files, complete the following steps.
- Visit Hyland Community site.
- From the menu, click Support and then under Software Downloads select Perceptive Downloads.
- Find and download the installer file corresponding to the version to be
installed.Note: New and updated documentation and help topics are regularly published to the documentation website at support.hyland.com.
Install
To install Titan, complete the following steps.
- After downloading the application zip file to a temporary directory on your
computer, create a subdirectory in the webapps directory
of the Tomcat server. You may name the subdirectory with any name. We recommend
using titan, which is used in the examples of this
document.Note: The default location for the webapps directory is [drive:]\Program Files\Apache Software Foundation\[Tomcat Installation]\webapps\.
- Extract the files to the subdirectory you just created.
- Navigate to the Tomcat\conf directory and open the server.xml file in a text editor.
- In the Host section, add the
RewriteValve following the example below.
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> ... insert the following line anywhere in this Host tag ... <Valve className="org.apache.catalina.valves.rewrite.RewriteValve" /> </Host> - Save the server.xml file and close the text editor.
- Navigate to the Tomcat\conf\Catalina\localhost directory, create a rewrite.config configuration file, and then open it in a text editor.
- Add the following two lines, where titan is the name of
the subdirectory you created in step 1.
RewriteCond %{REQUEST_PATH} !-f RewriteRule ^/titan/(.*) /titan/index.htmlNote: If you already have Titan deployed in this Tomcat instance then this file will already have one or more entries. You must re-add both lines for the new subdirectory name. - Save the rewrite.config file and close the text editor.
- Restart Tomcat.
- Navigate to the Titan \webapps\titan directory.
- Open the index.html file in a text editor.
- Update the <base href="/"> tag in line 3 to include
the subdirectory name you used in step 1. You must include the leading and
trailing forward slashes.
<!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <base href="/titan/">
- Save the index.html file and close the text editor.