[User home directory property not found.]

Our Roaming Profile policy does not work but exits with the following error message in the log file:
RoamingProfile Policy] "...[POLICYHANDLERS.RoamingProfile.ErrorInEnforcement] .... [User home directory property not found.] ...."
We are running ZCM 10.3.1
We have the exact same environment at another customer where everything is just working fine. We compared the user properties and could not find any differences. eDirectory is fine, too
Does anybody have the same problems or a solution to it?
Thanks,
Sebastian

Yes, home directory is defined in eDir.
In Novell Client for Windows XP there is no "Allow Roaming User Profile Paths to non-Windows servers" attribute, it is in Client for Win 7 only.
In roaming policy, if I type the path to home directory manualy, it works fine.
In our original environment I have ZfD 4 on Netware, roaming profiles save to home directories normally, without errors.

Similar Messages

  • HT1727 How do you grant permission for home sharing and authorizing?  My mac did home share, but now says, "The required directory was not found or has a permissions error", when I try to authorize.

    How do you grant permission for home sharing and authorizing?  My mac did home share, but now says, "The required directory was not found or has a permissions error", when I try to authorize.

    OK, I just got off of the phone with Apple and still no joy. They had me try a few things that did not work, then told me to Archive and Install, which did not either. Anyway, thanks for the additional help very note worthy, but still no joy. Also an email to iTunes Support took me here
    http://docs.info.apple.com/article.html?artnum=93061
    I have a Users/Shared folder but since the files we are talking about are invisible, I can see how it is structured.
    And by the way I tried this one
    http://discussions.apple.com/message.jspa?messageID=3577004#3577004
    and it did not work. However, when I install a fresh copy of Tiger on the external it did authorize the computer and was able to play the downloads. But coping the invisible file to my boot drive was not successful. But , like I said the music did play when I started up from the external. So I guess that may be my only solution, unless someone can tell what the correct directory is and where it for iTunes downloads.

  • BPEL Archive directory {0} not found

    Hello,
    I have created deploy.xml,to deploy bpel processes on SOA server which is on unix based machine.
    xml is like
    <?xml version="1.0" encoding="windows-1252" ?>
    - <project default="Install" xmlns:oracle="antlib:oracle" basedir=".">
    <property name="process.dir" value="${basedir}" />
    <property name="package.dir" value="${basedir}/Package" />
    <echo>$(basedir) $(process.dir) $(package.dir)</echo>
    - <!-- Accounts Payable WorkFlow Version
    -->
    <property name="FlowVersion" value="1.0" />
    <property environment="env" />
    - <!-- First override from build.properties in process.dir, if available
    -->
    - <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME
    -->
    - <condition property="bpel.home" value="${env.BPEL_HOME}">
    <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
    </condition>
    <xmlproperty file="${process.dir}/bpel/bpel.xml" />
    <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}" />
    - <!-- If bpel.home is not yet using env.BPEL_HOME, set it for JDev
    -->
    - <!--      <property name"bpel.home" value="/apps/soa/product/10.1.3.1/OracleAS_1/bpel">
    -->
    <property name="bpel.home" value="C:/product/10.1.3.1/OracleAS_1/bpel" />
    <property name="bpel.home" value="${oracle.home}/integration/bpel" />
    <property file="${bpel.home}/utilities/ant-orabpel.properties" />
    <property name="bpel.home" value="${bpel.home}" />
    - <!-- import custom ant tasks for the BPEL PM
    -->
    <import file="${bpel.home}/utilities/ant-orabpel.xml" />
    - <!-- Use deployment related default properties
    -->
    - <!--
    This Task is Used to Unjar the jar file & replace the Token value,but needs to identify
    required or not. & if required from where it is get called.
    -->
    - <!-- Define the deployer URL
    -->
    <echo>Deployer URI : deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}</echo>
    <property name="deployer.url" value="deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}" />
    <echo>------------------------------------------------------------------- | ${env.BPEL_HOME} | Deploying to Server deployer:oc4j:opmn://${j2ee.hostname}/${oc4jinstancename} -------------------------------------------------------------------</echo>
    <property name="process" value="process1" />
    - <target name="FixURLLocations">
    <echo>------------------------------------------------------------------- | Updating Web Service Location Information | JAR file to update: ${p.jarfile} | Web Service Location base: http://${http.hostname}:${http.port} -------------------------------------------------------------------</echo>
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    <mkdir dir="${package.dir}/temp" />
    <mkdir dir="${package.dir}/Save" />
    <copy file="${p.jarfile}" todir="${package.dir}/Save" />
    <unjar src="${p.jarfile}" dest="${package.dir}/temp" overwrite="yes" />
    <!-- Code to replace some hardcoded values -->
    <delete file="${p.jarfile}" verbose="no" quiet="yes" failonerror="no" />
    <jar destfile="${p.jarfile}" basedir="${package.dir}/temp" update="yes" />
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    </target>
    <target name="Test">
    <echo>---------------------------------------------------------------- | Deploying process GWT_SP_L1WipBPELProcess ----------------------------------------------------------------</echo>
    <antcall target="FixURLLocations">
    <param name="p.jarfile" value="${package.dir}/Test.jar" />
    </antcall>
    <deployProcess user="${admin.user}" password="${admin.password}" domain="${domain}" process="${process.name}" rev="${rev}" dir="${package.dir}/output" hostname="${http.hostname}" httpport="${http.port}" verbose="${verbose}" isSSL="${isSSL}" trustStore="${trustStore}" trustPassword="${trustPassword}" />
    </target>
    <target name="Install" depends="bpel, apps_webservice">
    <tstamp />
    <echo>--------------------------------------------------------- | Deployed all process ---------------------------------------------------------</echo>
    </target>
    <target name="apps_webservice" depends="Test">
    <tstamp />
    <echo>--------------------------------------------------------- | Webserivces and application Installation completed directory "{0}" ---------------------------------------------------------</echo>
    </target>
    <target name="bpel" depends="">
    <tstamp />
    <echo>--------------------------------------------------------- | BPEL Process Installation completed ---------------------------------------------------------</echo>
    </target>
    </project>
    but when I try to run this xml using Ant It,unjar file files replaces code ,make jar again and on deploying it gives following error
    BPEL Archive directory {0} not found.
    Could you please tell me why this error is coming and how i can resolve it?

    Hello,
    Could any one help regarding this.
    Please suggest why d<deployprocess> is failing and giving BPEL Archive directory {0} not found.
    Could
    <copy file="${p.jarfile}" todir="C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\deploy" />
    replace <deployprocess>
    Thanks & Regards,
    Jignya

  • Home directory is not being backed up in Time Machine

    Problem: It turns out my home directory does not have any backups in Time Machine for the last year.  I've never received any error message indicating it wasn't doing the full backup.
    Goal: I'd like to get Time Machine to back up my home folder (which contains 100% of the content I care about) again, ideally in a way where I can keep my history from the last time it backed up successfully.
    How I found out:
    - I opened Time Machine and realized all the "pink bars" were dimmed all the way back up to Sept. 2011 when I navigated to my home folder or any folder within it.
    - I cloned a file within my home folder, did a manual Time Machine back up, opened Time Machine and verified that the backup volume did not contain the cloned file.
    - I did this again while watching the Console and verified that it did not make a large enough backup to include the cloned file.
    - I explored all the backups in Finder and realized that indeed all the backups that corresponded to the dimmed pink bars in Time Machine had no home folder.
    - I did an "ls -a" in the backup volume in Terminal and realized that it was not the case that the home directory was present but merely hidden.
    What I've tried:
    - I created a new admin account, logged into that and did a manual Time Machine backup from there.  The new account was backed up, while the original home directory still wasn't.  This continues to be true in subsequent backups made while logged into the main account.
    - I examined the exclusions list in Time Machine preferences.  The only items were the backup volume itself and another partition of that external drive I use for other backups, as expected.
    - I did a "Full Reset of Time Machine" (http://pondini.org/TM/A4.html), with a reboot before re-enabling Time Machine.  The plist file did change to become much simpler, but the home folder is still not being backed up.
    Other notes:
    - I run Dropbox, and have those contents in a folder one level under the home directory
    - I run Git
    - The existing backups have only used 500GB or so of a 1TB partition, so it's not filling up.
    - I ran Verify Disk in Disk Utility on both my backup volume and the mac's HD.  The backup volume appeared OK, but the mac HD was "found corrupt and needs to be repaired".  I could boot into the Recovery HD and repair it, but I feel like this is a risk and I'd like to have a working backup before I do that (I don't have another external HD around to make a temporary backup).  Could the corrupted drive be the reason Time Machine has been silently skipping the home folder?
    - My home folder is named "apple".  Might this be a problem?  I'd rename it, but that's a risk and I'd like a verified backup before doing that.
    - The Time Machine plist file in /Library/Preferences is pretty hard to read in pico, TextEdit, etc (maybe this is normal?)
    I've scoured the forums and pondini's very thorough troubleshooting pages to no avail.  Please let me know if anyone has ideas.  Thanks.

    Latest update: Bought a new external harddrive, set that up as the new Time Machine volume, but got the exact same results (all but my main user directory are backed up).  This is after another Time Machine reset (deleting the .plist), starting up in Safe Mode, and trying to initiate the backup from both the account that doesn't get backed up and another administrator account.
    Here is some of the output from the Console when filtering messages for "backupd":
    10/5/12 2:51:23.572 AM com.apple.backupd[13529]: Backup content size: 481.57 GB excluded items size: 11.31 GB for volume Macintosh HD
    10/5/12 2:51:23.572 AM com.apple.backupd[13529]: Found 1437613 files (470.25 GB) needing backup
    10/5/12 2:51:23.573 AM com.apple.backupd[13529]: 564.3 GB required (including padding), 1.5 TB available
    10/5/12 2:51:23.581 AM com.apple.backupd[13529]: Waiting for index to be ready (100)
    10/5/12 3:40:33.297 AM com.apple.backupd[13529]: Copied 763432 files (21.54 GB) from volume Macintosh HD.
    Put the relevant parts in bold.  No messages about why it only backed up 21.54GB when it found 470.25GB that needed to get backed up.
    Does this make sense to anyone??

  • The required directory was not found

    "The required directory was not found or has a permission error."
    This is the error message I get when I try to authorize my Mac Pro (10.4.10). I have repaired permissions, restarted, reinstalled iTunes, re-linked the iTunes home folder and checked all folder for correct permissions.
    Joe

    OK, I just got off of the phone with Apple and still no joy. They had me try a few things that did not work, then told me to Archive and Install, which did not either. Anyway, thanks for the additional help very note worthy, but still no joy. Also an email to iTunes Support took me here
    http://docs.info.apple.com/article.html?artnum=93061
    I have a Users/Shared folder but since the files we are talking about are invisible, I can see how it is structured.
    And by the way I tried this one
    http://discussions.apple.com/message.jspa?messageID=3577004#3577004
    and it did not work. However, when I install a fresh copy of Tiger on the external it did authorize the computer and was able to play the downloads. But coping the invisible file to my boot drive was not successful. But , like I said the music did play when I started up from the external. So I guess that may be my only solution, unless someone can tell what the correct directory is and where it for iTunes downloads.

  • User home directory at /var/imap is unavailable

    We're running a single 10.5.7 server and recently migrated our mail to a new location from the default /var/imap and var/spool/imap. Since that time, I've been seeing the following log entries pop up when a user attempts to log in to the mail server. An example:
    Feb 5 10:19:37 ServerName imapd: [xxx.xxx.xxx.xxx] username
    [6608]: CFPreferences: user home directory at /var/imap is unavailable. User domains will be volatile.
    We migrated the mail using a process nearly identical to the one found at:
    http://discussions.apple.com/thread.jspa?messageID=6600016&#6600016
    I have checked the settings and paths in:
    cyrus.conf
    imapd.conf
    (postfix) main.cf
    (postfix) master.cf
    All of the paths point to the correct new paths, which are:
    /Volumes/Resources/Mail/imap
    /Volumes/Resources/Mail/spool/imap
    All users are able to access their accounts and use the mail server. What we're seeing is periodic periods of high latency (messages taking minutes to send) and occasionally odd problems with users' Sent folders (a sent message appearing twice with the same timestamp, even though the outgoing mail filter indicates it was only sent once). I'm making the assumption that these intermittent problems are related to the user home pointing to the wrong path.
    I've looked through the forums and googled the phrase, but haven't found anything that would point me toward finding the setting in the mail services that remains incorrect.
    We also intermittently receive the following mail-related message in the mailaccess.log:
    Feb 5 10:36:07 Rivendell master[865]: can't open com file: /var/imap/.smd.imap.com (No such file or directory)
    This appears to be a similar problem, but again, the location of the setting I need to change eludes me.
    Thanks for any help or pointers.

    Here's the solution that finally fixed this problem and removed latency problems that seem to have been associated with it.
    (1) Stopped mail services with terminal.
    (2) Opened the Server Admin application.
    (3) Under Mail/Settings/Advanced/Database I changed the path to the original location, /var/imap and /var/spool/imap.
    (4) Clicked "Save."
    (5) In the same spot, changed the paths back to the new location.
    (6) Clicked "Save."
    (7) Restarted the mail server.
    I have no idea what hidden setting that's not in the conf files that this changed, but it removed the error messages and the latency.

  • No oidAdminClass property not found in servicename.properties file

    Hi ,
    I am new to forum. I got one exception in lione no 2 as follows, when i am trying to get the user information , as follows.
    the code is like this.... Any help...
    Tons of advance in advance...
    1.ProviderContext pc = pReq.getProviderInstance().getProviderContext();
    2.OidManager oidMgr = new OidManagr(pc);
    The exception is as follows...
    oracle.portal.provider.v2.ProviderException: No oidAdminClass property not found in servicename.properties file
    08/04/17 18:43:03      at oracle.portal.utils.v2.ContainerException.fillInStackTrace(Unknown Source)
    08/04/17 18:43:03      at java.lang.Throwable.<init>(Throwable.java:195)
    08/04/17 18:43:03      at java.lang.Exception.<init>(Exception.java:41)
    08/04/17 18:43:03      at oracle.portal.utils.v2.ContainerException.<init>(Unknown Source)
    08/04/17 18:43:03      at oracle.portal.provider.v2.ProviderException.<init>(Unknown Source)
    08/04/17 18:43:03      at oracle.portal.provider.v2.oid.OidManager.<init>(Unknown Source)
    08/04/17 18:43:03      at htdocs.oratest._OraTestShowPage._jspService(_OraTestShowPage.java:90)
    08/04/17 18:43:03      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    08/04/17 18:43:03      at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:569)
    08/04/17 18:43:03      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:305)
    08/04/17 18:43:03      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    08/04/17 18:43:03      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    08/04/17 18:43:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    08/04/17 18:43:03      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    08/04/17 18:43:03      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    08/04/17 18:43:03      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:253)
    08/04/17 18:43:03      at oracle.portal.provider.v2.render.http.AbstractResourceRenderer.renderBody(Unknown Source)
    08/04/17 18:43:03      at oracle.portal.provider.v2.render.RenderManager.render(Unknown Source)
    08/04/17 18:43:03      at oracle.portal.provider.v2.DefaultPortletInstance.render(Unknown Source)
    08/04/17 18:43:03      at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.showPortlet(Unknown Source)
    08/04/17 18:43:03      at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.handleHttp(Unknown Source)
    08/04/17 18:43:03      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    08/04/17 18:43:03      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    08/04/17 18:43:03      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    08/04/17 18:43:03      at java.lang.reflect.Method.invoke(Method.java:324)
    08/04/17 18:43:03      at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source)
    08/04/17 18:43:03      at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source)
    08/04/17 18:43:03      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    08/04/17 18:43:03      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    08/04/17 18:43:03      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    08/04/17 18:43:03      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    08/04/17 18:43:03      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    08/04/17 18:43:03      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    08/04/17 18:43:03      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    08/04/17 18:43:03      at java.lang.Thread.run(Thread.java:534)

    the password value stored in OID is just a hashed value (by default) and it's virtually impossible to retrieve the original value of password, as entered by the user.
    There are option in OID for storing the encrypted value (vs the hash value). Perhaps that in this case there are means to do the job.
    In my opinion it's a bad choice (from governance perspective) to allow developers retrieving a user password value from a directory.
    Patrick.

  • AES-256 user home directory sparse image bundle in Lion?

    Snow Leopard and previous had file vault to protect users' home directories as, I believe, AES-128-encrypted sparse image bundles. As I understand it now, under Lion, the options are to enable AES-128 whole disk encryption, or, if upgrading an existing snow leopard machine with a legacy file vault user account, to maintain that legacy file vault user home directory. However, under this second approach, additional users' home directories cannot be individually "file-vaulted" and instead, would require that legacy file vault  be decrytped and then the entire disk be encrypted.
    I am thinking that it would be advantageous from a security standpoint if an individual user home directory could remain encrypted, if that user were not actively logged in. Then, all contents would be inaccessible to other users, including administratively privileged users, and also that user's home directory would remain encrypted when the computer was turned on and booted up because as I understand it, file vault 2's real strength lies in protecting "data at rest" versus "data on a powered up and mounted file vault 2 volume".
    To that end, I am wondering, regardless of whether file vault 2 is enabled or not, whether an existing user home directory and all of its contents be converted to an AES-256-encrypted sparse image bundle, using Disk Utility, and exist at the /Users directory space, mounting and decrypting "on the fly" from the login window at user login just like how a legacy file vault home directory is treated under snow leopard, independently of whether file vault 2 was enabled on the whole disk or not. This would also permit later addition/conversion of another "file vaulted" user account whether fle vault 2 were enabled or not.
    To recap, an AES-256-encrypted sparse image bundle that would mount upon user login just like a legacy file vault user home directory does. Does anyone know if something like that is doable, and has that road already been travelled successfully? If so, I'd love to read a step-by-step, play-by-play, set of instructions on how to do just that.

    I think I got a solution worked out.  I don't mind if things get installed in /opt as long as pacman tracks it, and I found ruby-enterprise-rmagick in the AUR as an orphan.  I adopted it, updated it, installed it, and it's working great with my code.

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server.
    This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for their help but have only received the same rote info and nothing that has solved my problem.
    I am using Cyberduck as my FTP client but tried Classic FTP for macs before this and although it says that I am connected, it is saying that it can not change to the directory hosting10.123-reg.co.uk and asks if I have permission to be using it? I am not sure what to do?
    Please could someone advise me?
    Thanks!

    Welcome to the Apple Discussions. Since you're not using MobileMe these pages might be of some help to you:
    http://homepage.mac.com/thgewecke/iwebserver.html
    http://iwebfaq.org/site/iWebFolderFTP.html
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6838.html
    OT

  • Home directory is not created and cannot log from client computer

    I am trying to set up MacOsX server. I already have another server which is my DNS server. I am trying to create an Open Directory Master server.
    Server was updated to 10.4.8 MacOsX from the beginning of existence.
    I created couple of users in Open directory domain for testing purposes.
    So, the first problem is, that when I am trying to create a user home directory server does not create it and does not give any errors about that. I tried in bash createhomedir utility, it did not work either, again, no error messages.
    Another problem:
    I set up Open Directory master with LDAP. It was set up correctly, no error messages. At least I did not see any.
    The I tried to connect to the server from my client iMac computer which has 10.4.8 MacOsX as well. So I set up LDAP there in Directory services, it was able to find my server and bind to it. Then when I am trying to login with username and password in Open Directory on the server, it does nor recognize it. No error messages in logs as well.
    However, if I am trying to use ssh from client machine to connect to Server using the names which are in Open Directory on the server it allows me to do so. But of course it says no home directory defined.
    Than you very much for responce!

    An Open Directory Master requires DNS running somewhere. You could have a scenario involving 4 servers where: DNS is provided by Server A, Server B is a Web & Mail Server, Server C providing FTP Services and Server D providing LDAP services with managed preferences and automounting Home Directories (ODM). In this scenario DNS is provide by Server A and any other server requiring DNS using Server A’s DNS. You could expand this scenario if you wanted and have replica (fallover) servers for Servers A, B C or D, or if you are the frugal sort just one replica server replicating the 4 primary servers. You can do all of this pretty much in 10.4 GUI with some additional configuration using Terminal
      Mac OS X (10.4.8)  
      Mac OS X (10.4.8)  
      Mac OS X (10.4.8)  

  • Why can't a new folder be created within my user home directory when using 'Save As' in Mountain Lion?

    Hi,
    So I want to create a new folder within my main user home directory (not the root directory) just for my developer-related files? I can do this from Finder, although it does prompt me for my password to do so. However, when using 'Save As' from any app, the 'New Folder' button is greyed out when I select my user home directory. So I have to create the folder in Finder then Save As.
    Is this normal behavior? Is OSX discouraging me from adding things to my user home directory by making it less convenient? Is there a good reason it would be discouraging me from creating new folders there? If not, is there a setting that I can change to allow the creation of new folders from the Save As prompt?
    Thanks for your help,
    B

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • HT1420 When I try and authorise I get this message.The required directory was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed. How do I rectify?

    When I try and authorise I get this message.The required directory was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed. How do I rectify?

    iTunes: Missing folder or incorrect permissions may prevent authorization
    Mac OS X
    Log in to your computer using an administrator account.
    In the Finder, choose Go to Folder from the Go menu.
    Type: "/Users" (without quotes) and click Go.
    If the Shared folder exists
    Open Terminal (found in /Applications/Utilities).Warning: This step involves modifying permission settings by entering commands in the Terminal application. Users unfamiliar with Terminal and UNIX-like environments should proceed with caution. The entry of incorrect commands may result in data loss or unusable system software. Improper alteration of permissions can result in reduced system security or exposure of private data. This option requires a non-blank admin password.
    Depending on which version of Mac OS X you have, this step will vary:
    On Mac OS X v10.5.8 and earlier, type:sudo chmod -R 777 /Users/Shared
    On Mac OS X v10.6 or later, type:sudo chmod -R 1777 /Users/Shared
    Press Return.
    Quit Terminal.
    If the Shared folder does not exist
    The following steps will recreate the Shared folder if it is missing and ensure that it has been assigned using the correct permissions.
    Open Terminal (found in /Applications/Utilities).Warning: This step involves modifying permission settings by entering commands in the Terminal application. Users unfamiliar with Terminal and UNIX-like environments should proceed with caution. The entry of incorrect commands may result in data loss or unusable system software. Improper alteration of permissions can result in reduced system security or exposure of private data. This option requires a non-blank admin password.
    Type or copy and paste the following command into the Terminal window:sudo mkdir -p /Users/Shared/
    Press Return.
    Enter your administrator account password when prompted, then press Return.
    Depending on which version of Mac OS X you have, this step will vary:
    On Mac OS X v10.5.8 and earlier, type:sudo chmod 777 /Users/Shared
    On Mac OS X v10.6 or later, type:sudo chmod 1777 /Users/Shared
    Press Return.
    Quit Terminal.

  • Import user drive (Mac HD) not found / not available as import source

    Hi,
    the Mac internal HD ist not shown on import screen (no user drive shown!). Whenn I select 'choose other source' I can see the user drive but no
    finder-structure an all!!! pictures appear for import (sorry if I don't use the
    right words no nativ!)
    pls tell me how to add screenshots to explain - thx

    Hi,
    thank you for this incredibly helpful advice.
    The vanished folders are back in place. :-D
    Great!
    Am 16.05.2014 um 23:31 schrieb blokfluitist <[email protected]>:
    import user drive (Mac HD) not found / not available as import source
    created by blokfluitist in Photoshop Lightroom - View the full discussion
    I just had the exact same problem !  And am delighted to say that it's fixed thanks to a friend who pointed me here... http://m.imore.com/how-unhide-your-users-directory-1093
    I followed the instructions and my user drive has now been restored to the image source list... phew !!
    https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6385792-640708/ScreenShot2014-05-16at19.21.51.png
    https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6385792-640715/277-605/ScreenShot2014-05-16at22.03.52.png
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6385792#6385792
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop Lightroom by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • ADF Customization (Fusion Apps) - Property not found exception

    All
    Trying to customize a Fusion Apps application(essentially ADF) where in a popup has to be inserted into an existing page and displayed on UI on a Submit button click.
    I have bound the popup to a backing bean property 'Sp1' so that the popup can be invoked programmatically from an action listener method. Note: Show popup behavior is not an option due to some of the business requirements.
    When the page renders, it throws the exception 'Sp1' property not found in the backing bean class. Although the Submit button is able invoke the action listener method without an issue.
    Not sure why the property is not found to the page when it is able to invoke other methods in the class. Any pointers?
    Here are the steps followed:
    1. Opened JDev in Fusion Apps Dev role > Created a ViewController project > Created a java bean A, manually added a RichPopup property Sp1, added an action listener method 'submitForApproval'
    2. Created an Adf jar and deployed > Placed the jar under WEB-INF/lib directory under the EAR/WAR on the server and redeployed so that the jar becomes available to the Fusion App
    3. Created another app which is a FA Customization App and a project under it
    4. Now re-opened JDev in Fusion Apps Customization role > and opened up the FA Customization App
    5. Customized the Fusion Apps page to associate the 'submitForApproval' bean action listener method to the existing Submit button on the page
    6. Customized the page to insert a popup with Id='Sp1', marked the property contentDelivery=lazyUncached
    7. Customized the corresponding taskflow to add the managed bean entry for the new bean
    When I apply the customization MAR on the APP and run the page on the server, I see 'property Sp1 not found in the bean class' exception on the page.
    However, when I click on Submit button anyway I see that the contents of the method are executed. So, I believe the page is definitely finding the class but not this property.
    Verified that Sp1 property is of type RichPopup and has accessors in the bean.
    Any pointers would be much useful.
    Thanks
    Niranjan

    Since we donot use FusionApps , it will be hard to comment on this . Please post this on the internal ADF Frontend Forum @ myforums.oracle.com

  • Premiere claims Media Cache directory was not found or is not writable.

    Premiere claims Media Cache directory was not found or is not writable. I then change the cache settings to an external drive then it crashes regardless of whether I open an existing file or create a new one. I've re-installed, deleted preferences etc. Often when it doesn't crash, it will say file was created in a newer version of Premiere Pro. Losing hair, please help?

    Okay! So, immediately after my last post, I solved the problem.
    I deleted the cache files in the default directory "C:\Users\"USERNAME"\AppData\Roaming\Adobe\Common"  then this stopped the crashing.
    There appears to have been updates via Creative Cloud so this must've caused dramas with the existing project files. So a fresh install + the deleting of the cache files, then the changed settings of Media cache locations seems to help.
    Thanks for those who tried to help!
    Cheers,
    Tom

Maybe you are looking for

  • Why does my iPod not recognise my passcode on restrictions passcode page

    The passcode for my iPod is no longer recognised when I try to open the restrictions page in the Settings app. How can one device have 2 passcodes ? Do I have to wipe the device and start again ? How do I know it will not happen again /

  • Installing InDesign Only from Creative Suite Disk

    I wish to Install  InDesign ONLY from my Creative Suite 2 Disk. I have The full Creative Suite 4 collection of applications installed on my Mac Pro. It resides on my NEW main hard drive. All of my copy of Creative Suite 2 was lost as per the drive fa

  • Credit debit field

    Hello, I am generating FI report. for that i have to show a credit and debit balance for given G/L account.can anybody tell me from where i can get the field for both credit and debit for given G/L account number and posting date.I have gone through

  • Template for copa

    please send me the template for copa [email protected]

  • Creating report with multiple queries in clear quest

    Hi, I am new to reports and currently working with creating reports that connect to clear quest(CQ). I have successfully created several reports, that connect to the CQ, but they all have data from only one query. Now I am trying to create a slightly