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
How do I turn off tagging
Moderators: Developer, Contributor
Re: How do I turn off tagging
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;
Migrate your MantisBT to the MantisHub Cloud
Re: How do I turn off tagging
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
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
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
hmm i don't want ton make change to the code so i have to manage with that unused parameter
Thanks for tour reponse
Regards
An happy user
Thanks for tour reponse
Regards
An happy user