How to make correction after installation

During installation, I must have specified something wrong, because the
reference to the RT image on the upper left of the page is:

http://RT::samsabsd01.samsa.com:80/rt//NoAuth/images//rt.jpg” alt=“RT”

I need to know where to correct this - are there other places where I
will need to correct?

Thanks!

You misconfigured $WebBaseURL in etc/config.pm .

A.

Michael D. Stackhouse wrote:

|+ “http://RT::samsabsd01.samsa.com:80/rt//NoAuth/images//rt.jpg” alt=“RT”
|+
|+ I need to know where to correct this - are there other places where I
|+ will need to correct?

You should look over your config.pm for the following:

If you’re putting the web ui somewhere other than at the root of

your server

$WebPath requires a leading / but no trailing /

$WebPath = “”;

This is the Scheme, server and port for constructing urls to webrt

$WebBaseURL doesn’t need a trailing /

$

$WebBaseURL = “https://noc.nixc.net”;

$WebURL = $WebBaseURL . $WebPath . “/”;

Looks like you added the trailing ‘/’ where you should not have, and
looks like you left the RT: portion in.

Thanks!

Alesh Mustar wrote: