Files Dissapear after Setting Inherit Permission Model

Our workgroup was continually having read only problems working on files that we each had created locally.
After reading this:
When to use Inherit Permissions
Generally, a share point should use the standard permissions model, since it will make new files in the same manner as those created locally on a client volume. Some programs may depend on this, even when storing data files on a network volume.
However, if your use of the server includes the need to share and communally-edit data files such as word processing documents, graphics, or other application program data, use Inherit Permissions on the share point that stores the shared data.
Warning: Inherit Permissions should never be used on a share point that hosts users' home directories.
I created a test share point and changed the permissions to inherit. Success! All documents that we placed on the server at this point were able to be edited and saved by various users.
I applied these same settings to the rest of our server and our most recent project folder vanished!
Our files are in a folder inside the Users folder on the server, is that the reason why we had this problem? Should our share point be somewhere else on the server?
Any help would be appreciated.
xServe G5 2.0 GHz   Mac OS X (10.3.9)  

Check if you have the Adobe PCD and SLStore folder available under /Library/Application Support/Adobe. Is so, then follow the solutions mentioned unde the below article.
http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html
If you donot see those folders, you might have accidently deleted them. Re-install will be the best option.

Similar Messages

  • Illustrator files dissapear after saving files

    hi
    we are all working on a network, mac computers all running mavericks. It started to happen few days ago that .ai files dissapear after editing and saving.
    any solution?
    Thanks!

    gonzalom,
    It is always recommended here to open/save from/to own hard disk, and to copy from/to networks and removable media. You may be lucky (for a while), but the chances of file corruption and other unpleasantnesses are immensely greater when you use anything but the harddisk, and it is better to be safe than sorry.
    In addition to the (far greater) risk of file corruption, some issues are mentioned here:
    http://helpx.adobe.com/illustrator/kb/illustrator-support-networks-removable-media.html

  • File dissapears after transfering through finder...

    This is starting to get to me. I have two finder windows open, im transfering a file from one finder window to another finder window(on our internal network at work, this also is occuring when uploading to our FTP through the finder) and after appearing to have succesfully transfered the file goes poof! dissapears. It is not cosmetic because i've checked on another comp as a different user and it is not there. Pleeeeaassee help.

    Try cutting and pasting the file/s.

  • Keeping tree expanded after setting a new model for JTree

    I want to replace a Jtree with a new model and then expand a certain row on the tree. How is this done? Otherwise how do I get the TreeNode of a particular row I want to expand so that when I replace the old model with the new one I could have the tree opened to the same node as before.
    Mind you the models exchanged are similar but different by one node change (delete or add of something). I can't seem to use tree.expandRow(#). It doesn't work - doesn't expand.
    Everytime I replace the old model with a new one I have to do a reload on the DefaultTreeModel to get the new data able to show on the Jtree. But, Now, I want this and then an expansion to the old state.
    Please help.
    Thanks in advance.
    Code:
    // in JTree
    public void updateModelForAdd(DefaultTreeModel new_model) {   
    setModel(new_model);
    new_model.reload();

    Maybe you should just try to add the new node to (or remove it from) the old model, without replacing your model.
    Or you have to keep track of the tree status and then apply it to the new model (correcting it with the change).
    Bye Massimo

  • All desktop files dissapeared after sharing

    Hope you can help me.
    Recently I shared the desktop on my Macbook Air (mountain lion) so I could copy a file I had on my iMac (Mavericks) over the net.
    Everything was ok and I could see the shared folder on my iMac so I copied over the file and waited until it was done but when I checked the Macbook air's desktop all previous files and folders were GONE!
    I could only see the newly copied file.
    I tried searching for the files all over my Macbook without any luck. The trash had some previous files there and it was not emptied so there was no deletion at all, but for some reason the files are not there.
    Now, when I get the info for my user in the Macbook Air I see it is about 7.5Gb, but when I get the info on the individual folders, the total amount is about 3.5Gb, which means the files must be there somewhere.
    I enabled the root user so I could make a search in the hard drive in case there was a permissions issue but could not find them either. I also ran a recovery tool but it didnt find any of the files.
    I recreated the user as instructed and still no luck!
    Any help will be appreciated!
    Thanks!

    Hey John, sorry to hear about your issue. It sounds pretty baffling.
    Let's see if we can isolate the problem. Go to the desktop and right click=>Get Info. Is the "Locked" box towards the middle checked? Under "Sharing & Permissions" at the bottom of the window, are the privileges of your current user account listed as "Read only?"

  • Set content type based on file extension after uploading into document library

    when there are multiple content types associated with a document library, say, report builder report, and excel documents, after you drag and drop a document into the document library, content type will not be detected based on the file extension. Suppose
    your default content type is document, and you had added the report build report content type, and you uploaded a .RDL file, the content type for the file will be set to the default document content type.
    I get a requirement to update the content type automatically based on the file extension, what follows is my code:
    public class setCNTByFileExtItemAdded : SPItemEventReceiver
    /// <summary>
    /// An item was added.
    /// </summary>
    public override void ItemAdded(SPItemEventProperties properties)
    if (properties.Web.GetFile(properties.AfterUrl).Exists)
    SPListItem CurrentListItem = properties.Web.GetFile(properties.AfterUrl).Item;
    String FileName = CurrentListItem.Name;
    if (FileName.EndsWith(".rdl",StringComparison.OrdinalIgnoreCase))
    CurrentListItem.Properties["ContentTypeId"] = "0x010100C3676CDFA2F24E1D949A8BF2B06F6B8B";
    CurrentListItem.SystemUpdate(false);
    base.ItemAdded(properties);
    What follows are references that helped me:
    http://stackoverflow.com/questions/7984300/properties-listitem-is-null-in-itemadded-event-while-uploading-documents-using
    http://williamvanstrien.blogspot.in/2011/10/read-content-of-uploaded-file-within.html
    http://blogs.msdn.com/b/manuj/archive/2009/09/22/itemadded-event-on-document-library-the-file-has-been-modified-by-on-error.aspx
    http://support.microsoft.com/kb/2647429

    user may have further requirement to detect whether the uploaded .xlsx file contains powerpivot data model, i tried the following code, the caveat is that .xlsx is actually a zip file, i just test whether the uploaded stream contains an entry xl/model/item.data.
    public partial class ApplicationPage2 : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    if (this.IsPostBack)
    if (FileUpload1.PostedFile == null)
    return;
    string destWeb = DestinationUrl.Url;
    string destUrl = destWeb + "/" + FileUpload1.FileName;
    using (SPSite site = new SPSite(destWeb))
    using (SPWeb web = site.OpenWeb())
    SPFile f = web.Files.Add(destUrl, FileUpload1.PostedFile.InputStream);
    if (FileUpload1.FileName.EndsWith(".xlsx") )
    Stream fs = f.OpenBinaryStream() as Stream;
    using (ZipArchive zfs = new ZipArchive(fs, ZipArchiveMode.Read))
    if (zfs.GetEntry("xl/model/item.data") == null)
    Debug.WriteLine("Does not contain data model");
    else
    Debug.WriteLine("Contain data model");
    The code i posted here is part of an application page in layout folder, the reason why i use application page is described in
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/065d010a-d37e-4da4-9873-172ab2c50d6d/custom-list-new-application-page-with-listfielditerator-and-savebutton?forum=sharepointdevelopment#288a686e-bfbe-41aa-83d0-58a80f0cec07

  • In Imovie 2011-Trying to image capture my project but it comes up after 10 hours- The project could not be prepared for publishing because an error occurred. File already open with write permission. Hopefully someone can help me.

    In Imovie 2011- Trying to image capture my project but it come up after 10 hours of rendering- The project could no be prepared for publishing because an error occured. File already open with write permission. Please Help!

    oh and ive tried publishing to almost everything. straight to idvd, to media browser, i tried both hd qualities and also the large quality. no luck with any of those

  • Setting the UNIX file permissions after writing the file to a directory

    Hi Experts,
    Can we set the UNIX file permissions after writing the file to a directory using Receiver File Adpater in SAP PI 7.1 ?
    Thanks in Advance.
    Regards,
    Jyoti

    Hi
    you can use the option "Run Operatiing system Command after File Processing" in the file adapter.
    Thanks
    Rinku Gangwani

  • [svn] 1657: Rebuilt our modified Batik and Velocity JARs after setting the file properties correctly on modules /thirdparty.

    Revision: 1657
    Author: [email protected]
    Date: 2008-05-09 17:37:18 -0700 (Fri, 09 May 2008)
    Log Message:
    Rebuilt our modified Batik and Velocity JARs after setting the file properties correctly on modules/thirdparty.
    Modified Paths:
    flex/sdk/trunk/lib/batik-all-flex.jar
    flex/sdk/trunk/lib/velocity-dep-1.4-flex.jar

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • HT1941 I have inadvertently changed a file permission setting. When opening Aperture I get the following; Aperture cannot access this library. To use this library make sure it's file permissions are set correctly. I am an old dude new to Mac OS. What up?

    I have inadvertently changed a file permission setting. When opening Aperture I get the following; "Aperture cannot access this library. To use this library make sure it's file permissions are set correctly". I am an old dude new to Mac OS. Looked in settings but have no idea how to allow file sharing to myself. I have been using Aperture actively for 6 weeks. I'm the only one using this Mac. What up?

    Back up all data now.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. You can demote it back to standard status when this step has been completed.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:20 ~ $_ ; chmod -R -N ~ $_ 2> /dev/null
    Be sure to select the whole line by triple-clicking anywhere in it. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. If you don’t have a login password, you’ll need to set one before you can run the command.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar. A text window opens.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens. You’re not going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Set Folder Permission with CSV File

    I currently have a batch file that I use to set the folder permission on a users folder.  The batch file of course requires me to manually set two variables.  I'd like to have a master csv file containing this info and a powershell script to allow
    me to set these permission much more quickly.  Here's my current batch file:
    Set User=123A
    Set Folder=123
    icacls C:\Data\%folder% /grant %user%:(OI)(CI)F
    My csv file would appear as 123A,123
    I did do a search and found a few posts on this subject, but couldn't wrap my head around how to modify them to fit my needs.
    Kevin

    FOR /F "eol=; tokens=1,2* delims=, " %%i in (myfile.txt) do icacls C:\Data\%%j /grant %%i:(OI)(CI)F
    ¯\_(ツ)_/¯

  • After setting up a new user on my Air, can I still access Setup Assistant to transfer files from my old Mac?

    Only after setting up my user account on my new Air do I find out about Setup Assistant vs Migration Assistant. Since, I have tried Migration Assistant - via wireless - twice, to no avail. Both computers (new Mac and old) just stay busy looking for another computer on my network. All I really want to do is move/copy everything from my old Mac to the new Air. Suggestions? Miracles?  Thanks!
    Clay

    You can do it wirelessly, but that will take some time... you could also purchase a Thunderbolt to Ethernet adapter or a Thunderbolt to FireWire adapter. That would certainly be faster. You should be able to purchase either adapter at your local Apple Store or at the online Apple Store.
    Good luck,
    Clinton

  • POSIX to Inherit Permission

    Can you switch from POSIX to Inherit Permission under the AFP services with out any issues. I am guessing it would be a good idea to delete the .ds store files as well as run disk utility on the drive correct?

    You can inherit permissions if using ACLs when the volume you want to share folders from are handled by ACLs. The first folder/volume "level" in a "share" are never using inherited permissions though.
    If you want to use Panther style inherited permissions the volume can't be set to be "handeled" by ACLs.
    If changing from handled/not handeld by ACLs on a "share"-volume - reboot.
    Check that ACLs are in effect by checking info on a shared folder (looks different than on a non ACL handled volume).
    If you want/need inherited permissions on a Tiger server - use ACLs.

  • Can't import movies to iTunes after setting up iTunes Match

    Hi.  I setup iTunes Match a couple of weeks ago (love it, btw), but for some reason since I set it up I can no longer import .m4v files into the Movies library. There is no error, they just never copy over.
    iTunes 10.6.1(7) 64-bit on MacPro running OS X 10.7.3
    Any ideas? Maybe its a strange coincidence, but I noticed the problem shortly after setting up Match.

    Also, iTunes match gets stuck sometimes so you have to log out of match and log back in before your imported movies show up in your iTunes library.

  • "No bootable device --- insert boot disk and press any key" after setting up Bootcamp

    Hi guys,
    I am trying to install Windows 7 via Bootcamp but after setting up Bootcamp and restarting the computer I get the error message "No bootable device --- insert boot disk and press any key".
    I use an iMac with a DIY Fusion Drive consisting of a 120 GB SSD and a 1 TB HDD.
    Since Bootcamp can only be installed on the HDD I believe disk1 is the interesting one. Here is the output of sudo gpt -r -vv show disk1:
    gpt show: disk1: mediasize=1000204886016; sectorsize=512; blocks=1953525168
    gpt show: disk1: Suspicious MBR at sector 0
    gpt show: disk1: Pri GPT at sector 1
    gpt show: disk1: Sec GPT at sector 1953525167
           start        size  index  contents
               0           1         MBR
               1           1         Pri GPT header
               2          32         Pri GPT table
              34           6        
              40      409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
          409640  1709658208      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
      1710067848     1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      1711337384          88        
      1711337472   242186240      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      1953523712        1423        
      1953525135          32         Sec GPT table
      1953525167           1         Sec GPT header
    And the output of sudo fdisk /dev/disk1:
    Disk: /dev/disk1
    geometry: 121601/255/63 [1953525168 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE    0   0   2 -   25 127  14 [         1 -     409639] <Unknown ID>
    2: AF   25 127  15 - 1023 254  63 [    409640 - 1709658208] HFS+       
    *3: 07 1023 254  63 - 1023 254  63 [1711337472 -  242186240] HPFS/QNX/AUX
    4: 00    0   0   0 -    0   0   0 [         0 -          0] unused
    Here is also the list of my disks:
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *120.0 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         119.7 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         875.3 GB   disk1s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk1s3
       4:       Microsoft Basic Data BOOTCAMP                124.0 GB   disk1s4
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS FusionDrive            *975.5 GB   disk2
                                     Logical Volume on disk0s2, disk1s2
                                     FFA13FBC-2001-40B7-8BBB-BE6EECF8AC11
                                     Unencrypted Fusion Drive
    /dev/disk3
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                            GRMCPRXFRER_DE_DVD     *3.2 GB     disk3
    I have gdisk installed and am ready to mess around. Any help would be greatly appreciated!

    So, when I started my iMac yesterday morning it couldn't boot into OS X anymore either. Several hours of restoring later I am back to square one. I tried installing Windows 7 via Bootcamp again but got the same error message. This time I noticed though that Bootcamp asked me to remove the bootable option from the USB drive with the support drivers in order to install from DVD. Does that ring any bells? I am building another USB drive right now, hoping it would ask me again but this I will decline and try to boot from it.
    When you restored, was a Time Machine restore used? TM does not backup Bootcamp and does an erase of the partition. It may also erase the entire disk (including the Fusion drive) if the specific backup of the volume layout of the disks indicates a pre-Bootcamp layout.
    My MacBook Pro is a 2009 model and also once had a built-in optical drive. I have no idea why it would work on there but not on the iMac.
    You also wrote
    When I plug the external DVD drive in, the boot manager recognizes a "Windows" disc and an "EFI Boot" disc. If I select the "Windows" disc I get a black screen with a blinking dash.
    The blinking dash indicates that it is working, but does not have the requisite drivers to enable the GPU/Mouse/Keyboard on the media being used.
    In the MBP case, did you have two drives installed in the MBP, a Fusion configuration, and then were able to successfully install Bootcamp?
    For example on a Mac mini I have a DIY Fusion drive, but the sequence was done differently. Bootcamp was installed using a USB stick+Windows 7 ISO.
    1. The two disks are not in a CoreStorage set up initially.
    2. The second disk is partitioned (64Gb) and a Bootcamp W7 install completed via USB (this is different HW as compared to IMac, because it has no Optical drive).
    3. After the HDD is partitioned, the first partition and the SSD are then used to create a CoreStorage volume.
    4. Here is the working version and disk layout. (I plan to erase both disks, put W7 on a partition on the SSD, and make the non-Bootcamp+entire HDD in a CoreStorage volume).
    diskutil cs list
    CoreStorage logical volume groups (1 found)
    |
    +-- Logical Volume Group A8C00490-0E14-401F-AB69-59F37724E8C4
        =========================================================
        Name:         Fusion
        Status:       Online
        Size:         1190201270272 B (1.2 TB)
        Free Space:   0 B (0 B)
        |
        +-< Physical Volume 4772013B-5520-4801-9BE5-BCAEF4AEDAB3
        |   ----------------------------------------------------
        |   Index:    0
        |   Disk:     disk0s2
        |   Status:   Online
        |   Size:     255716540416 B (255.7 GB)
        |
        +-< Physical Volume A679A101-3C78-4A59-B5EE-A4339210CFAD
        |   ----------------------------------------------------
        |   Index:    1
        |   Disk:     disk1s2
        |   Status:   Online
        |   Size:     934484729856 B (934.5 GB)
        |
        +-> Logical Volume Family 5EF5C7CA-0B9C-4169-82A1-41C84F206672
            Encryption Status:       Unlocked
            Encryption Type:         None
            Conversion Status:       NoConversion
            Conversion Direction:    -none-
            Has Encrypted Extents:   No
            Fully Secure:            No
            Passphrase Required:     No
            |
            +-> Logical Volume 1512657C-ED13-4B31-82C6-7AECBBCA7F98
                Disk:                  disk2
                Status:                Online
                Size (Total):          1185508581376 B (1.2 TB)
                Conversion Progress:   -none-
                Revertible:            No
                LV Name:               Fusion HD
                Volume Name:           Fusion HD
                Content Hint:          Apple_HFS
    diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *256.1 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         255.7 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *1.0 TB     disk1
       1:                        EFI EFI                     209.7 MB   disk1s1
       2:          Apple_CoreStorage                         934.5 GB   disk1s2
       3:                 Apple_Boot Boot OS X               650.0 MB   disk1s3
       4:       Microsoft Basic Data BOOTCAMP                64.9 GB    disk1s4
    /dev/disk2
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Fusion HD              *1.2 TB     disk2

Maybe you are looking for

  • Nano only works with iTunes 4.9

    My new Nano only works if I install the software provided with it: iTunes 4.9 If I upgrade to iTunes 5, or 5.01 it won't work. Even if I do a clean install of iTunes 5. Any clues? Thanks in advance.

  • How do I get smileys to appear in Pages?

    I followed the Help instructions for Special Characters - NO JOY.  I double click on face and it puts a blank space. I added face to Auto-Correction Pref - NO JOY.  It leaves a blank space.

  • FM for checking valid drive on PC

    Hi all, I am developing an interface. There is one file which is to be uplaoded in my code. I am doing some processing on that code and downloading that file on PC. User will enter the input & output file name. When user will enter the path I want o

  • Item pictures not appear does not appear when I sync

    Item pictures not appear does not appear when I sync

  • This apple ID cannot be used for MobileMe Sign in with a different Apple ID

    When I try and use my Apple ID to setup the free find my account on MobileMe I get this error after I hit the OK on the pop that reads Terms of service have changed. "This apple id cannot be used for MobileMe. Sign in with a differant Apple ID" I can