Page 1 of 1
Multiple Enable / Disable Projects at the same time
Posted: 15 Feb 2013, 22:03
by speedyrazor
Hi, I have a need to multiple Enable / Disable Projects at the same time, rather than one by one. Is there a way to do this by changing some code please?
Having to go into each project to enable or disable it when you have 30 projects to do is very time consuming.
Anyone with any suggestions would be greatly appreciated.
Kind regards.
Re: Multiple Enable / Disable Projects at the same time
Posted: 15 Feb 2013, 22:30
by atrol
You need 90 clicks to disable 30 projects.
You will need more time to change the code.
Another option for such kind of operations is to change direct in database.
Something like;
Code: Select all
update mantis_project_table set enabled = 0 where name = 'myProject1';
update mantis_project_table set enabled = 0 where name = 'myProject2';
Re: Multiple Enable / Disable Projects at the same time
Posted: 16 Feb 2013, 07:12
by speedyrazor
Hi, I would rather change the code once, so this feature is always available to all users.
Anyone know how I would change the code please?
Kind regards.
Re: Multiple Enable / Disable Projects at the same time
Posted: 18 Feb 2013, 16:38
by speedyrazor
Hi, ideally I want to add a checkbox next to each project on the 'Manage Projects', which I could tick to enable and un-tick to disable.
Anyway to do this please?
Cheers.