Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • TaoistTotty 246 posts 314 karma points
    Nov 05, 2010 @ 13:50
    TaoistTotty
    0

    Read Only User

    Is there a way or creating a read only user profile?

    I have tried the browse nodes, but this does not allow the user to look at the information about each node, which I was I need.

    Thanking you in advance.

    TT

  • Happyfanaticsalsero 59 posts 81 karma points
    Nov 05, 2010 @ 14:08
    Happyfanaticsalsero
    0

    Perhaps this is what you're looking for...

    http://umbraco.org/help-and-support/video-tutorials/umbraco-fundamentals/running-multiple-sites/users-and-permissions

    Mind, you'll need an Umbraco TV registration (19€) to watch Umbraco TV tutorials... but in my opinion this is money well spent.  (No I don't get affiliate fees if you sign up.;) )

  • TaoistTotty 246 posts 314 karma points
    Nov 05, 2010 @ 14:25
    TaoistTotty
    0

    Happyfanaticsalsero thanks for the suggestion, and I have had a look, but it is not quite what I am looking for (although I am still trying all the options).

    I have a customer who needs someone to be able to see what is happening with every node without the ability to change what is on each node or create new nodes.

    Regards

    TT

  • Happyfanaticsalsero 59 posts 81 karma points
    Nov 05, 2010 @ 14:33
    Happyfanaticsalsero
    0

    Maybe this might help a bit then:

    http://our.umbraco.org/projects/backoffice-extensions/attackmonkey-tab-hider

    I'm still browsing the projects as I suspect there might be another package that can help you.

    /HFS

  • Happyfanaticsalsero 59 posts 81 karma points
    Nov 05, 2010 @ 14:52
    Happyfanaticsalsero
    0

    I can see someone started a project which seems to be related to your requirements... maybe you should get in touch:

    http://our.umbraco.org/projects/backoffice-extensions/protected-properties

  • TaoistTotty 246 posts 314 karma points
    Nov 05, 2010 @ 14:56
    TaoistTotty
    0

    Happyfanaticsalsero Thanks once again, but this will just hide the tabs.

    I need the User to be able to see the whole site, but not to be able to change (or at least save and changes) anything.

    Regards

    TT

  • Nick 19 posts 39 karma points
    Nov 15, 2010 @ 05:01
    Nick
    0

    I want to do the same  thing...any solution?

  • TaoistTotty 246 posts 314 karma points
    Nov 15, 2010 @ 10:37
    TaoistTotty
    0

    Nick nothing as yet.

    I am still looking into this and trying different things.

    Regards

    TT

  • Phil Dye 149 posts 325 karma points
    Apr 13, 2012 @ 12:59
    Phil Dye
    0

    Resurrecting a very old thread, but I'm stuck with the same problem, and can't find a resolution. Anyone got any ideas?

    Phil

  • Lavonne Luquis 3 posts 23 karma points
    Aug 13, 2012 @ 19:51
    Lavonne Luquis
    0

    Same issue here. I have experimented with various user permissions, but the only way to allow people within our organization to preview content before it is published is to grant them "Update" rights, which isn't ideal.

    A "read only" permission would be a terrific addition to a future upgrade.

  • Robin Winslow Morris 20 posts 82 karma points
    Jan 15, 2013 @ 11:34
    Robin Winslow Morris
    0

    +1 I need this too

  • Lavonne Luquis 3 posts 23 karma points
    Mar 01, 2013 @ 15:36
    Lavonne Luquis
    0

    This issue continues to be a major painpoint in my organization.

    In a nutshell, we need a large number of staff to be able to preview saved-but-unpublished content without the ability to edit or save.

    Anyone know if it's addressed in the upcoming April 2013 release?

  • Murray Roke 503 posts 966 karma points c-trib
    Apr 10, 2013 @ 00:34
    Murray Roke
    0

    You can roll your own, something like this:

    class ApplicationInitializer : ApplicationBase
    {
        public ApplicationInitializer ()
        {
            Document.BeforeSave += PreventUnauthorisedChanges;
            Document.BeforePublish += PreventUnauthorisedChanges;
        }
    
        private void PreventUnauthorisedChanges(Document sender, CancelEventArgs e)
        {
            if (User.GetCurrent().UserType.Alias == "ReadOnly")
            {
                e.Cancel = true;
                //Note: the following does not show when cancelling publish events, instead the standard message shows
                ((BasePage)HttpContext.Current.Handler)
                    .speechBubble(BasePage.speechBubbleIcon.error, "Permission Denied",
                                  "You do not have permission to edit this item.");
    
            }
        }
    }
    
  • Lavonne Luquis 3 posts 23 karma points
    Apr 11, 2013 @ 21:24
    Lavonne Luquis
    0

    Murray,

    Thanks so much for the sample. We're going to try it out.

     

  • Murray Roke 503 posts 966 karma points c-trib
    Apr 23, 2013 @ 11:27
    Murray Roke
    0

    oh, you may need to add unpublish as well.

  • James Drever 118 posts 149 karma points
    May 21, 2013 @ 15:19
    James Drever
    0

    I need this to - and I've set up a feature request if anybody else wants to vote it up.  http://issues.umbraco.org/issue/U4-2253

Please Sign in or register to post replies

Write your reply to:

Draft