Access denied on creating new tags

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
MichaelL
Posts: 1
Joined: 18 Mar 2019, 13:53

Access denied on creating new tags

Post by MichaelL »

Greetings,

I am currently trying to activate tags in my mantis bug tracker (2.19.0).
I am able to create new tags, but once I try to access them I am presented with the message "Access denied" and a proceed button. Once I press the proceed button it goes to the page for the chosen project.
Worth to mention is my account has administration rights.

Furthermore, menu for tags are not showing up under Manage>Workflow Thresholds (as a mantis blog post did show).
So I can mange this from the WebGUI.

How can I activate tags for my project?
Have I missed something in my configuration / not activated something important?

Here is the snippet of different "rights" for the tag section of config_default_incs.php :

Code: Select all

/**
 * String that will separate tags as entered for input
 * @global integer $g_tag_separator
 */
$g_tag_separator = ',';

/**
 * Access level required to view tags attached to a bug
 * @global integer $g_tag_view_threshold
 */
$g_tag_view_threshold = VIEWER;

/**
 * Access level required to attach tags to a bug
 * @global integer $g_tag_attach_threshold
 */
$g_tag_attach_threshold = REPORTER;

/**
 * Access level required to detach tags from a bug
 * @global integer $g_tag_detach_threshold
 */
$g_tag_detach_threshold = DEVELOPER;

/**
 * Access level required to detach tags attached by the same user
 * @global integer $g_tag_detach_own_threshold
 */
$g_tag_detach_own_threshold = REPORTER;

/**
 * Access level required to create new tags
 * @global integer $g_tag_create_threshold
 */
$g_tag_create_threshold = REPORTER;

/**
 * Access level required to edit tag names and descriptions
 * @global integer $g_tag_edit_threshold
 */
$g_tag_edit_threshold = DEVELOPER;

/**
 * Access level required to edit descriptions by the creating user
 * @global integer $g_tag_edit_own_threshold
 */
$g_tag_edit_own_threshold = REPORTER;
Best regards,
Michael Lindell
Post Reply