Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Cannot subscribe or unsubscribe roles on 07.03.01Cannot subscribe or unsubscribe roles on 07.03.01
Previous
 
Next
New Post
3/18/2015 5:07 PM
 
@ Sebastian

Re read through the entire thread, at your post above with link to Turbo Scripts realized that the script I had run for the exception was not a Turbo Script [Fix DNN Roles - Version 0.9.5 (2014-10-06)].

Have downloaded and run the Turbo Scripts. Problem fixed. Thanx

 

 
New Post
3/19/2015 4:11 AM
 
Hi Merv, I am glad you were able to solve it.
I m sorry for any confusion with the scripts.
Have fun using DNN!

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
9/22/2016 12:44 PM
 
In case folks are still struggling with "Managed Service" not showing publicly available security roles (this bug is still in DNN8 releases):

Sebastian Leupold gave me a SQL to fix the problem of "security roles" not showing up under "Managed Services"

Backup the app/database first... then go to Host > SQL and enter...


IF EXISTS (SELECT * FROM sys.Procedures WHERE object_id = OBJECT_ID(N'{databaseOwner}[{objectQualifier}GetServices]'))
DROP PROCEDURE {databaseOwner}[{objectQualifier}GetServices]
GO

CREATE PROCEDURE {databaseOwner}[{objectQualifier}GetServices]
@PortalID Int, -- pass Null for roles of all sites
@UserID Int -- not null!
AS
BEGIN
SELECT
R.*,
UR.IsOwner,
UR.UserRoleID,
UR.UserID,
UR.ExpiryDate,
UR.IsTrialUsed,
UR.EffectiveDate,
U.DisplayName,
U.Email
FROM {databaseOwner}[{objectQualifier}Users] U
INNER JOIN {databaseOwner}[{objectQualifier}UserRoles] UR ON UR.UserID = U.UserID AND (UR.UserID = @UserID OR UR.UserID IS Null)
RIGHT JOIN {databaseOwner}[{objectQualifier}Roles] R ON UR.RoleID = R.RoleID
WHERE (R.PortalId = @PortalID OR IsNull(@PortalID, -1) = -1)
AND R.IsPublic = 1
AND R.RoleId >= 0 -- DNN-4288: hide system role atm to prevent duplicates. Might be removed, after API has been adopted
ORDER BY R.RoleName
OPTION (OPTIMIZE FOR (@PortalID UNKNOWN));
END -- PROCEDURE
GO

You should see in the green bar at the top of the page that the script ran successfully... so then log out, and log back in as a register user and navigate to Manage Services and see if you can see the security roles.

 Atlantic Webfitters
 
New Post
9/22/2016 2:26 PM
 
note: the fix is taken from my DNN Turbo scripts.

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Cannot subscribe or unsubscribe roles on 07.03.01Cannot subscribe or unsubscribe roles on 07.03.01


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out