How to apply security to access procurement dashboard in RPD (BI Security)

Hi All,
How can I apply Security to access in RPD for Procurement dashboards only.
Regards,
Kumar
Edited by: user597882 on Sep 13, 2009 2:20 AM

Hi,
If you want to apply security to a dashboard (object level security so that some people can see the dashboard and other can't), then you don't do this in the RPD but through the administration screens after logging into OBIEE. Here you can defined which webgroups can see a dashboard.
Regards,
Matt

Similar Messages

  • How to Apply Security or Remove in Batch using Acrobat X

    I’m using Acrobat X Pro. I’ve used Acrobat Pro 6-9. I need to remove security in batch and apply security to about 100 PDFs. I’m totally lost in Acrobat X. Where are all of the batch sequence commands that were in Acrobat 9? Can anyone point me to an article or tutorial on batch sequences and the new “Action Wizard”.
    Thanks.

    ---UPDATE:
    Found my answer! http://answers.acrobatusers.com/ViewQuestion.aspx?questionid=16649
    Basically, you have to change Acrobat's preferences (edit --> Preferences --> Action Wizard) to prompt for a password by default. That way, it can actually access the PDFs you're trying to work with.
    Ye olde message:
    So, I have the same goal (mass decrypt some PDFs), but a different problem.
    If I have a step saved in the Action Wizard to "encrypt" the PDFs, with the security method set to "none." I have a bunch of PDFs with encryption on, but no password saved.
    However, when I run the process, it doesn't actually remove the encryption.

  • How to apply security trimming control on Site Action (Gear) in SharePoint 2013?

    I want to apply security trimming control on Site Action (Gear) & change the position of the welcome control, but I am not able to find Site Action delegate control and welcome control in seattle.html or seattle.master page.
    Can you please let me know how to find Site Action & Welcome control?
    Thanks
    G Goyal

    If you would like to implement security trimming on site action through custom code then following could help you,
    In your visual studio project create a class which implements System.Web.UI.WebControls.WebControl. In the
    CreateChildControls Method you could get the FeatureMenuTemplate control which is SharePoint’s
    WelcomeMenuTemplate.
    After creating control, you could add it as an menu item into your site action menu using a
    customaction xml.  
    You could get the child controls from this and can remove them as required.
    Note: using this approach, if you have User profile service running then it will not remove the “About Me” link. But if you have forms authentication enabled then you could change your logic to remove this link.
    Hope I have contributed to your issue.

  • How to apply security to pdf document

    Hi,
               we want to implement a plug-in in which we should apply new security settings to the pdf.
               To get security settings from user we are using  AVCryptDoStdSecurity function. from that we are able to get security settings. but next we want to set those security to the pdf.           For that we tried PDDocSetNewSecurityData function, but it is not setting, application crashes. what is the problem here, and how to set SecurityData to pdf.
    thank you,

    PDDocSetNewSecurityData should work.
    Can you post the part of your code how  you are applying new security settings?

  • How to apply Security Patch

    How do I apply the "DOS Attack" security patch for WLS 6.1 on Win2K
    Please help
    Thanks

    Balram,
    Put the jar file in the front of your classpath to apply the patch.
    Regards,
    Michael
    Stephane Kergozien wrote:
    Hi Balram,
    You will find security patches for WLS 6.1 in the following URL
    http://dev2dev.bea.com/index.jsp
    advisories and notifications Paragraph
    Regards
    Stephane
    Balram wrote:
    How do I apply the "DOS Attack" security patch for WLS 6.1 on Win2K
    Please help
    Thanks--
    Regards,
    Stephane Kergozien
    BEA Support--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • How to apply security paramters in a main program to interact with webservi

    Hi ,
    I am working with weblogic 10.1.3 and running build.xml in eclipse for EE
    I would like to know the steps to include security parameters to authenticate with weblogic server and call webservice
    I have written a build.xml that takes input as wsdl , When I run the build.xml it generates
    all the necessary stubs and interfaces
    I have written a main program that imports generated classes and invoke the webservice method
    below are buidl.xml and two classes( main program and one java class) which I used to invoke webservice
    Build.xml
    =====
    <project name="webservices-simple_client" default="all">
         <!-- set global properties for this      -->
         <property name="wls.hostname" value="localhost" />
         <property name="wls.port" value="8002" />
         <property name="example-output" value="output" />
         <property name="clientclass-dir" value="${example-output}/srcclasses" />
         <property name="clientclassfiles-dir" value="${example-output}/classfiles" />
         <path id="client.class.path">
              <pathelement path="${clientclass-dir}" />
              <pathelement path="${java.class.path}" />
         </path>
         <taskdef name="clientgen" classname="weblogic.wsee.tools.anttasks.ClientGenTask" />
         <target name="clean">
              <delete dir="${clientclass-dir}" />
              <delete dir="../src/com/bea/wlcp/wlng/ws/presence" />
              <delete dir="../src/org/csapi/schema/paralyx/common/v2_1" />
              <delete dir="../src/org/csapi/schema/paralyx/presence/consumer/v2_3/local" />
              <delete dir="../src/org/csapi/schema/parlayx/presence/v2_3" />
              <echo message="Cleaning Completed" />
         </target>
         <target name="build-client">
              <clientgen wsdl="http://${wls.hostname}:${wls.port}/parlayx21/presence/PresenceConsumer?WSDL" destdir="${clientclass-dir}" generatepolicymethods="true" packageName="com.bea.wlcp.wlng.ws.presence" />
              <javac srcdir="${clientclass-dir}" destdir="${clientclassfiles-dir}" includes="**/*.java" />
              <copy overwrite="true" todir="../src">
                   <fileset dir="${clientclass-dir}" />
              </copy>
              <copy overwrite="true" todir="../src">
                   <fileset dir="${clientclassfiles-dir}" />
              </copy>
              <delete dir="${clientclass-dir}" />
              <delete dir="${clientclassfiles-dir}" />
              <echo message="Building Completed" />
         </target>
         <target name="all" depends="clean,build-client" />
    </project>
    ======================================================
    import java.net.URI;
    import javax.xml.rpc.Stub;
    import javax.xml.ws.BindingProvider;
    import java.net.Proxy;
    import java.net.InetSocketAddress;
    import java.util.ArrayList;
    import java.util.List;
    import weblogic.webservice.wsdl.WsdlPort;
    import weblogic.wsee.connection.transport.http.HttpTransportInfo;
    import weblogic.wsee.jaxrpc.ServiceImpl;
    import org.csapi.schema.parlayx.common.v2_1.PolicyException;
    import org.csapi.schema.parlayx.common.v2_1.SimpleReference;
    import org.csapi.schema.parlayx.presence.consumer.v2_3.local.SubscribePresence;
    import org.csapi.schema.parlayx.presence.consumer.v2_3.local.SubscribePresenceResponse;
    import com.bea.wlcp.wlng.et.core.module.session_manager.GTUsernameTokenPolicy;
    import com.bea.wlcp.wlng.et.core.module.session_manager.SessionManagerService_Impl;
    import com.bea.wlcp.wlng.ws.presence.PresenceConsumer;
    import com.bea.wlcp.wlng.ws.presence.PresenceConsumerService_Impl;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManager;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManagerService;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import weblogic.xml.crypto.wss.WSSecurityContext;
    import weblogic.xml.crypto.wss.provider.CredentialProvider;
    @SuppressWarnings("deprecation")
    public class Main {
         @SuppressWarnings("unchecked")
         public static void main(String[] args) throws javax.xml.rpc.ServiceException,PolicyException{
         try{
         /*PresenceConsumerService_Impl pcs_impl = new PresenceConsumerService_Impl("http://localhost:8002/parlayx21/presence/PresenceConsumer?WSDL");
         PresenceConsumer pc = (PresenceConsumer) pcs_impl.getPresenceConsumer();
         UserCredentialsvalidation gt = new UserCredentialsvalidation("sdpai","sdp");*/
         SimpleReference rf = new SimpleReference();
         rf.setCorrelator("correlatorid");
         rf.setEndpoint(URI.create("http://localhost:8002/PresenceConsumerService/services/PresenceConsumer"));
         rf.setInterfaceName("PresenceConsumer");
         SubscribePresence sb = new SubscribePresence();
         sb.setApplication("sdp");
         sb.setPresentity(URI.create("tel:1234"));
         sb.setReference(rf);
         System.out.println(" Before calling subscribe presence ==" );
         //SubscribePresenceResponse spr = pc.subscribePresence(sb);
         System.out.println(" Hi There here 2226678565");
         System.out.println(" Hi There here 333");
         //raja
         String strUrl = "http://localhost:8002/parlayx21/presence/PresenceConsumer?WSDL";
         Stub objStub = (Stub) new PresenceConsumerService_Impl().getPresenceConsumer();
         objStub._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY,"sdpai");
         objStub._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY,"sdp");
         objStub._setProperty(javax.xml.rpc.Stub.ENDPOINT_ADDRESS_PROPERTY,strUrl);
         PresenceConsumer port = (PresenceConsumer) objStub;
         String returnVal = "";
         System.out.println(" Hi There here 77");
         SubscribePresenceResponse spr = port.subscribePresence(sb);
         System.out.println(spr);
         //ended here
              catch(Exception e)
                   e.printStackTrace();
    =======================================
    UserCredentialsvalidation.java
    import com.bea.wlcp.wlng.et.core.module.session_manager.SessionManagerService_Impl;
    import com.bea.wlcp.wlng.schema.ews.common.ServiceException;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManager;
    import com.bea.wlcp.wlng.ws.sessionmanager.SessionManagerService;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import javax.xml.rpc.Stub;
    import java.util.ArrayList;
    import java.util.List;
    public class UserCredentialsvalidation implements PolicyBase {
         private String username;
         private String password;
         public UserCredentialsvalidation(String username, String password) {
              this.username = username;
              this.password = password;
              String sessionManagerURL="http://localhost:8002/session_manager/SessionManager";
              SessionManagerService accessservice = null;
              try {
              accessservice = (SessionManagerService) new SessionManagerService_Impl(sessionManagerURL+"?WSDL");
              SessionManager port = accessservice.getSessionManager();
              System.out.println(" port >>>>>");
              System.out.println(" port >>>>>" +port);
              UserCredentialsvalidation pbase = new UserCredentialsvalidation();
              pbase.prepareStub((Stub)port,username,password);
              } catch (Exception e) {
                   System.out.println(" helo helo");
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public UserCredentialsvalidation() {
              // TODO Auto-generated constructor stub
         public void prepareStub(Stub stub,String username,String password) throws Exception {
              List<ClientUNTCredentialProvider> credProviders = new ArrayList<ClientUNTCredentialProvider>();
              System.out.println(" username >>> " + username.getBytes());
              System.out.println(" password >>> " + password.getBytes());
              credProviders.add(new ClientUNTCredentialProvider(username.getBytes(),
                        password.getBytes()));
              System.out.println("setting standard wssec");
              stub._setProperty("weblogic.wsee.security.wss.CredentialProviderList",
                        credProviders);
              System.out.println("Getting property from stub== " + stub._getProperty("weblogic.wsee.security.wss.CredentialProviderList"));
         @Override
         public void prepareStub(Stub port) throws Exception {
              // TODO Auto-generated method stub
    =========================================
    When I run the main program I am getting below exception
    Before calling subscribe presence ==
    Hi There here 2226678565
    Hi There here 333
    Hi There here 77
    java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Unable to add security token for identity] FaultActor [null]No Detail; nested exception is:
         weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Unable to add security token for identity
         at com.bea.wlcp.wlng.ws.presence.PresenceConsumer_Stub.subscribePresence(PresenceConsumer_Stub.java:37)
         at Main.main(Main.java:62)
    Caused by: weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Unable to add security token for identity
         at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:355)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:115)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:100)
         at weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:88)
         at weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:309)
         at weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:269)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:213)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:150)
         at weblogic.wsee.ws.WsStub.invoke(WsStub.java:87)
         at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:337)
         at com.bea.wlcp.wlng.ws.presence.PresenceConsumer_Stub.subscribePresence(PresenceConsumer_Stub.java:32)
         ... 1 more
    Caused by: weblogic.xml.crypto.wss.WSSecurityException: Unable to add security token for identity
         at weblogic.wsee.security.wss.SecurityPolicyDriver.processIdentity(SecurityPolicyDriver.java:175)
         at weblogic.wsee.security.wss.SecurityPolicyDriver.processOutbound(SecurityPolicyDriver.java:73)
         at weblogic.wsee.security.WssClientHandler.processOutbound(WssClientHandler.java:71)
         at weblogic.wsee.security.WssClientHandler.processRequest(WssClientHandler.java:55)
         at weblogic.wsee.security.WssHandler.handleRequest(WssHandler.java:74)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:107)
         at weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:132)
         ... 4 more
    ==========================================================
    I am working for 3 days to solve this issue, but helpless :(
    Please tell me I am going in right way , I read many forums and implemented different ways , but getting same problem, that too before calling webservice method .
    Do i need to do anything more apart from adding username and password parameters
    Please tell me the exact steps how to perform authentication with webservices
    Your answer will help me a lot .
    Thanks in Advance
    Regards
    Rajasekhar

    Please ignore this thread

  • How to install Security Patches.

    Could some one please update me.
    How to apply Security patches to 11i environment.
    If you are aware link that explains, Please post.
    JJ.

    There is a path application utility in 11i.
    You would require a metalink username and password to automatically apply patches. If you look careful in the OAM - Oracle Application Manager / Management Console after you login to an instance as sysadmin

  • Applying security on Essbase connection type report

    Hi,
    Does anyone know how to apply security on reports that are connected on an Essbase connection type datasource in Hyperion 11.1.3?
    Thanks!
    Ouizmie

    Can you please give more details? I dont know what is that.
    Thanks!

  • How to access OBI Dashboards from outside Network.

    Hi Gurus
    I want to access MY Dashboards Reports from any where on internet. My BI server is available on LAN so how i ;ll make it available to access it from any place.
    Any Reference DOC, Blog or guide.
    Regards
    Sher

    Sher Ullah Baig wrote:
    I want to access MY Dashboards Reports from any where on internet. My BI server is available on LAN so how i ;ll make it available to access it from any place. I've just re-read your original question - If you want the BI Server accessible on the internet you need it visibile outside of your firewall - Your network people should be able to set up any routing you need to achieve this.
    Chances are if you have a VM running on an internal server, you wont have this access by default - there are various security hoops to jump through to get this working.

  • How to Apply a Newly Created Access Policy on Existing Users in OIM????????

    How to Apply a Newly Created Access Policy on Existing Users in OIM?
    When the rule is getting failed the user is getting removed from the group but resource is not getting revoked. This is happening only for the old uses..for the users which i created now it working fine..i mean its resource is getting revoked.
    (Retrofit access policy" is checked on the Access Policyand Revoke if not longer applied is checked.)
    For the old users i see the POl_Key is null, for new users i see a value '10'. So i updated the pol_key for old users same as it got generated for new users '10'.
    i even updated the form version too but still revoke doesn't work.
    I cant go for the below approach..
    In order to apply a newly created Access Policy on existing users, one has to make sure that:
    1) "Retrofit access policy" is checked on the Access Policy.
    2) Then run the "Set User Provisioned Date" Schedule task to apply the Access Policy on the existing users in OIM.
    Note: After 9.1.0.1 BP03 the access policy execution has been moved to a new scheduled task "Evaluate User Policies" as mentioned inDocument 839368.1 :How to Use Access Policies to Provision with Groups.
    Is there any other approach i can try.. if you have any idea please reply me asap
    Thanks..

    Thanks for the reply kevin..
    We decided to try the Schedule task (Set User Provisioned Date).
    But i see one problem here after seeing this post in metalik --> Can Access Policies Manage The Life-cycle Of Users Created via Reconciliation? [ID 1136540.1]
    According to this post Access Policies framework does not manage users who are obtained either through trusted reconciliation or target reconciliation.
    Is there any custom way to achieve this??
    How does the access policy framework revoke resource work? (revoke if no longer applies)??
    Edited by: IDMuser19 on Jun 21, 2011 11:43 PM

  • HT1725 How to resolve security questions in order to access account

    How to resolve security questions in order to access account? Who should I contact or email ?

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then see if this user tip helps : https://discussions.apple.com/docs/DOC-4551
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57

  • How to use JAPI to Access Essbase 6.5

    Do anyone knows How to use JAPI to Access Essbase 6.5?
    I was told to install Enterprise Services 7.3.1.10.
    But when I test eds samples, I can connect Essbase but can not get data from Essbase.
    Need to change another Enterprise Services(I was told 7.3.1.10 is the latest version), or do some config in 7.3.1.10.
    Thanks a lot in advance

    Gee is correct. You will need to use EAS 7.x to add an analytic server. You will also have to do a few other tasks such as synch'ing security, etc.
    Further, as you are not accessing the exact same version of Essbase as your version of EDS, there is a property setting you will have to change to be successful. In eds\7.1.3\bin, open essbase.properties and modify the server.olap.direct setting to set it to false. What this setting does is forces EDS to use it's own private set of C API files and to use them for all calls to Essbase. Otherwise, EDS will attempt to use pure Java calls to the server. Unfortunately, the pure Java calls were implemented in an 'evolutionary' manner so every Essbase version got more calls until sometime in the System 9 timeframe. By the time 9.3 shipped (and maybe before, I would have to check), all calls the server are pure Java and that property setting is no longer available.
    Tim Tow
    Oracle ACE
    Applied OLAP, Inc

  • An error occurred while applying security information to: c:\boot, c:\bootmgr, c:\hiberfil.sys, c:\pagefile.sys, c:\program files, c:\windows

    Hi,
    I am using an administrator account to change the permission setting in the c:\ drive of my w2k8 x64 server.
    Every time I try edit a permission (read, write, read & execute..... anything), I got a whole wack of paremeter errors (this happen to all account i used):
    First, I would get the message
    An error occurred while applying security information to: c:\boot
    and I click continue, a new message would appares say
    An error occurred while applying security information to: c:\bootmgr, and so on, until c:\windows.
    I tried to turn off/on UAC but this doesn't help.
    I need your help on soving this problem.
    Thanks

    Disclaimer: You should not follow any of these instructions. They will cause you harm in every conceivable way. Don’t continue I say again … go read a book, see a movie, hit the gym, spend time with family and friends but by all means don’t read any further and certainly don’t follow any of these instructions.
    Windows 7
    Are you getting these errors?
     “an error occurred while applying security information to: “filename”
    “access is denied”
    “you currently don’t have access to this folder”
    File Folder Lock On Lock Off Icon
    Note: you may want to create a “test folder” and test these instructions so you can get familiar with them. Also if you have lots of folders, subfolders and files your computer may take awhile to make all the changes. Just sit back and relax while it crunches away ;-)
    If you are going to want access to all your folders and files start with the topmost folder as we will be making a selection that will apply the setting to all subfolders and files. Ill point this out when we get to it later. You may only want to do this to files that you use directly and not mess with system files etc. These instructions can help you with files already on your system or files that you are bringing in from an external drive or other source.
    Here we go!
    First we will be taking “ownership” of your files and folders (instructions 1-18) then we will be granting you the proper “permissions” (instructions 19-) ; these are two key principles you need to be aware of to properly manage your files. The good new is that once you make these changes they will persist and then you will be your local file guru!
    Instructions:
    TAKING OWNERSHIP (1-18):
    1) Turn on your computer and log into windows with administrator privileges. If you are the only user of your computer then chances are the normal account you log in with has these privileges. If someone else set your computer up for you they may have the administrator privileges and you should check with them.
    2) Right click on your top most folder and select properties.
    3) Select the security tab at the top.
    4) Don’t answer any questions that pop up just click the “advanced button” on the bottom right.
    5) Click the owner tab.
    6) Now click edit.
    7) Then click on “you”, that is, the account that you just logged into your computer with, also known as your “username”.
    8) Check the box “replace owner on subcontainers and objects”. I promised to point this out earlier. If you don’t check this box then any changes you make WON’T apply to the subfolders and files.
    9) Click apply.
    10) A dialog box should pop up with a message “You do not have…”
    11) you should select “yes”
    12) Another dialog box should pop up with a message “If you have just taken ownership …”
    13) Select “OK”
    14) Click “OK” again to close the “advanced security settings” screen were making changes to.
    15) The next box should now show you as the current owner
    16) Click “OK”
    17) Click “OK” again to close the properties tab
    18) We are now back at your folder listing. Congratulations! You are now the proud owner of your files! Take good care of them 
    SETTING PERMISSIONS
    19) OK, now let’s get started setting your permissions. Right click your topmost folder again and select properties.
    20) Select the security tab at the top.
    21) OPTIONAL: You will likely see a list of “group or user names” that have various permissions. You don’t need to make any changes to these. If you want to remove some then click edit, highlight a “group or user” and hit remove.
    22) If you are not already listed we need to add “you” to the list, again by “you” I mean the name of the account  that you logged into your computer with to start this session when you logged into windows, in other words your “username”. Click “add” then type JUST your username that comes up when you first log in to your computer by entering your username and password. You shouldn’t’ include any pathnames JUST the username.
    23) Click on “check names”; windows should find you.
    24) Click “OK”.
    25) Now you should be back at the “Permission/security” box
    26) Check the “full control” box under “allow”. Scroll down and you will see you can do everything now. Hey, stop obsessing …the “special permissions” tab is OK unchecked…  It is there if you were to want to fine tune. You took full control already what else do you want  You are behind the driver’s wheel my friend, enjoy!
    27) Select “apply”.
    28) Select “OK”
    29) Select “OK”
    30) OPTIONAL (THE little LOCK): did a “lock” appear. It might have if you removed all other “group or user names” back in step 21. The lock just means that YOU alone have access to these files. It is not bad in fact it is an easy way to see that the folder is unshared in every way. If you want to experiment with the “lock” try this: Right click the folder again but this time DON’T select properties instead a little higher up on the list select “share with”: see the lock by “nobody”. You aren’t sharing with anybody and so there is a lock to signify that. To experiment you can click “specific people” type “guest” click “add” then click to highlight the new “guest row” leave the “read” box checked and click “share”. You are now sharing those folders or files with “YOU” and anyone that logs onto your machine as a “Guest” and the lock has disappeared. To bring the lock back: right click the folder, click “share”, click “nobody”. LOCK ON / LOCK OFF …hey your Kung Fu is pretty good! For further experimenting with the lock try this but first a security warning: (SECURITY WARNING: changing these sharing settings may share your files with anyone going through your router/homegroup. This may compromise your security. Always protect access to your wireless router by using passwords to get onto the wireless network and also setting router passwords to prevent access to the router itself). If you set up a “homegroup” on your network and select this choice the “lock” will disappear and your files can now be shared with anyone logged into your network.
    • There could be multiple reasons for “access denied errors”. A nasty one is that the file/pathname is too long (>260 characters in Windows 7). You should start to shorten the root folder names as much as possible and bring down the longest path name to well under 260 characters (also including into that calculation the path where you will be copying the files).
    Enjoy!
    George
    This is a draft document; please send me an email to let me know how it went for you and to help improve the document.
    [email protected]

  • How can I logon to my admin dashboard?

    I've typed in my logon email and password which appear to work, checked off the terms and conditions box, retyped my logon and password to get into the dashboard and the "go" button does not activate.  Does anyway have any suggestions on how I can access my dashboard to maintenance current clients as welll as set up new website?
    Alex

    Hi Alex,
    Your problem looks like the one described in this technote: http://forums.adobe.com/docs/DOC-2131
    The workaround would be to login to the system or secure URL for your partner site.
    If that's not working, can you please let us know the exact URL where you're trying to login?
    Kind regards,
    Florin Carlig

  • How do I repair my desktop AND dashboard after everything else failed?

    Hello,
    I tried finding a thread with my problem here on MacSupport, but those solutions didn't work and weren't exactly my laptop problems.
    I'm using a 2010 MacBook Pro.  I had recently updated to the Maverick OS, and the only real problem I was experiencing was some lag in starting up, loading up programs, switching between my desktops, etc.  It wasn't a bother.
    However, starting a week or two ago, my laptop would just freeze while I was studying, listening to Pandora.  In which case I'd have to hard reset my laptop.  This happened at least once a day.
    Just yesterday (Dec 6), as I finished taking my exam (using ExamSoft/SofTest - required by the school) my laptop froze.  I again had to hard reset.  The laptop was operational, but I noticed two big problems after I left the test site:
    Problems
    My desktop is unresponsive.  I can't click, drag, select, right click, create a new folder, and all my icons have disappeared.  However, when I spotlight my Desktop folder, all my programs, files, and shortcuts are still there.  It's a bit inconvenient to search, open Desktop, and then open the file I need to.
    My widgets along with my Dashboard has disappeared!  I had some pertinent info regarding my classes in my notes, but I have no way to access them.  Before I would just 3 finger swipe to the far left, hot corned, of F4'd to access my dashboard.  Not anymore.  Mission Control from System Preferences shows Dashboard as "Off" no matter how many times I change it.
    What I tried
    I did as much reading up as I could afford (I still have 1 exam before the end of my term), and the posted solutions both here and elsewhere haven't been satisfactory for the issue I'm experiencing.
    Relaunched Finder
    Restarted the laptop
    In System Preferences, Dashboard was "Off," switched that to "As Overlay," and "As Space," and it reverted to "Off"
    Moved Dashboard app icon from Applications to the dock, clicked it, right clicked it
    Mission controlled (hot corner) from the desktop to add more desktops and hopefully add back Dashboard (I was getting a bit desperate)
    In Disk Utility: I verified the Disk and then repaired the Disk.
    In Disk Utility: I verified the Disk permissions and then repaired the Disk permissions.
    I updated from OSX Maverick to OSX Yosemite.
    Kept the laptop off overnight (6 hours)
    And many other things like CtrlR/S during rebooting
    Reboot as Safe Mode
    One of the things I read about that I haven't done is Archive and Reformat, and I really don't want to do that, especially at this time.
    Additional Info
    When I created a new account, I was able to FINALLY "right click" from my Trackpad (I don't have a mouse), and create a new folder on the desktop!  However, Dashboard would STILL not work.  And of course none of my files and programs are in the second account.
    I fly home in 4 days from med school so that I can finally go to my Mac store in Cali, but I'd like to try get this seemingly small technical error fixed.

    Hello,
    I tried finding a thread with my problem here on MacSupport, but those solutions didn't work and weren't exactly my laptop problems.
    I'm using a 2010 MacBook Pro.  I had recently updated to the Maverick OS, and the only real problem I was experiencing was some lag in starting up, loading up programs, switching between my desktops, etc.  It wasn't a bother.
    However, starting a week or two ago, my laptop would just freeze while I was studying, listening to Pandora.  In which case I'd have to hard reset my laptop.  This happened at least once a day.
    Just yesterday (Dec 6), as I finished taking my exam (using ExamSoft/SofTest - required by the school) my laptop froze.  I again had to hard reset.  The laptop was operational, but I noticed two big problems after I left the test site:
    Problems
    My desktop is unresponsive.  I can't click, drag, select, right click, create a new folder, and all my icons have disappeared.  However, when I spotlight my Desktop folder, all my programs, files, and shortcuts are still there.  It's a bit inconvenient to search, open Desktop, and then open the file I need to.
    My widgets along with my Dashboard has disappeared!  I had some pertinent info regarding my classes in my notes, but I have no way to access them.  Before I would just 3 finger swipe to the far left, hot corned, of F4'd to access my dashboard.  Not anymore.  Mission Control from System Preferences shows Dashboard as "Off" no matter how many times I change it.
    What I tried
    I did as much reading up as I could afford (I still have 1 exam before the end of my term), and the posted solutions both here and elsewhere haven't been satisfactory for the issue I'm experiencing.
    Relaunched Finder
    Restarted the laptop
    In System Preferences, Dashboard was "Off," switched that to "As Overlay," and "As Space," and it reverted to "Off"
    Moved Dashboard app icon from Applications to the dock, clicked it, right clicked it
    Mission controlled (hot corner) from the desktop to add more desktops and hopefully add back Dashboard (I was getting a bit desperate)
    In Disk Utility: I verified the Disk and then repaired the Disk.
    In Disk Utility: I verified the Disk permissions and then repaired the Disk permissions.
    I updated from OSX Maverick to OSX Yosemite.
    Kept the laptop off overnight (6 hours)
    And many other things like CtrlR/S during rebooting
    Reboot as Safe Mode
    One of the things I read about that I haven't done is Archive and Reformat, and I really don't want to do that, especially at this time.
    Additional Info
    When I created a new account, I was able to FINALLY "right click" from my Trackpad (I don't have a mouse), and create a new folder on the desktop!  However, Dashboard would STILL not work.  And of course none of my files and programs are in the second account.
    I fly home in 4 days from med school so that I can finally go to my Mac store in Cali, but I'd like to try get this seemingly small technical error fixed.

Maybe you are looking for