Attachments Permissions Issue

Hello,
We are trying to implement the attachment upload/download ability in our application, and we seem to have run into an issue.
The upload functionality works fine, as long as the user has the DBA role assigned to him. When the role is removed, though, we get a 404 Page Not Found error. The same error occurs even if the user is assigned direct rights to the wwv_flow_files view and its underlying table, and to the attachment table we use.
The unusual part of this situation is that when the user runs the code in Toad with or without the DBA rights, the code works fine.
If anyone has run across this kind of situation before, we would appreciate any advice. If you're curious, the uploading code is below.
Thanks,
Scott
/*This process uploads a file to the ISR_ATAT_ATTACHMENT table from the WWV_FLOW_FILES view,
which is the view that handles all the file uploading for HTML DB.
If the file doesn't have the same name as an existing file for the SDR, it is uploaded with no problems.
If the file DOES have the same name, it's assumed the files are the same, and the client is given the
option of stopping or overwriting the file.
If the client chooses to continue, the original file is deleted and the new file is uploaded in its
place.*/
DECLARE
xCOUNTER NUMBER;
BEGIN
IF :P73_FILE is not null THEN
   :P73_FILE_PATH := :P73_FILE;
   IF :F101_DUPLICATE_FILE != 'DUPLICATE_FILE' THEN
--Count the number of files associated with this SDR with the same name as the file being uploaded.
      SELECT
          count(ATAT_UID)
      INTO
          xCOUNTER
      FROM
          ISR_ATAT_ATTACHMENT
      WHERE
          ATAT_DESC = substr(:P73_FILE, instr(:P73_FILE, '/', -1) +1)
      AND OBOB_UID = :P73_OBOB_UID;
      IF xCOUNTER = 0 THEN
--This is a new file for this SDR, so upload it with no problems.
            INSERT INTO ISR.ISR_ATAT_ATTACHMENT
              (ATAT_ATTACHMENT,
               ATAT_DESC,
               OBOB_UID,
               KTTR_ATAT_CLASS_UID)
            SELECT
               BLOB_CONTENT,
               substr(:P73_FILE, instr(:P73_FILE, '/', -1) +1),
               :P73_OBOB_UID,
               :P73_KTTR_ATAT_CLASS_UID
            FROM
               wwv_flow_files
            WHERE NAME = :P73_FILE;         
            delete WWV_FLOW_FILES where NAME = :P73_FILE;
            :F101_DUPLICATE_FILE := 'NOT_DUPLICATE';
      ELSE
          --It's a duplicate file and they should be warned.
            --F101_DUPLICATE_FILE sets the display on various items throughout the page.
         :F101_DUPLICATE_FILE := 'DUPLICATE_FILE';                
      END IF;
   ELSE
           --It's a duplicate file, and they are overwriting the old file anyway.
            delete
                ISR_ATAT_ATTACHMENT
            where
                ATAT_DESC = substr(:P73_FILE, instr(:P73_FILE, '/', -1) +1)
            and OBOB_UID = :P73_OBOB_UID;
            INSERT INTO ISR.ISR_ATAT_ATTACHMENT
              (ATAT_ATTACHMENT,
               ATAT_DESC,
               OBOB_UID,
               KTTR_ATAT_CLASS_UID)
            SELECT
               BLOB_CONTENT,
               substr(:P73_FILE, instr(:P73_FILE, '/', -1) +1),
               :P73_OBOB_UID,
               :P73_KTTR_ATAT_CLASS_UID
            FROM
               wwv_flow_files
            WHERE NAME = :P73_FILE;
            delete WWV_FLOW_FILES where NAME = :P73_FILE;
            :F101_DUPLICATE_FILE := 'NOT_DUPLICATE';
   END IF;
ELSE
   IF :F101_DUPLICATE_FILE = 'DUPLICATE_FILE' THEN
           --It's a duplicate file, and they are overwriting the old file anyway.
            delete
                ISR_ATAT_ATTACHMENT
            where
                ATAT_DESC = substr(:P73_FILE_PATH, instr(:P73_FILE_PATH, '/', -1) +1)
            and OBOB_UID = :P73_OBOB_UID;
            INSERT INTO ISR.ISR_ATAT_ATTACHMENT
              (ATAT_ATTACHMENT,
               ATAT_DESC,
               OBOB_UID,
               KTTR_ATAT_CLASS_UID)
            SELECT
               BLOB_CONTENT,
               substr(:P73_FILE_PATH, instr(:P73_FILE_PATH, '/', -1) +1),
               :P73_OBOB_UID,
               :P73_KTTR_ATAT_CLASS_UID
            FROM
               wwv_flow_files
            WHERE NAME = :P73_FILE_PATH;
            delete WWV_FLOW_FILES where NAME = :P73_FILE_PATH;
            :F101_DUPLICATE_FILE := 'NOT_DUPLICATE';
   END IF;
END IF;
END;

Hi Scott S.
This is how our DADS are setup;
                <Location /pls/ISR01TS_htmldb>
                 SetHandler pls_handler
                 Order deny,allow
                 Allow from all
                 AllowOverride None
                 PlsqlDatabaseUsername      HTMLDB_PUBLIC_USER
                 PlsqlDatabasePassword      @xxxxxxxxxxxxxxxxx=
                 PlsqlDatabaseConnectString apus:1521:ISR01TS.world ServiceNameFormat
                 PlsqlDefaultPage           htmldb
                 PlsqlDocumentTablename     wwv_flow_file_objects$
                 PlsqlDocumentPath          docs
                 PlsqlDocumentProcedure     wwv_flow_file_manager.process_download
                 PlsqlAuthenticationMode    Basic
                 PlsqlNLSLanguage           AMERICAN_AMERICA.US7ASCII
                 PlsqlMaxRequestsPerSession 1
                </Location>
                <Location /pls/ISR01TS>
                 SetHandler pls_handler
                 Order deny,allow
                 Allow from all
                 AllowOverride None
                 PlsqlDatabaseConnectString apus:1521:ISR01TS.world ServiceNameFormat
                 PlsqlDefaultPage           htmldb
                 PlsqlDocumentTablename     wwv_flow_file_objects$
                 PlsqlDocumentPath          docs
                 PlsqlDocumentProcedure     wwv_flow_file_manager.process_download
                 PlsqlAuthenticationMode    Basic
                 PlsqlNLSLanguage           AMERICAN_AMERICA.US7ASCII
                </Location>
                <Location /pls/ISR01DV_htmldb>
                 SetHandler pls_handler
                 Order deny,allow
                 Allow from all
                 AllowOverride None
                 PlsqlDatabaseUsername      HTMLDB_PUBLIC_USER
                 PlsqlDatabasePassword      @xxxxxxxxxxxxxxxxxxxxx=
                 PlsqlDatabaseConnectString apus:1521:ISR01DV.world ServiceNameFormat
                 PlsqlDefaultPage           htmldb
                 PlsqlDocumentTablename     wwv_flow_file_objects$
                 PlsqlDocumentPath          docs
                 PlsqlDocumentProcedure     wwv_flow_file_manager.process_download
                 PlsqlAuthenticationMode    Basic
                 PlsqlNLSLanguage           AMERICAN_AMERICA.US7ASCII
                </Location>
                <Location /pls/ISR01DV>
                 SetHandler pls_handler
                 Order deny,allow
                 Allow from all
                 AllowOverride None
                 PlsqlDatabaseConnectString apus:1521:ISR01DV.world ServiceNameFormat
                 PlsqlDefaultPage           htmldb
                 PlsqlDocumentTablename     wwv_flow_file_objects$
                 PlsqlDocumentPath          docs
                 PlsqlDocumentProcedure     wwv_flow_file_manager.process_download
                 PlsqlAuthenticationMode    Basic
                 PlsqlNLSLanguage           AMERICAN_AMERICA.US7ASCII
                </Location>We are accessing the DAD that does not use the HTMLDB_PUBLIC_USER. This causes the browser to prompt for a login. We enter a username and password that is a valid database account. If the account has the DBA role it works if it does not have the DBA role it fails.
This is how our Authentication is set in both Development and Test
Authentication Schemes    Create Scheme > 
Edit Name Description Flow Chart Status
DATABASE Use database authentication (user identified by DAD).  (current)
HTML DB Use internal HTML DB account credentials and login page in this application.  make current
  row(s) 1 - 2 of 2  

Similar Messages

  • Reporting Services Point - possibly permissions issue

    I'm having a really hard time configuring a working reporting services point in my test SCCM 2012 R2 environment and was hoping someone might be able to help me work out what's gone wrong.
    My servers are WS2008 R2.  SQL Server 2008 R2 is installed on the primary site server and holds the site database.  I installed SSRS onto a separate site server and added it as a reporting services point.  This worked, and I see the list of
    reports in the SCCM admin console.  However, when I try to run a report - either from the console or via web browser - I get this message:
    The default value expression for the report parameter 'usertokensids' contains an error.  There are no logon servers available to service the logon request. (rsRuntimeErrorInExpression)
       at Microsoft.Reporting.WinForms.ServerReportSoapProxy.OnSoapException(SoapException e)
       at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute[TReturn](RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod)
       at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID)
       at Microsoft.Reporting.WinForms.ServerReport.EnsureExecutionSession()
       at Microsoft.Reporting.WinForms.ServerReport.SetParameters(IEnumerable`1 parameters)
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerWindowsForms.SetParameterValues_DoWork(Object sender, DoWorkEventArgs e)
    SMSAdminUI.log shows this message:
    [25, PID:3096][06/12/2014 11:24:05] :[fqdnofprimaryserver] : The request failed with HTTP status 503: Server Error.
    Now, the reason I think this is a permissions issue is because srsrp.log on the Reporting Point server shows this:
    (!) Error retrieving folders - [Login failed for user 'domain\reportingservercomputername$'.].
    (I've removed the actual name here, obviously.)
    I'm really puzzled about what's going on here, what is trying to authenticate with the SSRS server's machine credentials, and what for.  Looking in SQL Server Management Studio on the primary site server which hosts the SQL database, I can see that
    the account has a login listed and it has its default schema listed as DBO.  On the SSRS server, in Reporting Services Configuration Manager, the Report Server Service Account is set to a dedicated domain user account.  The Current Report Server
    Database Credential is set to my own Windows login using Current User - Integrated Security - I can't seem to get it to accept the dedicated user account.
    Can anyone help me figure out what's gone wrong and how I fix it, please?  I'm by no means a SQL person, and I'm at my wit's end with this!
    Thanks,
    M

    The plot thickens.
    The SSRS server has these:
    "The report server has detected a possible denial of service attack. The report server is dropping requests for service from the IP address 192.168.113.163" (this is the IP address of the primary site system, which hosts the SQL database)
    and then
    "Report Server Windows Service (MSSQLSERVER) cannot connect to the report server database"
    The primary site system, meanwhile, has got thousands of these:
    "Login failed for user 'DOMAIN\SSRSSERVERNAME$'. Reason: Token-based server access validation failed with an infrastructure error. Check for previous errors. [CLIENT: 192.168.113.164]" (that's the IP of the SSRS server)
    The Windows firewall is off for both systems.  They're on an isolated test network.  I still don't understand where the setting is that tells it to make SQL queries using the SSRS server's machine account, rather than the dedicated service account
    I created.
    Any more ideas?  Thanks for your help so far - I really appreciate it!

  • How do I migrate from one user to another to resolve sleep/permissions issues?

    My MacBook Pro's been having several issues, mainly with waking from sleep. I've tried Repairing Permissions, Repair Disk, running tools like OnyX and Drive Genius, but they can't find any issues. I checked the Console log, and there was some sort of denial from displaying the login window after I woke up from sleep.
    Initially I thought this had to do with some of my peripherals being plugged in when I already had the lid closed; the Mac would wake up, not realize the lid was closed, and never go back to sleep. Nothing--keyboard or trackpad touches--would wake the machine up. I'd have to hard reset by holding the Power button on.
    I had an Apple Genius suggest that I create a new user and test it out with the (same) default sleep settings as the buggy user account. It wakes up from sleep lightning fast, and has thus far never had any issues.
    I'm leaning toward sticking with this new user and migrating over my things bit by bit, to try and avoid potential permissions issues. But since I don't know where the source of this sleep problem lies, how should I go about it?
    I've read through Pondini's Transfer Guide here http://pondini.org/OSX/Transfer.html, but I'm just wondering where people would start, knowing that the machine has had permissions issues with some files. (The permissions issues, btw, I believe were caused by a mangled Time Machine restore. I replaced my internal HD with another one, but the Time Machine/Migration Assistant restore wasn't complete. I did it a second time from within the user account that got created, then tried to delete the malformed one and rename the complete one, but that's when the issues started.)

    I wasn't intending to move the entire home folder, rather, moving things like what's inside my Documents folder in chunks.
    From what I read, tracking down the origin of sleep/wake problems on a computer is notoriously hard, especially if Disk Utility and similar tools don't give any clues during Repair Disk or Repair Permissions. Creating the new user seemed to help, but I don't know why that alone would "fix" anything, so I haven't moved any files as of yet nor done anything with the new user account.
    Trying to move the things from my Library folder to my desktop also seems a bit risky; it's hidden in Lion and Mountain Lion because a lot of system files are there, right? Wouldn't moving them cause problems, not just help me find what file/folder (if any) could be the culprit?

  • "screen shot can't be saved" and other permissions issues

    After having my iMac at the Apple Store for four days solving a problem with "quit unexpectedly" issues with all Apple built-in Apps on OS X Yosemite, I got the machine back with those problems solved.  It involved re-installing OS X and restore files from backup.  I thought all was well; the Genius Bar dude showed me that it's fixed. He said it took so long because of bizarre permissions issues he'd never seen before.
    Now that I've lugged this 40lb machine back home (after verifying the fixes in the store) I now find that several (other) functions don't work.  When I try to do a screenshot, I get this message:"Your screen shot can't be saved.  You don't have permission to save this file in the location where screen shots are stored."  Message could have been more helpful; the "location" is the desktop.  Pretty descriptive, though.  Seems I can't save anything to the desktop.
    I tried creatng a folder on the desktop.  Got this message: "Finder wants to make changes. Type your password to allow this".  Type password and new folder appears.  Drag the new folder to the trash, get same message..
    I tried copying a file from a network drive to the desktop. I get this dialog: "Modifying Desktop requires and administrator name and password.  I clicked "authenticate" and after a 3 minute delay (with "Preparing.." ) I get this dialog; "Finder wants to make changes.  Type your password to allow this".  I type the password and the file appeared on the desktop.  Before the work at the Apple Store, this never happened.  BTW I have only one user account and it's marked "Allow user to administer this computer".  Thinking something might be goofy with the pw, I changed it (took 3 minutes to do, oddly) and rebooted. No joy. Same thing happens when I try to drag something from the desktop to the trash.  Long time "moving" message followed by having to provide and admin pw.
    I tried to save a Safari attachment to the Downloads folder and got this message: "Safari could not download the file xxxxx because there is not enough free disk space".  Since I have more than 600GB of available space, I think the message is wrong and that it's really a permission issue with the Downloads folder.
    Tried to reset the password again.  Click to unlock the Users & Groups panel, get "System Preferences is trying to unlock Users & Groups preferences.  Type your password to allow this".
    All this tells me that somehow Yosemite is in "nag" mode (reminiscent of Windows Vista.
    Any ideas?
    Chaz

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally 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. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in 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.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup 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.

  • Permissions Issue, Colour Wheel, Hard Drive Issue??

    Hi!
    I have had issues with my mid 2009 MBP recently and I'm wondering what the best way to fix them would be. 
    First off, I have some major permissions issues with my accounts.  I am using 3 different users regualrly on the same machine and needed to access files from the home folder so I changed them a long time ago, and am not sure how to fix that.  I have repaired the permissions countless times in the disk utility and it seems like there's always loads more to do each time.  When I varify the disk, it says its all okay.
    Secondly, I have had the machine freeze on me several times while doing very little on it.  This happened awhile ago, and thought that it was just the permisions thing and so I did that again, and it started working better, for awhile.  It would go a few days or weeks before doing the same thing, sometimes not even getting past the apple logo on startup before freezing.  This makes me think it may be a hard drive issue???????
    This morning, I tried dozens of times to boot, with no success at all.....  until about the 25th time when it miraculasly booted.  I have run permissions repair a few more times and it seems to be working okay at the moment, but the problem seems to be happening more often over time. 
    To complicate matters, I am traveling at the moment and will not be home for several months.  I purchased an external harddrive last night and was able to successfully back up my data. 
    Question 1: Is it the permissions that are causing these problems, or is it related to something else.  The computer seems to work fine when its working, and then once in awhile, decides its not going to do anything. 
    Question 2:  Would upgrading to Lion (currently running 10.6.8) fix the permissions issues or just carry them forward?  I would like to consolidate the 3 users into one, if that would solve it.  Does the migration utility preserve permissions or does it give you a brand new start?
    Question 3:  If neither solving the permissions or the OS upgrade would fix the problem and it does need a new harddrive, is it possible to buy one and install it myself?  I do not have apple care left on this machine and am on a very tight budget.  I am used to taking things apart and all that as part of my job and it seems simple enough.  Where can you buy a replacement?? 
    Hopefully someone out there will be able to help me out on this one. 
    Cheers!!!!
    Brian

    bgroot422 wrote:
    First off, I have some major permissions issues with my accounts.  I am using 3 different users regularly on the same machine and needed to access files from the home folder so I changed them a long time ago, and am not sure how to fix that.  I have repaired the permissions countless times in the disk utility and it seems like there's always loads more to do each time.  When I verify the disk, it says its all okay.
    Disk Utility permissions are separate from User account permissions.
    This link is how to fix them
    https://discussions.apple.com/thread/2181549?start=0&tstart=0
    Disk Utility will always show something to be needing repair, but that's ok
    Apple supoort doc.
    https://support.apple.com/kb/TS1448?locale=da_DK
    Verify Disk is good, that's a good thing.
    To complicate matters, I am traveling at the moment and will not be home for several months.  I purchased an external hard drive last night and was able to successfully back up my data. 
    Your data is backed up, hopefully not with TimeMachine alone, but if you did, then get another drive and backup data manually to that as well. If the TM drive gets messed up, it's a pain to get your data off of it.
    Question 1: Is it the permissions that are causing these problems, or is it related to something else.  The computer seems to work fine when its working, and then once in awhile, decides its not going to do anything.
    Well you could call Apple for replacement 10.6.x disks, and just reinstall 10.6 and bundled programs, but this can kick out kext files out of the /System/Library/Extensions folder installed by some third party software.
    This method fixes OS X, but doesn't touch your files or most programs.
    Nor will this method fix your Users accounts if the issue is in there.
    A creation of a new user, then deletion of the others, return files from backup (set permissions) will fix User folder issues if the above user permissions fix doesn't work.
    (Of course you could wipe the drive from the 10.6 disk, but you have to install all software again)
    Would upgrading to Lion (currently running 10.6.8) fix the permissions issues or just carry them forward?
    No, you don't want to install Lion, it won't fix those issues in User folders, not only that Lion has it's own issues and doesn't work with a lot of older software etc.   No use clusterfscking a already bad situtation when it's seems it's only localized to the User accounts.
    I would like to consolidate the 3 users into one, if that would solve it.
    Yes that could very nicely and tidy up things in the process.
    What you do is transfer all files to one regular powered storage hard drive.
    (Don't use/disconnect the TimeMachine drive for this as it preserves the users seperated and you don't want all those users back restoring  with Migration Assistant)
    Create the New User on the machine as Admin, log into it and delete all the other Users, transfer all your files back from the regular storage drive, changing all the permissions to yourself before placing them into their respective folders as they will have three different permissions.
    Notes:
    If you have a extensive iTunes playlists on one User (say #1), then create the new user with that same name (will require some work, create User 4, delete Users 1-3, reboot, create User 1, delete User 4) then transfer your iTunes folder to Music of that User 1 (same name as before). This will preserve the pathnames of your song locations and your playlists will be preserved.
    (before you ask, no you can't combine playlists)
    Also if you have photo's in iPhoto Library, you have to right click on it and "show package contents" inside is a folder called Originals, copy them out and import into the iPhoto of the User #1.
    Does the migration utility preserve permissions or does it give you a brand new start?
    Yes it preserves user permissions, no it doesn't give you a brand new start. Only a fresh install, creation of new users and then just transferring of files does that.
    Nothing about TimeMachine or Migration Assistant gives one a "fresh start", it's if hosed, so is your restore.
    If you want that sort of pristine protection, you need to clone your ideal boot partition/drive using Carbon Copy Cloner (free/donationware) occasionally as a hold the option key bootable drive, then you can erase and reverse clone the pristine saved clone.
    One can also update the clone on occasion, this way keeping the clone pristine.
    I maintain 3 clones time dated, even have my boot drive partitioned 50/50 and auto-cloned, this way I have two boot partitions on the road and two externals at home.
    I never use TimeMachine, it's not bootable (well it is on 10.7.2 only to restore though)

  • Can't Customize, Change Settings, or Move Files -- Permissions Issue?

    Hey all:
    Just got a new MBP w/ 10.5.2. Successfully migrated most of my user settings and applications from the old Tiger HDD (old laptop died a horrible death).
    The problem is that aside from everything appearing to be the same, I'm finding that I don't have the access to do a whole lot with my own files. Several different problems that "seem" like they're stemming from the same accessiblity/permissions issue include:
    Intermittent trouble downloading files with Firefox's default download tool.
    Complete inability to change desktop background.
    Programs fail to remember setting changes after quit and re-launch.
    System Preferences do not remember changes to settings.
    Certain files can not be moved, renamed, opened, or deleted w/o admin authorization, or in some cases, at all.
    The problems started after I migrated the old system over after having an interim user account running for a few days prior. After migrating, I attempted to reconcile the two together and that's when things got hairy.
    In the past couple days, I have tried:
    1.) Archive and Install (preserving User settings - now down to just one admin).
    2.) Changing permissions to system read/write, admin read/write, everyone read only for the entire /User directory, applied to all enclosed items.
    3.) Repairing Permissions (which took about 10 minutes!)
    I'm at the end of my rope here. I'm stuck with my OS acting the way it wants to, which is the exact way it was after being archived and reinstalled, no matter what changes I try to apply in the Finder, Preferences, or in any programs.
    I'm thinking maybe a clean install and then migrating over the backup I just made on my external HD will get me my stuff without whatever troublesome thing is freezing me out, but I'm not really sure, and I don't really understand much about command lines in Terminal.
    Does anyone have any ideas? Many thanks.

    Oddly enough I just had a spastic moment with a mouse click and put my Drop Box in the Trash (I keep the Delete thing in my window toolbar, which is handy, but can lead to accidents)... Since I was playing with it I noticed its absence immediately. Realized what I had done after a moment's reflection, and put it back. Which just goes to confirm something I ALWAYS do before I empty the Trash: open it and see what's in there first, then click empty.
    As to whether removing ACLs is for advanced users only: well, up until Leopard that's the way it always was, there were, until now, NO ACLs on the users folders. So should everyone have been an advanced user until now? Did you ever delete a folder in Jaquar or Panther or Tiger and empty your Trash without checking? Indeed, if you use Time Machine, available in Leopard but not before, you are already protected from such goofs, since you can recover things accidently deleted using Time Machine, so actually you are in better shape with Leopard than ever before, WITHOUT the ACLs if you use Time Machine. Until Leopard there was neither belt nor suspenders to automatically protect you from losing data. Leopard supplies both.
    The situation reminds me of the continuing debate about virus protection on the Mac. Personally, I have seen various anti-virus programs cause all sorts of problems, and it has yet to protect any Mac system from anything (since as yet there are no Mac system viruses). Anti-virus software may have saved some users of Microsoft Office who share files with Windows users from getting a macro virus in their Word docs, and it might have kept a Mac user from passing on some email virus to some Windows users by forwarding stuff from the Internet. But still.... if you don't use MS Office or forward email junk, you get no benefit and may get some problems.
    Same seems to me to be true of ACLs: it is possible to get a benefit (you can't accidently toss your Movies folder and lose data, assuming you mindlessly empty your Trash and don't have a backup), but an awful lot of people are having an awful lot of problems.
    Francine
    Francine
    Schwieder

  • Permissions Issues

    I am sure that most of you who read these forums already know about recent updates that create permissions issues. I was not sure how to deal with them and needed to verify for myself what was causing them and to convince myself that they are benign. I just wanted to share the evidence with you that I monitored over a day. Specifically, what is causing these benign permissions errors are three Apple updates: Front Row Update (2.1.7) 13.3 MB (worst offender), iTunes (8.1) 65.4 MB, and iLife Support (9.0.1) 3.7 MB. I assume Apple has heard about this by now. Here are my lengthy test results:
    OSX 10.5.0 is installed.
    03-21-2009 12:51 A.M.
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Permissions repair complete
    (A disk image of the hard drive is made during this time, from the install DVD)
    03-21-2009 1:49 AM
    OSX 10.5.1 Update is installed.
    03-21-2009 1:55 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    03-21-2009 1:58 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    03-21-2009 2:18 AM
    OSX 10.5.2 Update is installed.
    03-21-2009 2:22 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    (Adobe Flash Player was installed).
    03-21-2009 3:06 AM
    OSX 10.5.3 Update is installed.
    03-21-2009 3:34 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions differ on "Library/Internet Plug-Ins/Flash Player.plugin/Contents/Resources/English.lproj/Localized.rsrc", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "Library/Internet Plug-Ins/flashplayer.xpt", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "Library/Internet Plug-Ins/Flash Player.plugin/Contents/Resources/ko.lproj/Localized.rsrc", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "Library/Internet Plug-Ins/Flash Player.plugin/Contents/Resources/zh_CN.lproj/Localized.rsrc", should be -rw-rw-r-- , they are -rw-r--r-- .
    Permissions differ on "Library/Internet Plug-Ins/Flash Player.plugin/Contents/Resources/zh_TW.lproj/Localized.rsrc", should be -rw-rw-r-- , they are -rw-r--r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions repair complete
    03-21-2009 3:41 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    03-21-2009 4:07 AM
    OSX 10.5.4 Update is installed.
    03-21-2009 4:16 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions repair complete
    03-21-2009 4:20 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    03-21-2009 4:40 AM
    OSX 10.5.5 Update is installed.
    03-21-2009 5:08 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 5:13 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    03-21-2009 6:00 AM
    OSX 10.5.6 Update is installed.
    03-21-2009 6:11 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 6:16 AM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    ACL found but not expected on "private/var/root/Library/Preferences".
    ACL found but not expected on "private/var/root/Library".
    ACL found but not expected on "private/var/root".
    Permissions repair complete
    (Long break)
    03-21-2009 5:57 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Airport Utility (5.3.2) 10.5 MB
    Airport Utility Software Update (5.4.1) 19.5 MB
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Java For Mac OS X 10.5 Update 2 (1.0) 136 MB
    Safari (3.2.1) 39.9 MB
    Security Update 2009-001 (1.0) 44.1 MB
    This Update was installed:
    Security Update 2009-001 (1.0) 44.1 MB
    (auto reboot)
    03-21-2009 6:30 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 6:37 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 6:38 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Airport Utility (5.3.2) 10.5 MB
    Airport Utility Software Update (5.4.1) 19.5 MB
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Java For Mac OS X 10.5 Update 2 (1.0) 136 MB
    Safari (3.2.1) 39.9 MB
    This Update was installed:
    Java For Mac OS X 10.5 Update 2 (1.0) 136 MB
    (manual reboot)
    03-21-2009 7:40 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 7:44 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 7:45 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Airport Utility (5.3.2) 10.5 MB
    Airport Utility Software Update (5.4.1) 19.5 MB
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Safari (3.2.1) 39.9 MB
    Java for Mac OS X 10.5 Update 3 (1.0) 2.9 MB
    This Update was installed:
    Java for Mac OS X 10.5 Update 3 (1.0) 2.9 MB
    (manual reboot)
    03-21-2009 7:54 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 8:06 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 8:08 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Airport Utility (5.3.2) 10.5 MB
    Airport Utility Software Update (5.4.1) 19.5 MB
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Safari (3.2.1) 39.9 MB
    This Update was installed:
    Airport Utility (5.3.2) 10.5 MB
    (manual reboot)
    03-21-2009 8:16 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 8:21 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 8:33 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Airport Utility Software Update (5.4.1) 19.5 MB
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Safari (3.2.1) 39.9 MB
    This Update was installed:
    Airport Utility Software Update (5.4.1) 19.5 MB
    (manual reboot)
    03-21-2009 8:47 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 8:50 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 8:52 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 9:00 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Airport Client Update 2009-001 (1.0) 1.8 MB
    Safari (3.2.1) 39.9 MB
    This Update was installed:
    Airport Client Update 2009-001 (1.0) 1.8 MB
    (auto reboot)
    03-21-2009 9:06 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 9:10 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 9:15 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    Safari (3.2.1) 39.9 MB
    This Update was installed:
    Safari (3.2.1) 39.9 MB
    (auto reboot)
    03-21-2009 9:24 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions repair complete
    03-21-2009 9:26 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions repair complete
    03-21-2009 9:31 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB
    This Update was installed:
    iLife Support (9.0.1) 3.7 MB
    (auto reboot)
    03-21-2009 9:40 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions repair complete
    03-21-2009 9:44 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 9:46 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    CONCLUSION: This is one of Apple's infamous permissions error that just "has to be ignored" and will not get fixed.
    03-21-2009 9:53 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    QuickTime (7.6) 75.1 MB
    iTunes (8.1) 65.4 MB
    This Update was installed:
    QuickTime (7.6) 75.1 MB
    (auto reboot)
    03-21-2009 10:01 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 10:05 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 10:15 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    iTunes (8.1) 65.4 MB
    Front Row Update (2.1.7) 13.3 MB
    This Update was installed:
    iTunes (8.1) 65.4 MB
    NOTES:
    iTunes Description Reads:
    iTunes 8.1 is now faster and more responsive. You will enjoy noticeable improvements when working with large libraries, browsing the iTunes Store, preparing to sync with iPod or iPhone, and optimizing photos for syncing.
    In addition, iTunes 8.1 provides many other improvements and bug fixes, including:
    • Supports syncing with iPod shuffle (3rd generation).
• Allows friends to request songs for iTunes DJ.
• Adds Genius sidebar for your Movies and TV Shows.
• Improves performance when downloading iTunes Plus songs.
• Provides AutoFill for manually managed iPods.
• Allows CDs to be imported at the same sound quality as iTunes Plus.
• Includes many accessibility improvements.
• Allows iTunes U and the iTunes Store to be disabled separately using Parental Controls.
    For information on the security content of this update, please visit this website: http://support.apple.com/kb/HT1222
    Front Row Update Reads:
    This Front Row update provides improved iTunes 8.1 compatibility.
    (This implies that iTunes 8.1 should be installed BEFORE Front Row Update 2.1.7)
    (manual reboot)
    03-21-2009 10:29 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/LaunchDaemons/com.apple.usbmuxd.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 10:39 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 10:55 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 10:59 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    CONCLUSION: This is one of Apple's infamous permissions error that just "has to be ignored" and will not get fixed.
    03-21-2009 11:00 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    Front Row Update (2.1.7) 13.3 MB
    This Update was installed:
    Front Row Update (2.1.7) 13.3 MB
    (Manual reboot)
    03-21-2009 11:12 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/DVD.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSettings.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSources.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Movies.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Music.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Photos.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Podcasts.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/TV.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/BackRow.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Group differs on "private/etc/cups", should be 0, group is 26.
    Permissions differ on "private/var/spool/cups/cache/rss", should be drwxr-xr-x , they are drwxrwxr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/CodeResourc es", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/BlackAndWhiteEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/CubeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DissolveTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DropletTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FadeThroughBlackTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransitionSmall.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PageFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PushTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/RevealTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/SepiaEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/TwirlTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/WipeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions repair complete
    03-21-2009 11:22 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/DVD.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSettings.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSources.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Movies.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Music.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Photos.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Podcasts.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/TV.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/BackRow.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/CodeResourc es", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/BlackAndWhiteEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/CubeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DissolveTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DropletTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FadeThroughBlackTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransitionSmall.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PageFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PushTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/RevealTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/SepiaEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/TwirlTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/WipeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    03-21-2009 11:28 PM
    Disk Permissions Repaired. Results:
    Repairing permissions for “Mac”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/DVD.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSettings.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSources.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Movies.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Music.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Photos.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Podcasts.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/TV.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/BackRow.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/CodeResourc es", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/BlackAndWhiteEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/CubeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DissolveTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DropletTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FadeThroughBlackTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransitionSmall.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PageFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PushTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/RevealTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/SepiaEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/TwirlTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/WipeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions repair complete
    CONCLUSION: This is one of Apple's infamous permissions error that just "has to be ignored" and will not get fixed.
    03-21-2009 11:39 PM
    SOFTWARE UPDATE RUN
    Updates Listed:
    MESSAGE: "Your software is up to date."
    FINAL CONCLUSION:
    The following installers create unusual Permissions issues that do not seem to go away but seem to not be a danger.
    Front Row Update (2.1.7) 13.3 MB (worst offender)
    iTunes (8.1) 65.4 MB
    iLife Support (9.0.1) 3.7 MB

    GWD2008,
    I too am having permissions issues with Front Row, iTunes, and iLife it happen just after the update. However researching into the problem they are just shortcuts to an original files. Which on the original files Permissions are correct and the reason the permissions are wrong on the shortcuts is because of the little l. I was unable to fix the permission error myself in Terminal and in Finder. And in my opinion as long as the programs are running with no problems its nothing to be to concerned over. As for ACL or SUID files you can just ignore according to apple. See this link: http://support.apple.com/kb/TS1448
    Resolution
    You can safely ignore any "SUID file" or "ACL found but not expected..." message. These messages are accurate but are not a cause for concern.

  • Updating link to Word Doc is causing a permissions issue

    Hi.  I am attempting to update a link to a Word file, and it is causing a permissions issues in Word when I try to open the Word document back up while the InDesign file is still open.
    Is there any way to link to a Word document that can be worked on while the InDesign file is being worked on?  I think I can use buzzword as an alternative, but I'm looking for the easiest possible solution.
    Thanks!
    Alicia

    Word checks for locked files. In that if another app is using the file, you can not open the file until the other app closes the file. It does this to make sure word has the lastest version of the file. This is partly due to word being using in an office environment were multiple people can be working on the same document.
    Since word is fairly quick to open. You could use the edit original icon in the links panel of InDesign. Make your changes in word once the document opens, then use the keyboard shortcuts ctrl-s to save and alt-F4 to close word.

  • Permissions Issues or Just A Midlife Crisis?

    A little background:  All of my computers are running Windows 8.1 Pro.  I have an HP Officejet Pro 8600 Plus Printer.  I'm trying to setup scan-to-computer so I can scan from the printer's front panel to any computer on the network.
    Here's the dilly:  I have two laptops which I installed the full feature driver on from HP's website.  I only use these computers with an administrator account.  There are no other user accounts on the computer.  Works flawlessly.  I'm able to login and scan something from the printer's control panel to the computer right away.
    Here's where it gets a little hairy:  I have two desktops that I've installed the same full feature driver on from HP's website.  On each desktop there is an administrator account and two standard user accounts.  I login with the administrator account.  The software works flawlessly.  I'm able to scan-to-computer right away with no problems at all.  However, when I login to either standard user account I get the following "Scan to Computer is currently unavailable" dialog box everytime I restart the computer or logout and log back in:
    During this time I'm unable to scan anything from the printer control panel to the computer as the printer will not find the computer on the network.  If I leave the dialog box up without dismissing it the message automatically changes to the following "Scan to Computer is enabled" within about a minute or so:
    The dialog box stays up and I have to dismiss it everytime but after it changes to "scan to computer is enabled" I'm able to scan flawlessly to the standard user account without problems.  My question is how do I prevent this dialog box from happening?  Is it something on my end that needs fixed or a bug in the software that only HP can fix?  It seems like maybe I'm having a permissions issue somewhere since this dialog box doesn't pop up for the computer administrator accounts and only pops up for standard user accounts.  

    Thanks for all your responses and help on this.  I was able to resolve this issue on my own in case anyone was wondering (but you probably weren't judging by all your chattiness).
    But in case you were here's what I did:  From each standard user account I had to open the printer software then click on "Utilities" at the top.  From there I clicked on "Printer Setup & Software" and was prompted for the administrator password which I entered.  Then click "Connect a New Printer" and follow the steps to connect a new printer.  Then I restarted the computer and the Scan to Computer dialog boxes for the standard users were gone and I could scan from the printer's front panel!

  • Permissions Issues plague remote access attempts

    I have a couple of networked IMacs in my house. They readily see and connect to each other via OS 10.5.6, being connected to the same router. Usually there are no problems copying files from one Mac to the other or saving changes in work to a second Mac
    EXCEPT...... perpetually frustrating recurrent "Permissions" barriers no matter how hard I try to give myself unrestricted access to my files on one Mac from the second one when using MS Office.
    EXAMPLE: I try to use Microsoft Office 2008 documents stored on one IMac from the 2nd IMac and am not allowed to save changes - not even when I am the owner of the accounts and documents concerned. Furthermore, these documents are opening as Read-Only even though their sharing options have been ticked on in the document settings....
    Microsoft says this is an Apple networking permissions issue and not a fault of their software. They advised me to check the appropriate "share this document" boxes within their files and this I have done. I log in as the Read/Write access owner of a given directory and still I can't save changes in MS documents unless I am operating the Mac where the file actually resides.
    Please, please, can anyone simplify the ESSENTIALS one must perform in Apple Sharing Prefs setup when trying to give one's self unrestricted access to all one's files - with full Read/Write privileges unrestricted - from a second Mac on the same local network ?

    This problem of mine tends to happen only with MS Office files. The MS Word and Excel files that always insist on opening as Read-Only (and Microsoft insisted to me this was because of an Apple Networking permissions issue !!) are within folders that in turn are within higher level folders for which the permissions ( ?? and does this not apple for the whole folder and all its enclosed files and folders ?? ) are set as "Read and Write" for me, for "others" and "everyone" as well. I figured that looked broad enough. Still, though, I am stymied from saving changes though I own the files and both computers involved !!!
    Surely Apple offers users some sort of stripped down (SIMPLE !!!) way of opening up read/write access as broadly as possible for any given networked folder whose own user and owner wishes it to have these broadest possible access permissions - so that surely I as the owner should be able to access.
    I have repeatedl;y repaired permissions but this does not seem to help. I have noticed that sometimes some individual MS documents within a folder whose folder permissions have been opened up have not recognized the broader permissions granted for the whole folder and still have bizarre restrictions.
    Don't all the files within a folder reflect automatically the permissions set for the folder itself ???
    If not, why bother opening up a folder ??

  • HT2963 Can't set JPGs to open in Photoshop not Preview- forum suggested this is Permissions issue

    I've repeatedly used "Open with" > "Other" > "Adobe Photoshop CS4" > "Always Open With" and it works only with that particular JPG. In a Photoshop forum, someone suggested this is a Permissions issue. Is it? If so, how do I fix it? (I have no UNIX-type experience. This is Mavericks OS X 10.9.2.) Thanks to anyone who can help!

    Control (right) - click on the file and select Get Info from the contextual menu:
    In the Info window select Photoshop as the app to open it with and click on the Change All button.

  • Permissions Issue on Web Subdirectories

    I have several complex websites to set up on Mac OS X and I have created a subdirectory structure under /library/webserver/documents so that i can organise my site contents. The new structure is:
    /library/webserver/documents/sites/sitename1, sitename2, sitename3 etc
    In server admin I have set up a domain name and a realm but i cannot see my subdirectories when i try to choose the folder containing the web pages - the folder "sites" doesnt appear in the list. I can specify it but if I try to access the index page of the new site I get a security error "you do not have access to..."
    Yet the permissions seem just fine - everyone has read access and in fatc the permissions seem identical to the parent folder(s).
    Any ideas?

    I have several complex websites to set up on Mac OS X
    and I have created a subdirectory structure under
    /library/webserver/documents so that i can organise
    my site contents. The new structure is:
    /library/webserver/documents/sites/sitename1,
    sitename2, sitename3 etc
    It's a permissions issue.
    Try this in terminal:<pre>su; # Enter root password when prompted.
    mkdir /www
    mkdir /www/sitename1
    mkdir /www/sitename2
    mkdir /www/sitename3
    chmod -R 0775 /www
    chown -R root:www /www</pre>Place your site contents in these directories and adjust your sites in SA to point to these paths.
    In server admin I have set up a domain name and a
    realm but i cannot see my subdirectories when i try
    to choose the folder containing the web pages - the
    folder "sites" doesnt appear in the list. I can
    specify it but if I try to access the index page of
    the new site I get a security error "you do not have
    access to..."
    Yet the permissions seem just fine - everyone has
    read access and in fatc the permissions seem
    identical to the parent folder(s).
    Any ideas?

  • Permissions issues with multiple volumes

    I'm currently running one boot volume with Snow Leopard and one with Mountain Lion on my Mac Pro.  Due to current software compatibility-related issues, I need to be able to use both volumes regularly as part of my workflow for now, though I plan to transition fully to 10.8 in the next couple months.  Right now, I'm running into a permissions issue that is impeding my workflow.  When I first set up the 10.8 volume, I had access to all the folders in my main user account on the 10.6 volume.  However, yesterday I used the process described in the link below to change name of my home folder, which includes creating a new user account.  With this new user account, I find that I do not have access to user content on my 10.6 volume.
    http://support.apple.com/kb/HT1428
    I know how to change permissions in the "Get Info" window, but I'm wondering if there's a way to globally give this account the same permissions the original one had.  (Actually, I thought that was what the process in that support article was supposed to do, so perhaps I've done something wrong...)  As it is right now, if I've granted myself read and write permissions to the Documents folder, but those permissions seem to have "cascaded" inconsistently--some files and folders are still blocked, others are accessible.  Can anyone help me out with this?  For now, I'm just going to copy the files I need over, but I need a better solution.

    Anyone have any ideas?

  • Permissions Issues after java update...

    So, I noticed after I got the java update awhile back that the permissions associated with it are wrong.
    disk utility tries to repair it, claims it does, but still needs to be repaired afterwards. anybody else have this issue, so would it be normal?
    I can post the output from disk utility if you guys need it.

    It's normal. Not all permissions issues are ever resolved with any update. Unfortunately ever since 10.1.5 had permissions repair features, it never has 100% eradicated permissions issues. Though repairing permissions before and after each update helps, you'll never see a message that all permissions are repaired. As long as there aren't any other issues, I wouldn't worry about it.
    Message was edited by: a brody

  • Permissions issues w/multiple accounts

    I am running snow leopard, and have two user accounts. I have my main admin account (User 1), and a second account(User 2). I have set up the second account to run with minimal processes running, to increase cpu availability, as I use this account for audio editing. However, I like to be able to read and write to this account from my main account. The problem though, is that as soon as I set my main account (User 1) to have either read only, or read/write access to the other account (User 2), I have to type in an admin password anytime I want to move or delete anything inside user 2's account +when I'm logged into the User 2 account+. --- I'm giving my main account (User 1) access indirectly by setting the "everyone" group to read or read/write.
    I know its probably not typical to give one account, or in this case "everyone" full recursive read/write permission to another entire user directory, but it shouldn't cause problems should it? Once I set it back so that "User 2" is read/write and "everyone" is no access, I no longer have to enter an admin password to delete user 2's files when I'm logged in as user 2.

    It may suit your purposes better to partition the disk so that you have 2 separate volumes, with one for editing. There wouldn't be a permissions issues that way, or logging in or out.
    If physical security is not a concern and you really want to keep your accounts the way they are, try running chmod 666.
    Launch Terminal and type chmod 666 at the prompt, then press Return.
    Log into your second account and do the same.
    -mj

Maybe you are looking for