Contribute 3 Permission Sections

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Contribute 3 Permission Sections

    I have my page setup so that the header and nav are include files and cant be
    edited.
    My maint content is not an include so that it can be edited, but the problem i
    am having with this is that people can delete the table that holds the conent.
    I do not wish for them to be able to delete the table, only edit the text and
    area with in the table. Is there a way that I can make it so people can only
    change the content of the table and not be able to delete the table itself?

    DanielKerr Guest

  2. Similar Questions and Discussions

    1. #39463 [NEW]: php.ini sections are ignored
      From: RQuadling at GMail dot com Operating system: Windows XP SP2 PHP version: 5CVS-2006-11-10 (snap) PHP Bug Type: ...
    2. Network permissions vs. Contribute permission groups
      Our web files are stored on a Netware server. I want a particular group of users to be able to edit one subdirectory in the web-site, but not the...
    3. Grab ID or DIV sections From ASP
      Hi, Is it possible to grab some sections or tags using ID on a HTML page ? I m working on a adserver project that allows to track users on...
    4. permission error on unlink, but who has permission if not PHP?
      I wrote some code that let me upload a file to my server. Then I wrote some code to let me delete the file. But when I try to delete, I get this...
    5. 2 <?php sections in one doc?
      Hi all, This is a newbie question but I have been struggling with this for ages. I have a document with 2 separate <?php sections of code. I...
  3. #2

    Default Re: Contribute 3 Permission Sections

    Create editable regions in your pages - these regions will be entirely within
    your table, so the table itself (and anything else that is outside of the
    editable regions) cannot be touched by folks using Contribute.

    You do not have to use DreamWeaver to do this, though it helps. This page
    gives you some idea what the code should look like:
    [url]http://livedocs.macromedia.com/dreamweaver/mx2004/using/wwhelp/wwhimpl/common/ht[/url]
    ml/wwhelp.htm?context=Using_Dreamweaver&file=12_temp9 .htm
    Or, as someone else suggested elsewhere in these forums, install a trial of
    DreamWeaver, create a template with editable regions just to see what the code
    looks like, then use that as a pattern for the rest of your pages.

    christina.heikkila Guest

  4. #3

    Default Re: Contribute 3 Permission Sections

    Ok makes sense.
    Does this only work with .htm or .html extensions?
    Im trying to do it with a .asp and once I type in the <!--
    InstanceBeginEditable --> everything after that turns grey and I cant make any
    changes, it wont let me type in the <!-- InstanceEndEditable -->.
    Any thoughts about what im doing wrong?

    DanielKerr Guest

  5. #4

    Default Re: Contribute 3 Permission Sections

    Its not what you are doing wrong it is the order you are entering the code.

    Work backwards.
    LDudd Guest

  6. #5

    Default Re: Contribute 3 Permission Sections

    Alright Ill try giving that a shot, thanks for all the help guys.
    DanielKerr Guest

  7. #6

    Default Re: Contribute 3 Permission Sections

    Okay this is embarassing.
    He was able to delete my tables, and thats not something I can have. I really
    have to get this to work so that my table set up is used instead of his div's.
    Please help me figure this out :D

    [url]http://www.freewebs.com/kerrupt/contribute.jpg[/url]

    DanielKerr Guest

  8. #7

    Default Re: Contribute 3 Permission Sections

    I think I see the problem,

    You are missing out some other tags (see code).

    <!--InstanceBegin-->
    and
    <!--InstanceEnd-->

    Will lock the rest of the page (make sure they are INSIDE the HTML opening and
    closing tags.

    <html><!--InstanceBegin-->
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body>
    <!--InstanceBeginEditable-->
    <!--InstanceEndEditable-->
    </body>
    <!--InstanceEnd--></html>

    LDudd Guest

  9. #8

    Default Re: Contribute 3 Permission Sections

    soz missed off that you will probably need to consider an editable region around the title tag.
    LDudd Guest

  10. #9

    Default Re: Contribute 3 Permission Sections

    LDudd you are my hero!!!
    Thank you all for your help, I have really appreciated it. I hope now my tables will be used for the new intranet instead of my mentors Divs.
    DanielKerr Guest

  11. #10

    Default Re: Contribute 3 Permission Sections

    Ok my editable regions work perfectly.

    Is there a way to keep my editable regions with out it disabling text and font
    edits? When I got to edit a page through contribute it only allows me to change
    the style but not the font size or weight.

    DanielKerr Guest

  12. #11

    Default Re: Contribute 3 Permission Sections

    There is an option in the Admistratative options that specifies whether
    or not you can use markups like font and font-size. If check the box
    you will be able to apply those tags. However, I recommend that
    instead you develop CSS styles to apply instead of using <font> tags.

    Paul Selden Guest

  13. #12

    Default Re: Contribute 3 Permission Sections

    any suggestions would be wonderful, thanks :D
    DanielKerr Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139