Remove the Projects Link when using Fisheye Standalone 2.7.X (without Crucible)

Still need help?

The Atlassian Community is here for you.

Ask the community

Summary

Use this KB if you need to remove the Projects Link because of the following bug:

How to do it

warning Warning: If you decide to start using Crucible, these changes need be be reversed.

1. Add this to file <Install>/content/WEB-INF/urlrewrite.xml:

<rule>
    <from>^/cru/browse/(.*)</from>
    <to type="forward">/project/$1</to>
</rule>

(in addition to the existing rule).

2. Change the mapping of the UrlRewriteFilter in web.xml so it looks like:

<filter-mapping>
        <filter-name>UrlRewriteFilter</filter-name>
        <url-pattern>/s/*</url-pattern>
        <url-pattern>/cru/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
</filter-mapping>

(the second url-pattern was added)

3. Restart Fisheye.


Last modified on Jan 21, 2025

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.