Someone removed the permission scheme from a project: In project settings, it says "None". No one can see the project or its issues. The usual process to associate a permission scheme does not work because when I click on the "None" link of the permission scheme, Jira is not providing the option of editing permissions or using a different scheme.
As a system administrator, how do I assign a permission scheme to a project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kevin Paulus ,
probably there's some corrupted at database level.
Please try the following workarounds https://confluence.atlassian.com/jirakb/blank-page-displayed-when-loading-permission-scheme-configuration-in-jira-server-297670208.html
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have none during creation of the project, it means that you have deleted probably Default permission scheme and you need to recreate it in db. Here is how you can achieve it.
Stop instance and do a backup of DB first.
1. Clone permission scheme two times to not affect jira permission scheme id counter.
2. Modify value of 1st cloned scheme to 0 in db table: permissionscheme
3. Modify all permissions assigned to previous scheme :
select * from schemepermissions
where scheme = 0
--update schemepermissions set scheme = 0
where scheme = 4020500 // id of first cloned permissions scheme
4. Restart instance
Now when you create a business project it should create it with default permission scheme. I assume similar will be for software scheme.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.