The Best Practical logo only appears correctly on Home page of RT
All other pages, logo is missing (bad URL)
Exemple:
Tickets Search main page: HTML refers to '/Search/NoAuth/images//bplogo.gif for
the logo and it’s not found.
The logo is only found with /NoAuth/images//bplogo.gif
In HTML code : ![]()
Should be
in sub pages ?
Any clues ?
Nicolas Varney
nvarney@edt.fr wrote:
The Best Practical logo only appears correctly on Home page of RT
All other pages, logo is missing (bad URL)
Exemple:
Tickets Search main page: HTML refers to '/Search/NoAuth/images//bplogo.gif for
the logo and it’s not found.
The logo is only found with /NoAuth/images//bplogo.gif
In HTML code : ![]()
Should be
in sub pages ?
What do you have in your RT site config web paths?
Options:
Set($WebPath , “”);
Set($WebBaseURL , “http://RT::WebBaseURL.not.configured:80”);
Set($WebURL , $WebBaseURL . $WebPath . "/");
Set($WebImagesURL , $WebPath . “/NoAuth/images/”);
Set($LogoURL , $WebImagesURL . “rt.jpg”);
That was effectively the $WebImagesURL variable.
I do some mistake when merging configuration file.
All is fixed.
Thanks.
Nicolas Varney