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

HomeHomeOur CommunityOur CommunityGeneral Discuss...General Discuss...Old users stuck in View modeOld users stuck in View mode
Previous
 
Next
New Post
2/24/2008 8:50 AM
 

Hi Rodney,

This setting is stored in the DNN Personalization system. It is the Profile table in the DB.

Part of what is happening in your case is controlled by settings for the site.
If you go to Admin > Site Settings > Advanced Settings > Usability you will see some settings for how the control panel is displayed and who (what roles) it is displayed to.
Some history here:
http://www.snapsis.com/DotNetNuke/Support/tabid/560/forumid/12/postid/5485/view/topic/Hide-Mode--View---Edit.aspx

What happened in your case is that these were changed over a few versions because people didn't like seeing that Mode bar pop up all of the sudden on pages that had a module with edit permissions.
Anyway, you can reset your old users to edit mode in the Profile table, or you can cahnage the site setting to allow that bar to be seen by module editors.

Let me know if that isn't correct.


DotNetNuke Modules from Snapsis.com
 
New Post
2/24/2008 4:41 PM
 

John Mitchell wrote

Hi Rodney,

This setting is stored in the DNN Personalization system. It is the Profile table in the DB.

Part of what is happening in your case is controlled by settings for the site.
If you go to Admin > Site Settings > Advanced Settings > Usability you will see some settings for how the control panel is displayed and who (what roles) it is displayed to.
Some history here:
http://www.snapsis.com/DotNetNuke/Support/tabid/560/forumid/12/postid/5485/view/topic/Hide-Mode--View---Edit.aspx

What happened in your case is that these were changed over a few versions because people didn't like seeing that Mode bar pop up all of the sudden on pages that had a module with edit permissions.
Anyway, you can reset your old users to edit mode in the Profile table, or you can cahnage the site setting to allow that bar to be seen by module editors.

Let me know if that isn't correct.

Thanks for the lead - I'll check out the profile table now and see if I can clear this setting for all users (only Admins can ever see the control panel on my set up). I'll report back with the results...


Entrepreneur

PokerDIY Tournament Manager - PokerDIY Tournament Manager<
PokerDIY Game Finder - Mobile Apps powered by DNN
PokerDIY - Connecting Poker Players

 
New Post
2/24/2008 5:20 PM
 

Yes, that was it! I'm sure a lot of other people have this problem (although it wont be noticable until someone reports it, and no one ever does!) - it is likely that if you have an older DNN 4.4.x version (when the control panel appeared for all users who had edit rights on a module (e.g. for creating items/groups etc) and then upgraded to 4.6.x and changed the new system setting to "Page Editors Only" then you may have an issue. Any users who were left in View mode would be stuck in it.

If you suspect you may have this problem (I've had several users report this on Smart-Thinker thinking it was a module-specific problem), you can adapt and run the query below to fix it (this is specific to my DNN install):

Firstly, I did a query on that table to find the rogue records:

SELECT *
FROM Profile
--Find users where the value of "Usability:UserMode6" is set to View
WHERE ProfileData like '%<item key="Usability:UserMode6" type="System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"><string>View</string></item>%'
--exclude Admins
AND UserID NOT IN (1,2)

I am not sure if "Usability:UserMode6" is dynamically generated per DNN install or if it is always called this. The Admins (Page Editiors) can still choose their view, so I excluded them. My query returned 33 users which means 33 users could not post new content on any module that required Edit rights.

I examined the ProfileData and there was nothing very important that was being stored (Text Editor view etc.) so I decided to take the easy approach and wipe these records:

DELETE FROM Profile
--Find users where the value of "Usability:UserMode6" is set to View
WHERE ProfileData like '%<item key="Usability:UserMode6" type="System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"><string>View</string></item>%'
--exclude Admins
AND UserID NOT IN (1,2)

And that fixed the problems - my users can now post content again...

In a future version of DNN, tt may be worth running a (better) script when the site setting is changed to prevent this issue (clear out the old settings in the Profile table).

 


Entrepreneur

PokerDIY Tournament Manager - PokerDIY Tournament Manager<
PokerDIY Game Finder - Mobile Apps powered by DNN
PokerDIY - Connecting Poker Players

 
New Post
2/24/2008 8:11 PM
 

Thanks for posting the followup Rodney. I didn't have any users with the problem, but could have had, so I went for a wander through my profiles and resest a few of them.

Rob

 
Previous
 
Next
HomeHomeOur CommunityOur CommunityGeneral Discuss...General Discuss...Old users stuck in View modeOld users stuck in View mode


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