Page 1 of 1

How do I turn off tagging

Posted: 18 Apr 2008, 12:57
by rchu22
Can anyone tell me how I turn off tags (i.e the tags and attach tags feature in 1.1.1). I'm trialing an upgrade and whilst I'm sure it's very useful to some projects it's not something we'll use and I'll just get dozens of queries on it if not random tags produced because the users will inevitably want to have a play. Tried looking through the forums etc as well as the wiki - still no wiser

Running 1.1.1 under WAMP5 i.e.

Apache 2.2.4
PHP 5.2.3
MySQL 5.0.41

Re: How do I turn off tagging

Posted: 22 Apr 2008, 06:18
by vboctor
Try adding the following settings to your config_inc.php:

Code: Select all

	# Access level required to view tags attached to a bug
	$g_tag_view_threshold = NOBODY;

	# Access level required to attach tags to a bug
	$g_tag_attach_threshold = NOBODY;

	# Access level required to detach tags from a bug
	$g_tag_detach_threshold = NOBODY;

	# Access level required to detach tags attached by the same user
	$g_tag_detach_own_threshold = NOBODY;

	# Access level required to create new tags
	$g_tag_create_threshold = NOBODY;

	# Access level required to edit tag names and descriptions
	$g_tag_edit_threshold = NOBODY;

	# Access level required to edit descriptions by the creating user
	$g_tag_edit_own_threshold = NOBODY;

Re: How do I turn off tagging

Posted: 22 Apr 2008, 08:27
by rchu22
Many thanks.

Re: How do I turn off tagging

Posted: 17 Jul 2008, 08:20
by Dom75
Hello,
i added those settings but the tag parameter line is still displayed. The only change is that when a user try to add a tag it's displaying a failure message. I don't want the line to be displayed, is there a way?

Thanks

Regards

Dominique

Re: How do I turn off tagging

Posted: 17 Jul 2008, 13:38
by vzw614
You would need to edit the actual php file that generates the page you want to remove that field from. Just be aware that if you make changes to the php code at that level you will need to re-do the change anytime you upgrade to a new version of Mantis.

Re: How do I turn off tagging

Posted: 17 Jul 2008, 14:00
by Dom75
hmm i don't want ton make change to the code so i have to manage with that unused parameter :wink:

Thanks for tour reponse

Regards

An happy user