Admin + User Roles Setup Problems

Further to my addition to Monique's post below (mepriestly) ,
I have now managed to get as far as setting up the Admin and
Publisher roles and sending a connection key to my client but
Contribute cannot seem to complete the final step of saving these
shared settings to my server.
The result is now an error message saying the Admin settings
are invalid and it wants to remove all user roles and preferences
from the system...problem being it's already taken me a week to get
this far!
Any help/advice would be hugely appreciated.
Thank you,
KaTy

FraggleFeatures wrote:
> Further to my addition to Monique's post below
(mepriestly) , I have now
> managed to get as far as setting up the Admin and
Publisher roles and sending a
> connection key to my client but Contribute cannot seem
to complete the final
> step of saving these shared settings to my server.
>
> The result is now an error message saying the Admin
settings are invalid and
> it wants to remove all user roles and preferences from
the system...problem
> being it's already taken me a week to get this far!
>
> Any help/advice would be hugely appreciated.
>
> Thank you,
>
> KaTy
>
have you moved your website from one computer (webroot
location) to
another computer? Was there a difference in the IP
configuration of the
machine when it got rebooted where contribute is hosted? If
so, then you
need to go to the websiteroot\_mm\*.csi open this file and
ensure that
any
http://<servername>/location/
has proper IP address in the
<servername> in the url where ever in the entire file.
hope this helps.

Similar Messages

  • MXE 3500 v3.3 admin user role

    Hi,
    I am currently work with a MXE 3500 v.3.3. When I loged into the system using GUI, I don't get the Administration role in toolbox. My user is admin. So please help me, how can I give admin user the admin role permission.
    Please see the attached file for details.

    You were probably trying to define multiple domain indexes on the same column using identical indextypes. How many indexes you have on table_colum?

  • User Account Setup Problem

    Hi! I finally have Mtn. Lion installed and running! I ran into the "damaged HD" cannot finish install, cannot go back to SL loop that has been discussed here. I was able to fix that issue by information I found here, and I am so grateful!
    I now have run into what I hope is a simple question.  After setting up my user account, I went to setup the wife and kids. They did not have seperate user accounts prior to the upgrade, they just used mine. Since this was an upgraded OS, I decided to set them up their own accounts. I did that with no problem, the only thing is, I cannot change their login pictures without loading a new image in. The default are not loaded, I can find them in the library and add them one by one, but I was just wondering if there was a way to to load the whole group?
    Thanks in advance!

    Hi Ernie,
    One other point that is relevant is that this problem is occuring on two Macs.
    In answer to your questions:
    1. Yes there are other .Mac accounts
    2. Not sure about this one but I doubt it since the client doesn't usually muck around with the fonts but they do move some Applications to a separate folder.
    3. It is the version distributed with 10.4 and all updates to 10.4.6 have been applied. I will get the client to confirm the Apple Mail version.
    4. No that is something I haven't tried. I will ask the client to try this.
    Thanks for your reply.
    Also I've jsut tried to set the account up on a Mac with Mail version 2.1 (752/752.2) and again it failed with the same error message. This Mac has nothing to do with the affected client, and I've tried this one to eliminate any problems with moved Applications or font problems. On this same machine I set the account up in Entourage and it worked no problem. The mail server is OS X Server with 10.4.
    Damian Halloran.

  • NB & Sun One App Server 8.0 Bundle Admin User/Password & 503 Problem,

    Hi,
    Do you know the the username and password to enter admin console in Netbeans 3.6 & Sun One App Server 8.0 Bundle?
    Also when I executed my first app with the software, I got this message "HTTP Status 503 - This application is not currently available". Can you tell me what is this problem and how to fix it.
    Thanks very much,
    Blessings,
    Lorenzo Jimenez

    Hi,
    Do you see the deployed web application either in the admin console on in the runtime tab explorer of NetBeans, under the
    Sun Java System Application Server 8 --->Applications--->Web Applications
    node?
    503 error is a Service unavailable error:
    "The server is currently unable to handle the HTTP request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. "
    Can you try to reload the page for this web app?
    Ludo

  • Display interactive report rows based on user role.

    Hello,
    Can anyone please help me out with this issue. i have an interactive report and now i want to make this report as conditional based on user role. Like i want to dispaly all the report rows for an Admin user role and for a developer I want the report to display only his/her rows. Can anyone please help me how can I resolve this issue.
    Do I need to have two separate reports for each role or can we make achieve this with only one report.
    thanks,
    Orton

    Here is a possible answer.. Build your Interactive report off of a collection. And when you build the collection you can build an if statement to either build your select with or without the filtering of user_id..
    See this blog entry for how to build a interactive report from a collection: http://www.oracleapplicationexpress.com/tutorials/71-oracle-apex-interactive-report-based-on-plsql-function
    Thank you,
    Tony Miller
    Webster, TX

  • User Role problems in Sun Java Application Server Platform Edition 8

    I am having two problems setting up user roles in Sun Java Application Server Platform Edition 8. At first, I thought that it was a problem with the higher level features that I was using, so I created a very simple example using the simplest authentication I can use, but the problem still occurs. I am using the file realm and configuring the users in the App Server Admin Console. I create 2 users in different roles. One user should have access, the other should not.
    1) The first problem is that both users can access the page
    2) The second problem is that the isUserInRole() method returns false for both users with the role that it should be authenticating against.
    Here is a sample of my code:
    Users Configured in Console:
    username password roles
    user1 ********** admin
    user2 ********** noaccess
    web.xml
         <security-role>
              <role-name>admin</role-name>
         </security-role>
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>My Protected Area</web-resource-name>
                   <url-pattern>/*</url-pattern>
              </web-resource-collection>
              <auth-constraint>
                   <role-name>admin</role-name>
              </auth-constraint>
              <user-data-constraint>
                   <transport-guarantee>NONE</transport-guarantee>
              </user-data-constraint>
         </security-constraint>
         <login-config>
              <auth-method>BASIC</auth-method>
              <realm-name>file</realm-name>
         </login-config>
         <servlet>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <servlet-class>
                   mypackage.TestServlet
              </servlet-class>
              <security-role-ref>
                   <role-name>admin</role-name>
                   <role-link>admin</role-link>
              </security-role-ref>
         </servlet>
         <servlet-mapping>
              <servlet-name>
                   TestServlet
              </servlet-name>
              <url-pattern>
                   /TestServlet
              </url-pattern>
         </servlet-mapping>
    TestServlet.java:
              out.println("admin role: " + request.isUserInRole("admin") + "<BR/>");
    Thanks before hand for any responses.
    - Brian

    Hi Jeanfrancois,
    Your suggestion has lead me to find my problem. There were actually three problems.
    1) First, you suggestion to reorder my xml file did not cause any errors to occur. I got suspicious that my web.xml file was wrong. I looked at some sample web-xml files and found that I was missing the header as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN' 'http://java.sun.com/dtd/web-app_2_3.dtd'>
    2) When I added this information, the deploy feature failed stating the my web.xml file was out of order. I fixed the ordering. It now deployed, but the security still wasn't working.
    3) I then added the sun-web.xml file. This file was missing before hand as I thought it was unnessary. However, this file added the essential mapping from a role to a group. After adding this, it now started to work.
    Thanks so much for you time and effort. You really did help me.
    - Brian Blank

  • Admin tab user role missing!!!!!

    I need help,
    it seem I have error,
    when I play with user role in admin tab.
    when I restart pc server, I have problem to access my BI Publisher.
    I just see
    tab report, schedule.
    admin tab missing .
    and all my report I make missing to.
    How to fix it,
    Oh when I change password in analytics it change to in BI publisher,
    analytics = BI publisher,
    But admin tab missing how to fix it help me urgent!!!!
    Thanks.
    For Your help and Supporting.

    XMLP_ADMIN,XMLP_DEVELOPER,XMLP_SCHEDULER
    CREATE THESE GROUPS IN ADMINISTRATION.AND ADD ADMINISTRATOR IN THIS GROUPS.
    TRY THIS IT WILL WORK

  • Problems with second (admin) user profile

    Hi all,
    I'm having trouble with a certain user profile. I got a new MacMini with Lion (10.7), to which I imported two user profiles from a Time Machine backup of a Snow Leopard system. The first profile, which used to be the admin profile on the old Mac, works just fine. But the second profile, which used to be a "normal" user profile encounters massive problems. First thing I did was to make the second user admin as well, but that did not fix anything. I assume there is a problem with the permissions and "repair permissions" didn't do anything either.
    Here are some examples of the issues:
    First example: I cannot delete or rename folders in Mail, unless I delete or rename them in the respective ~/Library folder. This concerns folders which I imported from the Time Machine backup. There are no issues with new folders.
    Second example: I cannot start SPSS, which runs just fine on the other profile. It starts and then just closes right away without any error message or anything. I found a workaround which is to start the program with a rooted terminal command ("sudo /Applications/..."). There is no problem with Java (which would be common) and there are no license issues. I found an article in some other forum which stated that SPSS reads and writes in its preference folder at startup and closes right away if permissions are denied for that folder.
    Third and most annoying example: I cannot permanently delete or create icons in the dock. I can remove or create icons temporarily, but after restarting the Mac, the new icons are gone and the deleted items are right back where they were.
    Does anybody have any idea on how to fix this?
    In the short run, It'd be very helpful if anyone could tell me how to create dock icons with a Terminal command.
    I thank you in advanced for helping me out. Every little hint is appreciated.
    Sebastian
    PS: I have not tried to setup a new user profile instead of the second profile, yet. With all the programs and preferences that would take at least two days and I need to keep the Mac running. I would only do it as a very last resort.

    Well i went ahead and made that new admin like you said and I set it up and transfered only the files that I thought were important to me, Then i went ahead and fixed or repaired the permissions On the new admin user name and deleted my other admin profile with the key board issue.I fixed the permmissions  with an OSX Lion boot disk instead of lion because I don't have the Mountain lion DVD anymore. Every thing seems ok but was that a smart move or will that come back to haunt me?
    Now what Im worried about now is I didnt keep any of the certificates or anything in that nature, So My final question is What should i do now to hands down lagitimanetly make This the offical ADmin with all keys and things of that nature that make it the main one?
    Thank you so much and I'll watch my jokes from now on... I don't want to hurt anyone's feelings,

  • Newbie Question - application install/setup for admin and non-admin users

    Hi,
    I'm 100% new to the Mac environment and OS X and I'm a bit confused as to the environment and setting up applications and such for users.
    I have a brand new Macbook Pro that I need to set-up.
    USER Setup
    - have a dedicated admin account called "Administrator"
    - have a user account for my son, Joe.
    - have a user account for me, Matt, so I can fool around on the machine to see if I like it enough to get one myself.
    This is the account setup model I'm most accustomed to using under OpenVMS and Windows - an administrator account and separate lower privilege accounts for users.
    I have managed to accomplish these three tasks ok. I also enabled File Vault on my account only.
    APPLICATION Setup
    We want to install the following applications but I'm having problems:
    - Firefox, for use by all three accounts, but with separate bookmark files for each user. This is the browser we are familiar with and want to start with (sorry Safari, maybe as time goes by).
    - Eudora for e-mail for just the two user (mine and Joe's) accounts, with separate user files for each account. It's the program we're familiar with.
    - Microsoft Office for all three accounts.
    - An architectural CAD program (ArchiCAD) for use only in my account.
    - PGP for use only in my account.
    My real issues appear to be with how to install apps the way I need them to be 'visible' to users.
    I started by logging in as Administrator and downloading/installing Firefox.
    It installed ok under the administrator account but I can't find/access Firefox when logged in via my or my son's account and I don't know what to do to give my/Joe's account access to it.
    So,
    1) How do I install an application once and make it available to all accounts (admin & user)?
    2) How do I install an application and make it useable only by a subset of users
    Thanks for any assistance.

    matt212, welcome to Apple Discussions & the Mac community.
    Suggest you buy the book by David Pogue - Mac OS X The Missing Manual Tiger Edition.
    Includes everything you need to know about installing OS X, using OS X & maintaining OS X.
    Look at these links for new users. They should give you an overview regardless of which version of OS X you are using.
    Switch 101
    http://www.apple.com/support/switch101/
    Mac 101
    http://www.apple.com/support/mac101/
    Quick Assist
    http://www.apple.com/support/quickassist/
    A guide for switching to a Mac
    http://lifehacker.com/software/mac/hack-attack-a-guide-for-switching-to a-mac-224674.php
    Welcome to the Switch To A Mac Guides
    http://switchtoamac.com/guides/
     Cheers, Tom

  • Managed System Setup Wizard: which J2EE-Admin-User

    Hello,
    I'm running the managed system setup wizard in the diagnostic.
    In the setup of the parameters, I have to enter the J2EE-Admin-User. But which one?
    I tried:
    SMD_AGT_ADM (Dialog user with admin roles on both stacks)
    SMD_AGT_ADM (Communications user with admin roles on both stacks)
    The user was created by me before the setup. But regardless of the user settings, I get the following error:
    A logon failure occured on frces4139/SM7/00 (192.168.1.139).
    System Setup aborted, to prevent locking the User Account.
    Please check error details, specify a valid User/Password if necessary, and start Setup again
    Any ideas? Which user or user settings have to be maintained?
    Thanks,
    Jan

    Hello,
    I think the user you need to enter here is the j2ee_admin user or another user with SAP_J2EE_ADMIN role.
    Regards,
    Benjamin Rouger

  • No portal roles are assigned for this user.If this problem persists, contac

    I am trying to access portal first time using j2ee_admin user. It is saying "No portal roles are assigned for this user.If this problem persists, contact your system administrator."
    iam using abap+java enginee how config in abap enginne ,iwant which role to assign  j2ee_admin  user
    i already asiigned sap_j2ee_admin,SAP_BC_JSF_COMMUNICATION,SAP_BC_JSF_COMMUNICATION_RO   but it show same problem
    please help me..
    Edited by: Mugala Balu on Aug 7, 2010 5:53 PM
    Edited by: Mugala Balu on Aug 8, 2010 7:48 AM

    Balu,
    Well this issue has been discussed many a times in forums. You would have to point your data source to ABAP system.
    Check this thread in [here|J2EE Failed to start  , after changing UME datasource;.
    Good Luck!
    Sandeep Tudumu

  • Safari problem & how do I do admin user account  fix

    Using Safari 1.3.2, QT 6.5.2, OSX.3.9 on Mac G4. I have not chosen to upgrade to QT 7 or Tiger because of other apps on this machine.
    Safari crashes when I try to empty cache. Problem started after upgrade to above and installing flip4mac. - not sure which caused the problem.
    I've already thrown out the suggested things from Safari prefs, plist, cache files from prefs, etc. I also trashed all of the fllip4mac pieces. Didn't fix the problem.
    The only solution has been to log in as a different user. So, I guess I have to fix or delete and re-do the problem user account, which is my main admin. user account. I see that the dialogue box says I can save the user folder items into a "deleted user" folder.
    Before taking this step, I want to know what happens then? Do I just drag the items back into the new admin. account? I would like some info before I take this step - don't want any regrets. If I can and do drag stuff back, any chance it would bring the problem with it? Will I get all my setting back? How about a step x step on setting up as new admin.?
    Mac G4 450 SP   Mac OS X (10.3.9)  
    Mac G4 450 SP   Mac OS X (10.3.8)  

    Hi Chris
    I can't help with a step by step - but did you simply trash the f4m files or run the uninstaller.pkg ??
    Below is the list of commands that the uninstaller uses to remove/reset everything that was changed when f4m was installed. Possibly you didn't locate all these files?.
    #!/bin/sh
    # remove historical files
    userGuide="Flip4Mac WMV Player User Guide.pdf"
    /bin/rm ~/Desktop/"$userGuide"
    prefPaneNameOnDesktop="Flip4Mac WMV Registration"
    /bin/rm ~/Desktop/"$prefPaneNameOnDesktop"
    preferencesPath="/Library/Preferences"
    internetPluginsPath="/Library/Internet Plug-Ins"
    windozeMediaPluginName="Windows Media Plugin"
    disabledFolderName="Disabled Plug-Ins"
    appFolderPath="/Applications/Flip4Mac"
    /bin/rm -rf /Applications/WMV\ Player.app/
    # New application files and registration link
    /bin/rm -rf "$appFolderPath"/WMV\ Player.app/
    /bin/rm "$appFolderPath"/Users\ Guide.rtf
    /bin/rm "$appFolderPath"/Flip4Mac\ WMV\ User\ Guide.pdf
    /bin/rm "$appFolderPath"/WMV\ Upgrade
    # Remove QT components
    /bin/rm -rf /Library/QuickTime/Flip4Mac\ WMV\ Import.component/
    /bin/rm -rf /Library/QuickTime/Flip4Mac\ WMV\ Export.component/
    # Remove web browser plug-ins
    /bin/rm -rf "$internetPluginsPath"/Flip4Mac\ WMV\ Plugin.plugin/
    /bin/rm -rf "$internetPluginsPath"/Flip4Mac\ WMV\ Plugin.webplugin/
    /bin/rm -rf "$internetPluginsPath/$disabledFolderName"/Flip4Mac\ WMV\ Plugin.plugin/
    /bin/rm -rf "$internetPluginsPath/$disabledFolderName"/Flip4Mac\ WMV\ Plugin.webplugin/
    # move windows media player back into place
    if [ -d "$internetPluginsPath/$disabledFolderName/$windozeMediaPluginName" ] ; then
    if [ ! -d "$internetPluginsPath/$windozeMediaPluginName" ] ; then
    /bin/mv -f "$internetPluginsPath/$disabledFolderName/$windozeMediaPluginName" "$internetPluginsPath/"
    fi
    fi
    # remove the disabled plug-ins folder if it is empty
    /bin/rm "$internetPluginsPath/$disabledFolderName/.DS_Store"
    /bin/rmdir "$internetPluginsPath/$disabledFolderName"
    # old prefpane
    /bin/rm -rf /Library/PreferencePanes/WmvPlayer.prefPane/
    # new prefpane
    /bin/rm -rf /Library/PreferencePanes/Flip4Mac\ WMV.prefPane/
    # Package receipts
    /bin/rm -rf /Library/Receipts/Flip4Mac\ Web\ Plugins.pkg/
    /bin/rm -rf /Library/Receipts/Flip4Mac\ QuickTime\ Components.pkg/
    /bin/rm -rf /Library/Receipts/Flip4Mac\ WMV\ Player\ Installer.pkg/
    # Change mms URLs back to windows media player
    /usr/bin/defaults write com.apple.LaunchServices LSHandlers -array-add '<dict><key>LSHandlerRoleAll</key><string>com.microsoft.mediaplayer</string><ke y>LSHandlerURLScheme</key><string>mms</string></dict>'
    # single package installer
    /bin/rm -rf /Library/Receipts/Flip4Mac\ Uninstaller.pkg/
    # Final clean up: remove the uninstaller and app folder
    /bin/rm -rf "$appFolderPath"/Flip4Mac\ Uninstaller.pkg/
    /bin/rm -rf "$appFolderPath"/Flip4Mac\ WMV\ Uninstaller.pkg/
    /bin/rm "$appFolderPath/.DS_Store"
    /bin/rmdir "$appFolderPath"
    exit 0;

  • How to create Users/Roles for ldap in weblogic without using admin console

    Is it possible to create Users/Roles for ldap in weblogic without using admin console? if possible what are the files i need to modify in DefaultDomain?
    or is there any ant script for creating USers/Roles?
    Regards,
    Raghu.
    Edited by: user9942600 on Jul 2, 2009 1:00 AM
    Edited by: user9942600 on Jul 2, 2009 1:58 AM

    Hi..
    You can use wlst or jmx to perform all security config etc.. same as if it were perfomred from the admin console..
    .e.g. wlst create user
    ..after connecting to admin server
    serverConfig()
    cd("/SecurityConfiguration/your_domain_name/Realms/myrealm/AuthenticationProviders/DefaultAuthenticator")
    cmo.createUser("userName","Password","UserDesc")
    ..for adding/configuring a role
    cd("/SecurityConfiguration/your_domain_name/Realms/myrealm/RoleMappers/XACMLRoleMapper")
    cmo.createRole('','roleName', 'userName')
    ...see the mbean docs for all the different attributes, operations etc..
    ..Mark.

  • User Role Management Setup

    Hi All,
    I'm currently performing a setup in User Role Managment around roles for a department. We've identified 11 roles we need to create and the responsibilities that need to be assigned to the roles.
    We've created a Role Category so all our setups can be easily identified and reported on.
    Then we've created 11 roles in Role & Role Inheritence, then assigned the responsibilities. And from there, assigned the role(s) to the users.
    Is this the general way of creating roles etc? I haven't been able to find a BR100 that i can compare our setup to. I don't want to start progressing the setup into our UAT environment if my setup is fundamentally flawed.
    Cheers,
    Russell H.
    Origin Energy.

    Hi,
    Please refer to "Oracle Applications System Administrator's Guide - Security" manual for the steps and the guidelines you need to follow.
    Oracle Applications Documentation
    http://www.oracle.com/technology/documentation/applications.html
    Regards,
    Hussein

  • Photoshop cs6 crashes with "appcrash - module ig75icd64.dll; no problem for a local admin user however. i've tried giving specified user full access to photoshop.exe and set it to Win XP compatibility. how do i fix this without giving user local admin acc

    photoshop cs6 crashes with "appcrash - module ig75icd64.dll; no problem for a local admin user however. i've tried giving specified user full access to photoshop.exe and set it to Win XP compatibility. how do i fix this without giving user local admin access?

    Danny,
    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not.
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.

Maybe you are looking for