PastBoard error on Mavericks

Hello,
I'm using service to add item to Finder menu, it works well on 10.7 and 10.8 but on 10.9 I receive the following error:
soft name  : Failed to obtain a valid sandbox extension for item [789514] of flavor: [public.file-url] from the pastboard.
soft name  : Failed to get a sandbox extentions for item identifier (789514). The data for sandbox extension was NULL.
It looks like this line  : [pboard propertyListForType:NSFilenamesPboardType]; is no longer supported
so instead I use
CFStringRef uti = UTTypeCreatePreferredIdentifierForTag(kUTTagClassNSPboardType, CFSTR("WebURLsWithTitlesPboardType"), kUTTypeData);
                    NSArray *classes = [NSArray arrayWithObject:[NSURL class]];
  NSDictionary *options = [NSDictionary dictionaryWithObject:
                                                                                 [NSNumber numberWithBool:YES] forKey: (__bridge NSString *)uti];
                    NSArray *fileURLs =
                    [pboard readObjectsForClasses:classes options:options];
but the same error still here. Any Suggestion ?
Thanks in advance  

Link for Download & Install & Setup & Activation problems may help
-Chat http://www.adobe.com/support/download-install/supportinfo/
OR
http://forums.adobe.com/community/download_install_setup
-http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html

Similar Messages

  • Time machine backup error in Mavericks

    I"m getting backup errors in Mavericks when it tries to back up to the Backups.backupdb folder in my 3TB external backup drive.  This happens even when I turn Time Machine off! 
    This is the error I'm getting (taken from the console) when I manually start a time machine backup:
    10/26/13 9:56:39.268 AM com.apple.backupd[18160]: Starting manual backup
    10/26/13 9:56:40.826 AM com.apple.backupd[18160]: Backing up to /dev/disk2s2: /Volumes/Macbook Pro Backup 3TB/Backups.backupdb
    10/26/13 9:56:46.069 AM com.apple.backupd[18160]: Error: (22) setxattr for key:com.apple.backupd.HostUUID path:/Volumes/Macbook Pro Backup 3TB/Backups.backupdb/Macbook Pro 25 size:37
    10/26/13 9:56:46.070 AM com.apple.backupd[18160]: Backup failed with error 2: 2
    Has anyone seen this?  At this point, I haven't been able to back up anything after upgrading to Mavericks, and I really don't want to delete the backup folder and start over.
    I thought it might be a permissions problem, so I tried to use the disk utility to verify this.  I wasn't able to select verify or repair disk permissions.  When I tried to verify the disk, I got a 'Live file system repair is not supported' error.  I've never seen this before.
    Any thoughts on all of this?

    I fixed this by hard booting, then repairing the disk.  A restart didn't work. 

  • Download Error on Mavericks (mac)

    When I go to the Creative Cloud application on the desktop, I go to the Apps tab and I get "Download Error" and when I try to reload the application, the error persists. 
    I'm on a macbook running Mavericks, I've deleted the AAMUpdater (though it creates a new one every time I reload the applications) folder in ~/Library/Application Support/Adobe...  As per Re: Creative Cloud "Download Error" message , I looked in the OOBE folder and there was no opm.db, just a singe folder alias called "PDApp," which contained a pim.db, along with a bunch of other folders and files.  
    When I enabled the root user and logged into that account after restarting, I tried the Apps tab again and it was working just fine, in the root user.  But when I logged out and back into my regular account, I was still getting the download error.  I've tried uninstalling and reinstalling Creative Cloud and that didn't work. I have Photoshop and Fireworks installed, so it WAS working at some point in time... I'm out of ideas...  Help please?

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html

  • Can't open .ppt file: "out of memory" error on Mavericks

    Hello,
    I have a couple of .ppt files that can't open/import in keynote v5.3. It says "import error: out of memory". The files are pretty small, 500kb to 8mb, no videos or music, only images and plain text. I have dozens of free gb.
    This error started popping out after I updated to Mavericks a few days ago.
    Keynote works fine with other .ppt.
    The .ppt can be opened in Power Point (in a Windows PC, I don't have it installed) and with Previews.
    I read that if I update to the new iWork the old version is kept in a separate folder. Do you confirm that I can still use both the old and the new version?
    What can I do about that?
    Thanks for your help.

    This error is usually caused by a corrupt ppt file or an incompatible font.
    A quick work around is to recreate the presentation in Keynote from scratch using the images copied from the original.

  • Applescript 'Contacts' code error with Maverick

    After upgrading from MacOSX 10.6.8 to Maverick my applescripts are creating errors. One example is the following script which works fine if you run it from within the 'Applescript Editor.app' (v 2.6.1) under Maverick but creates a "Data paste section" error -1743 from the 'Contacts' app if you run the script indpendently. Any hints anyone on how I might return this script to full indpendent functionality?
    Script to load a raw address for conversion and inserting into Address Book
    Wish list
    1.    Check if 'New Address' Group already exists and if it doesn't then create one.
    2.    Provide a dialog that enables the user to specify which group to attach the new address to.
    3.    Find the new address and show it in Address Book.
    4.    Create a list of existing Groups to chose from to reduce keyboard error. --> done but the resultant window is not complete - no scroll bar becomes active.
    Problem code:
    set theFiles to (every file of folder addressesFolder) as alias list
    global ABactive, aExists
    property testText : "http://address-parser.com"
    property newGroup : "New Addresses" --> Default group for new address additions
    property aPrefix : ""
    property aFirstName : ""
    property aMiddleName : ""
    property aLastName : ""
    property aSuffix : ""
    property aPosition : ""
    property aDepartment : ""
    property aCompany : ""
    property aCompany2 : ""
    property aStreet : ""
    property aStreet2 : ""
    property aPostbox : ""
    property aPlace : ""
    property aPostPlace : ""
    property aState : ""
    property aZip : ""
    property aPostboxCode : ""
    property aCountry : ""
    property aPhone : ""
    property aPhone2 : ""
    property aMobile : ""
    property aFax : ""
    property aEmail : ""
    property aWebsite : ""
    property aNote : ""
    set newline to ASCII character 10
    -- Select the desired file
    try
        set addressFile to (choose file with prompt "Choose an address file:" of type {"public.text"} without invisibles) as text
        --    set addressFile to (choose file with prompt "Choose an address file:" of type {"public.text"} default location addressesFolder without invisibles) as text
        -- note the data type set for 'addressFile' is 'text'
    on error number -128
        -- User pressed 'Cancel' button
        return
    end try
    set AppleScript's text item delimiters to {":"}
    set fileName to last text item of addressFile
    set AppleScript's text item delimiters to {""}
    (* If there is an error while processing the address file, delay it just long enough to close the file access. Otherwise continue. *)
    set addressFileReference to open for access addressFile
    -- 'addressFileReference' is the 'returned access number'
    -- Check first to see whether the file was created with output from the expected source
    try
        set wholeFile to read addressFileReference as text
        if (offset of testText in wholeFile) is equal to 0 then
            display dialog "File chosen is:" & return & fileName & return & return & "This file does not appear to contain output from the 'http://www.address-parser.com' demo page." buttons {"Cancel"} default button 1 with title "Error!" with icon stop
        end if
    on error number -128
        -- User pressed 'Cancel' button
        close access addressFileReference
        set wholeFile to ""
        return
    end try
    close access addressFileReference
    set wholeFile to ""
    -- Reopen file (need to clarify why EOF error if two read calls made with file open).
    set addressFileReference to open for access addressFile
    try
        set AppleScript's text item delimiters to {""}
        -- Read address file contents in 'addressFileContents' as a list delimited by paragraph and tab.
        set x to paragraphs of (read addressFileReference as text)
        set addressFileContents to {}
        set AppleScript's text item delimiters to tab
        repeat with i from 1 to count x
            set addressFileContents's end to x's item i's text items
        end repeat
        set AppleScript's text item delimiters to {""}
        repeat with i from 1 to count of addressFileContents
            if (item i of addressFileContents) is not {} then
                --Every line must be checked as there is no set order
                if text item 1 of (item i of addressFileContents) is "Prefix= " then ¬
                    set aPrefix to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "First name= " then ¬
                    set aFirstName to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Middle name= " then ¬
                    set aMiddleName to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Last name= " then ¬
                    set aLastName to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Suffix= " then ¬
                    set aSuffix to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Position= " then ¬
                    set aPosition to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Department= " then ¬
                    set aDepartment to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Company= " then ¬
                    set aCompany to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Company - line 2= " then ¬
                    set aCompany2 to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Street address= " then ¬
                    set aStreet to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Street address - line 2= " then ¬
                    set aStreet2 to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Postbox address= " then ¬
                    set aPostbox to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Place name= " then ¬
                    set aPlace to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Post place name= " then ¬
                    set aPostPlace to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "State/Region/Province= " then ¬
                    set aState to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "ZIP/Postal code= " then ¬
                    set aZip to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Postal code of postbox= " then ¬
                    set aPostboxCode to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Country= " then ¬
                    set aCountry to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Phone= " then ¬
                    set aPhone to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Phone 2= " then ¬
                    set aPhone2 to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Mobile phone= " then ¬
                    set aMobile to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Fax= " then ¬
                    set aFax to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Email= " then ¬
                    set aEmail to text item 2 of (item i of addressFileContents)
                if text item 1 of (item i of addressFileContents) is "Web site= " then ¬
                    set aWebsite to text item 2 of (item i of addressFileContents)
                --Collect unrecognised elements and place them in the 'Note' field
                if text item 1 of (item i of addressFileContents) contains "Unrecognized values:" then
                    set i to i + 1
                    set aNote to "Additional address bits:"
                    repeat with i from i to count of addressFileContents
                        --display dialog "Note text reads:" & return & "aNote:" & tab & "'" & aNote & "'" & return & "Line #:" & tab & i & return & (item i of addressFileContents) as text default button 1 with title "Debug Dialog"
                        if (item i of addressFileContents) is not {} then
                            if item 1 of (item i of addressFileContents) is "" and ¬
                                item 2 of (item i of addressFileContents) is not "" then
                                set aNote to aNote & newline & text item 2 of (item i of addressFileContents)
                            end if
                        end if
                    end repeat
                end if
            end if
        end repeat
    on error errMsg number errNum
        close access addressFileReference
        -- do some sort of error processing here
        display dialog "An error occurred with the following number and description: " & return & errNum & return & errMsg & return & return & "Item " & (i as string) & tab & "'" & (item i of addressFileContents) & "'" with title "Data load section."
        error errMsg number errNum
    end try
    close access addressFileReference
    --Debug dialogs
    --display dialog (item 1 of addressFileContents as text) & return & return & (item 2 of addressFileContents as text) & return & return & (item 3 of addressFileContents as text) & return & return & (item 4 of addressFileContents as text)
    --display dialog "title:" & tab & tab & tab & aPrefix & return & "first name:" & tab & tab & aFirstName & return & "middle name:" & tab & tab & aMiddleName & return & "last name:" & tab & tab & aLastName & return & "suffix:" & tab & tab & tab & aSuffix & return & "job title:" & tab & tab & tab & aPosition & return & "department:" & tab & aDepartment & return & "organization:" & tab & aCompany with title "Just prior to new record insertion:" with icon note
    --check if Contacts application is active
    tell application "System Events"
        if exists application process "Contacts" then
            set ABactive to true
        else
            set ABactive to false
        end if
    end tell
    --display dialog "title:" & tab & tab & tab & aPrefix & return & "first name:" & tab & tab & aFirstName & return & "middle name:" & tab & tab & aMiddleName & return & "last name:" & tab & tab & aLastName & return & "suffix:" & tab & tab & tab & aSuffix & return & "job title:" & tab & tab & tab & aPosition & return & "department:" & tab & aDepartment & return & "organization:" & tab & aCompany with title "Just prior to create new entry:" with icon note
    --create new address entry
    tell application "Contacts"
        try
            --if the aCompany2 variable is filled append its contents to the aCompany variable
            if aCompany2 is equal to "" then
                set thePerson to make new person with properties ¬
                    {title:aPrefix, first name:aFirstName, middle name:aMiddleName, last name:aLastName, suffix:aSuffix, job title:aPosition, department:aDepartment, organization:aCompany}
            else
                set aCompany to aCompany & newline & aCompany2
                set thePerson to make new person with properties ¬
                    {title:aPrefix, first name:aFirstName, middle name:aMiddleName, last name:aLastName, suffix:aSuffix, job title:aPosition, department:aDepartment, organization:aCompany}
            end if
            --set the Company view binary if no First and Last name
            if (first name of thePerson is equal to "") and (last name of thePerson is equal to "") then ¬
                set the company of thePerson to true
            tell thePerson
                if aPhone is not equal to "" then ¬
                    make new phone at end of phones with properties ¬
                        {label:"work", value:aPhone}
                if aPhone2 is not equal to "" then ¬
                    make new phone at end of phones with properties ¬
                        {label:"other", value:aPhone2}
                if aMobile is not equal to "" then ¬
                    make new phone at end of phones with properties ¬
                        {label:"mobile", value:aMobile}
                if aFax is not equal to "" then ¬
                    make new phone at end of phones with properties ¬
                        {label:"fax", value:aFax}
                if aEmail is not equal to "" then ¬
                    make new email at end of emails with properties ¬
                        {label:"Work", value:aEmail}
                if aWebsite is not equal to "" then ¬
                    make new url at end of urls with properties ¬
                        {label:"Work", value:aWebsite}
                if aStreet is not equal to "" then
                    if aStreet2 is equal to "" then
                        make new address at end of addresses with properties ¬
                            {label:"work", street:aStreet, city:aPlace, state:aState, zip:aZip, country:aCountry}
                    else
                        make new address at end of addresses with properties ¬
                            {label:"work", street:aStreet & ", " & aStreet2, city:aPlace, state:aState, zip:aZip, country:aCountry}
                    end if
                end if
                if aPostPlace is equal to "" then set aPostPlace to aPlace
                if aPostbox is not equal to "" then
                    if aPostboxCode is not equal to "" then
                        make new address at end of addresses with properties ¬
                            {label:"postal", street:aPostbox, city:aPostPlace, state:aState, zip:aPostboxCode, country:aCountry}
                    else
                        make new address at end of addresses with properties ¬
                            {label:"postal", street:aPostbox, city:aPlace, state:aState, zip:aZip, country:aCountry}
                    end if
                end if
                if aNote is not equal to "" then set note to aNote
            end tell
            -- place the new entry into a group
            set myGroups to name of every group
            set theGroup to (choose from list myGroups with prompt "Attach to which group?" without multiple selections allowed and empty selection allowed) as text
            --If user selects 'Cancel' button the value of the result variable is 'false'
            if theGroup is not "false" then
                add thePerson to group theGroup
            else
                -- create a default group and place the entry in there; first testing to see whether the default group already exists
                try
                    if group newGroup exists then ¬
                        display dialog "newGroup exists" with icon 1
                    add thePerson to group newGroup
                on error number -1728
                    -- newGroup does not exist so create it
                    display dialog "newGroup does not exist. Make new group with newGroup" with icon 1
                    set theGroup to make new group with properties {name:newGroup}
                    add thePerson to group newGroup
                end try
            end if
            save application "Contacts"
            set selection to (thePerson)
            activate
    --set flag that new address entry was successful by seeking
            if the selection is equal to properties ¬
                {title:aPrefix, first name:aFirstName, ¬
                middle name:aMiddleName, last name:aLastName, ¬
                suffix:aSuffix, job title:aPosition, ¬
                department:aDepartment, organization:aCompany} then ¬
            set aExists to true
        on error errMsg number errNum
            -- do some sort of error processing here
            display dialog "An error occurred with the following number and description: " & return & errNum & return & errMsg with title "Data paste section."
            error errMsg number errNum
        end try
        --if we opened the AB, we'll close it
        if not ABactive then quit
    end tell
    --clear address variables content in case of repeat use
    set aPrefix to ""
    set aFirstName to ""
    set aMiddleName to ""
    set aLastName to ""
    set aSuffix to ""
    set aPosition to ""
    set aDepartment to ""
    set aCompany to ""
    set aCompany2 to ""
    set aStreet to ""
    set aStreet2 to ""
    set aPostbox to ""
    set aPlace to ""
    set aState to ""
    set aZip to ""
    set aPostboxCode to ""
    set aCountry to ""
    set aPhone to ""
    set aPhone2 to ""
    set aMobile to ""
    set aFax to ""
    set aEmail to ""
    set aWebsite to ""
    set aNote to ""
    -- Delete original file if contents have been successfully added
    if aExists then
        try
            tell application "Finder"
                if exists file addressFile then
                    delete file addressFile --moves it to the trash
                end if
            end tell
        on error errMsg number errNum
            display dialog "Inserting new address was successfiul, however an error occurred while deleting the original file:" & return & addressFile buttons {"Cancel"} default button 1 with title "Error!" with icon stop
            display dialog ""
        end try
    end if
    -- End of 'add address' script

    Well, after a few days of restoring my cellphone (The C6-01 I mentioned before), I came to this:
    - After Hard resetting, the Lock Code is still erroneous;
    - After firmware reinstalling, Lock Code is erroneous;
    - Pulling out the battery, leaving the cellphone with no power for several hours, give the same result;
    - Downgrading firmware (previous version) did not fix the problem;
    Interesting thing is, after power on, the cellphone asks for the code lock: entering ANY number, returns "Code Error", and simply goes back to normal operation.
    Everything is working, except I can no use de Lock Code, or any function related to it.
    Of course, is pretty annoying to enter the lock code every time I power-on the cell.

  • VMware Fusion 6 - errors on Mavericks

    With the upgrade to Mavericks my previously perfectly fine and stable Windows7 virtual machine in VMware started to crash occasionally.
    It happens after returning Mavericks from sleep: the virtual machine "encoutered an error" and I need to reboot it.
    Observing this over time and for months now, I suspect this correlates with the widely known issue of Mavericks to resize windows when returning from sleep.
    I have no hard evidence for this though - and it doesn't change the situation anyways.
    Reason opening this thread here:
    VMware makes it virtually impossible to get any support although I purchased a full and latest and greatest Fusion 6 license - only in hope it will fix the issue.
    Also I seem to be the only one encountering these kinds of errors.
    Am I really the only one in this universe with this problem???
    It's not a disasterous problem but a crashing Windows7 in Fusion is always a potential data loss of unsaved stuff... I want to have this fixed...
    thx
    josef

    Hi josef, I also have fusion 6 and run vista & ubuntu vms but I never sleep the mac.
    However... Vms can have odd issues depending upon how they are slept, restarted or shut down. The recommended way to do any of these is to do it in the VM before doing it to the host (that's how I do my shutdowns). i.e. do the sleep in Win7, then sleep the mac and the reverse when coming back... you may already be doing this but I wanted to check

  • SFTP Issue in OSB invocation resulted in an error: com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,ip

    I created a Proxy Service to do pull file and push it to sftp server
    known_hosts file is present on OSB server.
    It has abcserverhostname,IP ssh-rsa AA................. ==
    I created a business service to do SFTP push to sftp server (remote) - Its not working.
    <Error> <SFTPTransport> <BEA-381826> <Key Not Found for host hostname,10.124....>
    com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,10.124.....
      at com.bea.wli.sb.transports.sftp.client.KnownHostVerifier.onUnknownHost(KnownHostVerifier.java:37)
    My Business Service
    End Point URI : sftp://sftpserverhostname:22/directorypath
    Authetication Mode : user name, password.I have created a Service Account for sftpserver and imported in Business Service.
    Do I need to give anything else in known_hosts file ?
    and hostname can be any random name?
    <Dec 11, 2013 1:45:37 PM GMT+08:00> <Error> <SFTPTransport> <BEA-381801> <Error occured for endpoint com.bea.wli.sb.transports.TransportException: com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,10.124....
    com.bea.wli.sb.transports.TransportException: com.maverick.ssh.SshException: ssh-dss Key Not Found for host
      at com.bea.wli.sb.transports.sftp.connector.SFTPTransportProvider.sendMessage(SFTPTransportProvider.java:161)
      at com.bea.wli.sb.transports.sftp.connector.SFTPTransportProvider.sendMessageAsync(SFTPTransportProvider.java:111)
      at sun.reflect.GeneratedMethodAccessor566.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      Truncated. see log file for complete stacktrace
    Caused By: com.maverick.ssh.SshException: ssh-dss Key Not Found for host eirnode2,10.124.10.16
      at com.bea.wli.sb.transports.sftp.client.KnownHostVerifier.onUnknownHost(KnownHostVerifier.java:37)
      at com.sshtools.publickey.AbstractKnownHostsKeyVerification.A(Unknown Source)
      at com.sshtools.publickey.AbstractKnownHostsKeyVerification.verifyHost(Unknown Source)
      at com.maverick.ssh2.TransportProtocol.C(Unknown Source)
      at com.maverick.ssh2.TransportProtocol.processMessage(Unknown Source)
      Truncated. see log file for complete stacktrace

    BEA-381826 suggest that there is any issue with your public key in known_host file, can you cross verify it again. Also can you check if known_host file has appropriate permissions and I am assuming it is in /OSB_DOMAIN/osb/transports/sftp folder.
    Hostname,IP algorithm publickey are the hostname, ip, and public key of SFTP server.
    As per troubleshooting guidelines
    The Key not found for IP, host error message indicates that the known_hosts file does not contain an entry that corresponds to the specified IP-host combination. If the entry exists, then try with another algorithm key; for example, if the earlier attempt was with an RSA key, try again with a DSA key.
    Cheers,
    Sahil

  • Photoshop CS4 error since Mavericks when open file from Server: "file is empty"

    Since I upgraded to Mavericks I can't open files directly from a Server (smb://..), it says "file is empty". When I copy the PSD file to my local drive I can open it though. I tried already to remove the server and reconnect. I'm using the CS4. Any idea how to fix that?

    My solution from another thread:-
    Hello - I recently upgraded to Mavericks and have experienced a number of problems, one of which matches yours, and after some experimentation found a solution.
    Like you, whenever I tried to open a file held on the server in any Adobe software, I would get an error that the file is empty. However, if I copied the file to my desktop, it would open without issue. i then noticed that the server name, which has a space in it, had %20 instead of a space, which drew me to the conclusion that Mavericks was reading the server incorrectly. I ejected the mounted server icons, and then click 'Go', 'Connect to Server', and reconnected. The server reconnected (and this time that space was restored) and I could open all of my files without issue.
    Hope this helps

  • Media Cache Not Found Error in Mavericks

    Hello:
    In OS X Mavericks, I am trying to create a custom user template as part of an image to use on lab machines.
    I have everything working the way I like, even the preferred Adobe CC applications. In Premiere Pro CC, however, I have an issue. If a new user creates an account at login (or if we do it, for that user), the template appears with all of our desired settings. However, the user launching Premiere Pro CC for the first time will get a "Media Cache Not Found" dialog box and error. The error points to a path used during the template's construction that does not exist with new users. The information has to be cached somewhere, and I'm trying to make sure that I find the right files so that they can be deleted before moving the dummy template to the proper location in OS X's System library.
    Any suggestions on how best to handle this would be greatly appreciated; thank you!
    Velanche

    Some links that may help
    Team Installer http://forums.adobe.com/thread/1363686?tstart=0
    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • Online form printing error in Mavericks

    Since upgrading to Mavericks, the problems continue. I can't seem to easily click in different fields of menu boxes when trying to print (whether it's a Wrod doc or pdf).  Here is a bizare output from Console from the most recent attempt. If anyone can suggest how I might fix this, I'd appreciate it,
    12/4/13 9:36:48.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e884a
    (the above error goes on for pages!)
    12/4/13 9:36:49.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:49.512 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e347c
    12/4/13 9:36:49.522 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e4153
    12/4/13 9:36:49.532 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e4e03
    12/4/13 9:36:49.542 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e586f
    12/4/13 9:36:49.552 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e615c
    12/4/13 9:36:49.561 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e6b98
    12/4/13 9:36:49.571 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e75cb
    12/4/13 9:36:49.581 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e7f37
    12/4/13 9:36:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    (more continuous pages)
    12/4/13 9:36:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6832df026
    12/4/13 9:36:50.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:50.997 AM PluginProcess[2906]: Failed to create an instance of ICCommandCenter.
    12/4/13 9:36:51.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68330418b
    (more continous page)
    12/4/13 9:36:51.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6833072c1
    12/4/13 9:36:51.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f683674e3b
    (and more)
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f683677dbc
    12/4/13 9:36:54.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.986 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.986 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.987 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.987 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.988 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.988 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.989 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.989 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.990 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.990 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.993 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.993 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.997 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.997 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.998 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.998 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.001 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.001 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.002 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.002 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.003 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.003 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.006 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.006 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.007 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.007 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.009 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.009 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.010 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.010 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.012 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.012 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.013 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.014 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.014 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.017 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.017 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.018 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.018 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.019 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.019 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.020 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.020 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.021 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.021 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.022 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.022 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.023 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.023 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.025 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.025 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.026 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.026 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.027 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.027 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.028 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.028 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.031 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.031 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.264 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.264 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.268 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.269 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.275 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.278 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.278 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.281 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.281 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.282 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.282 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.283 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68374d9da
    (and more)
    12/4/13 9:36:55.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:55.456 AM WDQuickView[253]: Updating service information
    12/4/13 9:36:55.657 AM launchctl[3026]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 9:36:59.118 AM PrinterProxy[3027]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:36:59.502 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x4c3] flags: 0x8 binding: FileInfoBinding [0x319] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    12/4/13 9:36:59.503 AM quicklookd[3030]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:128 scale: 1
    12/4/13 9:37:00.087 AM UserNotificationCenter[3033]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:37:25.458 AM WDQuickView[253]: Updating service information
    12/4/13 9:37:27.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68579d73f
    (more)
    12/4/13 9:37:30.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685a033b1
    12/4/13 9:37:30.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685bb45bf
    (then this again)
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685bb7760
    12/4/13 9:37:31.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:32.268 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:37:32.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685c9f1b9
    12/4/13 9:37:32.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:33.036 AM cups-exec[3056]: sandbox cache error 11: database disk image is malformed
    12/4/13 9:37:33.096 AM cups-exec[3055]: sandbox cache error 1: no such table: profiles
    12/4/13 9:37:34.215 AM ReportCrash[3053]: Saved crash report for gutenprint.5.2[3052] version ??? to /Library/Logs/DiagnosticReports/gutenprint.5.2_2013-12-04-093734_Admins-Mac-Pro .crash
    12/4/13 9:37:34.415 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (FAX).
    12/4/13 9:37:34.470 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (UFRII LT).
    12/4/13 9:37:41.174 AM PrinterProxy[3057]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:37:42.425 AM launchctl[3063]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 9:37:42.452 AM cups-exec[3061]: sandbox cache error 3850
    12/4/13 9:37:42.522 AM cups-exec[3060]: sandbox cache error 1: no such table: profiles
    12/4/13 9:37:55.459 AM WDQuickView[253]: Updating service information
    12/4/13 9:38:10.122 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f688218f41
    (something new)
    12/4/13 9:38:36.774 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /Users/Admin/Library/Preferences/com.apple.DownloadAssessment.plist
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-xattr /Applications/Preview.app
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny job-creation
    12/4/13 9:38:37.022 AM PluginProcess[2906]: spawn_via_launchd() failed, errno=1 label=[0x0-0x54054].com.apple.Preview path=/Applications/Preview.app/Contents/MacOS/Preview flags=1 : LaunchApplicationClient.cp #990 LaunchApplicationWithSpawnViaLaunchD() q=com.apple.main-thread
    12/4/13 9:38:37.022 AM PluginProcess[2906]: spawn_via_launchd() failed, errno=1 label=[0x0-0x54054].com.apple.Preview path=/Applications/Preview.app/Contents/MacOS/Preview flags=1
    12/4/13 9:38:37.022 AM PluginProcess[2906]: Printing failed because PMSessionEndDocumentNoDialog() returned -10810.
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /247003C0488EA8295CFCD169CE0D031E.iscachebmp
    12/4/13 9:38:37.045 AM PluginProcess[2906]: Failed to generate image for binding FileInfoBinding [0x107] - extension: (NULL), UTI: com.apple.application-bundle, fileType: APPL at size:128 and scale: 1 filename: (null)
              1   IconServices                        0x00007fff899afe92 ___ZN18IconImageRequestor35generateCGImageFromBindingResourcesEU13block_pointer FvP7CGImageE_block_invoke + 689
              2   IconServices                        0x00007fff899a9278 ___ZN8ISClient23GenerateCacheImageAsyncEP10_LSBindingjjU13block_pointerFvP8ISDi gestjj11ISSizeRangeyE_block_invoke + 727
              3   IconServices                        0x00007fff899a9cbc ___ZN13XPCConnection11postMessageEPvU13block_pointerFvS0_E_block_invoke + 66
              4   libxpc.dylib                        0x00007fff884c7be6 _xpc_connection_reply_callout + 47
              5   libxpc.dylib                        0x00007fff884c7b72 _xpc_connection_call_reply + 36
              6   libdispatch.dylib                   0x00007fff8d8982ad _dispatch_client_callout + 8
              7   libdispatch.dylib                   0x00007fff8d89c7ff _dispatch_async_redirect_invoke + 154
              8   libdispatch.dylib                   0x00007fff8d8982ad _dispatch_client_callout + 8
              9   libdispatch.dylib                   0x00007fff8d89a09e _dispatch_root_queue_drain + 326
              10  libdispatch.dylib                   0x00007fff8d89b193 _dispatch_worker_thread2 + 40
              11  libsystem_pthread.dylib             0x00007fff8e6fbef8 _pthread_wqthread + 314
              12  libsystem_pthread.dylib             0x00007fff8e6fefb9 start_wqthread + 13
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:38.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:42.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68a2eb0d2
    (more)
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68a90043c
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68adaf906
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68adb2a34
    12/4/13 9:38:53.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:38:53.750 AM com.apple.appkit.xpc.openAndSavePanelService[2954]: +[NSOpenAndSavePanelService clientWithAuditToken:hasEntitlementForOperation:sandboxPermissions:] : no appSandbox
    12/4/13 9:38:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.metadata.mds
    12/4/13 9:38:54.073 AM PluginProcess[2906]: Metadata.framework [Error]: couldn't get the client port
    12/4/13 9:38:55.462 AM WDQuickView[253]: Updating service information
    12/4/13 9:39:11.827 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.881 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny hid-control
    12/4/13 9:39:13.948 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.959 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.969 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.980 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.990 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.001 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private

    Since upgrading to Mavericks, the problems continue. I can't seem to easily click in different fields of menu boxes when trying to print (whether it's a Wrod doc or pdf).  Here is a bizare output from Console from the most recent attempt. If anyone can suggest how I might fix this, I'd appreciate it,
    12/4/13 9:36:48.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e884a
    (the above error goes on for pages!)
    12/4/13 9:36:49.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:49.512 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e347c
    12/4/13 9:36:49.522 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e4153
    12/4/13 9:36:49.532 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e4e03
    12/4/13 9:36:49.542 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e586f
    12/4/13 9:36:49.552 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e615c
    12/4/13 9:36:49.561 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e6b98
    12/4/13 9:36:49.571 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e75cb
    12/4/13 9:36:49.581 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6830e7f37
    12/4/13 9:36:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    (more continuous pages)
    12/4/13 9:36:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6832df026
    12/4/13 9:36:50.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:50.997 AM PluginProcess[2906]: Failed to create an instance of ICCommandCenter.
    12/4/13 9:36:51.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68330418b
    (more continous page)
    12/4/13 9:36:51.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f6833072c1
    12/4/13 9:36:51.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:36:52.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f683674e3b
    (and more)
    12/4/13 9:36:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f683677dbc
    12/4/13 9:36:54.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.981 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.982 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.984 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.986 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.986 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.987 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.987 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.988 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.988 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.989 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.989 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.990 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.990 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.993 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.993 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.996 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.997 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.997 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.998 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:54.998 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.001 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.001 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.002 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.002 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.003 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.003 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.004 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.005 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.006 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.006 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.007 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.007 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.009 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.009 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.010 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.010 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.012 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.012 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.013 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.014 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.014 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.015 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.017 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.017 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.018 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.018 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.019 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.019 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.020 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.020 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.021 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.021 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.022 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.022 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.023 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.023 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.025 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.025 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.026 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.026 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.027 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.027 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.028 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.028 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.031 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.031 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.262 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.263 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.264 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.264 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.265 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.266 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.268 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.269 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.275 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.276 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.277 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.278 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.278 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.279 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.280 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.281 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.281 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.282 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.282 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.283 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.284 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.285 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.286 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.287 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:36:55.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68374d9da
    (and more)
    12/4/13 9:36:55.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:36:55.456 AM WDQuickView[253]: Updating service information
    12/4/13 9:36:55.657 AM launchctl[3026]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 9:36:59.118 AM PrinterProxy[3027]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:36:59.502 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x4c3] flags: 0x8 binding: FileInfoBinding [0x319] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    12/4/13 9:36:59.503 AM quicklookd[3030]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:128 scale: 1
    12/4/13 9:37:00.087 AM UserNotificationCenter[3033]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:37:25.458 AM WDQuickView[253]: Updating service information
    12/4/13 9:37:27.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68579d73f
    (more)
    12/4/13 9:37:30.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685a033b1
    12/4/13 9:37:30.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685bb45bf
    (then this again)
    12/4/13 9:37:31.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685bb7760
    12/4/13 9:37:31.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:32.268 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:37:32.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f685c9f1b9
    12/4/13 9:37:32.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:37:33.036 AM cups-exec[3056]: sandbox cache error 11: database disk image is malformed
    12/4/13 9:37:33.096 AM cups-exec[3055]: sandbox cache error 1: no such table: profiles
    12/4/13 9:37:34.215 AM ReportCrash[3053]: Saved crash report for gutenprint.5.2[3052] version ??? to /Library/Logs/DiagnosticReports/gutenprint.5.2_2013-12-04-093734_Admins-Mac-Pro .crash
    12/4/13 9:37:34.415 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (FAX).
    12/4/13 9:37:34.470 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (UFRII LT).
    12/4/13 9:37:41.174 AM PrinterProxy[3057]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 9:37:42.425 AM launchctl[3063]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 9:37:42.452 AM cups-exec[3061]: sandbox cache error 3850
    12/4/13 9:37:42.522 AM cups-exec[3060]: sandbox cache error 1: no such table: profiles
    12/4/13 9:37:55.459 AM WDQuickView[253]: Updating service information
    12/4/13 9:38:10.122 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f688218f41
    (something new)
    12/4/13 9:38:36.774 AM WebKitPluginHost[2906]: CGContextClosePath: no current point.
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /Users/Admin/Library/Preferences/com.apple.DownloadAssessment.plist
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-xattr /Applications/Preview.app
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny job-creation
    12/4/13 9:38:37.022 AM PluginProcess[2906]: spawn_via_launchd() failed, errno=1 label=[0x0-0x54054].com.apple.Preview path=/Applications/Preview.app/Contents/MacOS/Preview flags=1 : LaunchApplicationClient.cp #990 LaunchApplicationWithSpawnViaLaunchD() q=com.apple.main-thread
    12/4/13 9:38:37.022 AM PluginProcess[2906]: spawn_via_launchd() failed, errno=1 label=[0x0-0x54054].com.apple.Preview path=/Applications/Preview.app/Contents/MacOS/Preview flags=1
    12/4/13 9:38:37.022 AM PluginProcess[2906]: Printing failed because PMSessionEndDocumentNoDialog() returned -10810.
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /ISCacheTOC
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-read-data /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/C/com.apple.IconServices /247003C0488EA8295CFCD169CE0D031E.iscachebmp
    12/4/13 9:38:37.045 AM PluginProcess[2906]: Failed to generate image for binding FileInfoBinding [0x107] - extension: (NULL), UTI: com.apple.application-bundle, fileType: APPL at size:128 and scale: 1 filename: (null)
              1   IconServices                        0x00007fff899afe92 ___ZN18IconImageRequestor35generateCGImageFromBindingResourcesEU13block_pointer FvP7CGImageE_block_invoke + 689
              2   IconServices                        0x00007fff899a9278 ___ZN8ISClient23GenerateCacheImageAsyncEP10_LSBindingjjU13block_pointerFvP8ISDi gestjj11ISSizeRangeyE_block_invoke + 727
              3   IconServices                        0x00007fff899a9cbc ___ZN13XPCConnection11postMessageEPvU13block_pointerFvS0_E_block_invoke + 66
              4   libxpc.dylib                        0x00007fff884c7be6 _xpc_connection_reply_callout + 47
              5   libxpc.dylib                        0x00007fff884c7b72 _xpc_connection_call_reply + 36
              6   libdispatch.dylib                   0x00007fff8d8982ad _dispatch_client_callout + 8
              7   libdispatch.dylib                   0x00007fff8d89c7ff _dispatch_async_redirect_invoke + 154
              8   libdispatch.dylib                   0x00007fff8d8982ad _dispatch_client_callout + 8
              9   libdispatch.dylib                   0x00007fff8d89a09e _dispatch_root_queue_drain + 326
              10  libdispatch.dylib                   0x00007fff8d89b193 _dispatch_worker_thread2 + 40
              11  libsystem_pthread.dylib             0x00007fff8e6fbef8 _pthread_wqthread + 314
              12  libsystem_pthread.dylib             0x00007fff8e6fefb9 start_wqthread + 13
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:37.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:38.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:42.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68a2eb0d2
    (more)
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68a90043c
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:49.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:50.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com_apple_inkserverconnection
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launchagent
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.inputmethodkit.launcher
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68adaf906
    12/4/13 9:38:53.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny file-write-create /private/var/folders/9s/wf0s53755ps49zk21g7qh5280000gn/T/WebKitPlugin-vuQIwI/52 9f68adb2a34
    12/4/13 9:38:53.000 AM kernel[0]: *** kernel exceeded 500 log message per second limit  -  remaining messages this second discarded ***
    12/4/13 9:38:53.750 AM com.apple.appkit.xpc.openAndSavePanelService[2954]: +[NSOpenAndSavePanelService clientWithAuditToken:hasEntitlementForOperation:sandboxPermissions:] : no appSandbox
    12/4/13 9:38:54.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.metadata.mds
    12/4/13 9:38:54.073 AM PluginProcess[2906]: Metadata.framework [Error]: couldn't get the client port
    12/4/13 9:38:55.462 AM WDQuickView[253]: Updating service information
    12/4/13 9:39:11.827 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.881 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny hid-control
    12/4/13 9:39:13.948 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.959 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.969 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.980 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.990 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:13.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.001 AM sandboxd[289]: ([2906]) PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private
    12/4/13 9:39:14.000 AM kernel[0]: Sandbox: PluginProcess(2906) deny mach-lookup com.apple.ink.private

  • Preferences Errors in Mavericks

    I just migrated to Mavericks.   I wanted to get my iCloud Keychain setup but when I go to preferences iCloud, I see the following error message:  "Preferences Error Could not load iCloud preference pane."
    I get the same error when I click on other Preferences, including "Internet Account", "Sharing", "Parental Controls", etc.
    Some work fine, e.g. "General", "Dock", "Displays" . . .
    Sometimes, when I click on the problem icons, the error is slightly different, and claims that the preference can't open because I have an intel-based mac.   see below:
    I have booted in safe-mode and have the same problem.
    Any ideas?
    Thanks,
    Dan

    I just migrated to Mavericks.   I wanted to get my iCloud Keychain setup but when I go to preferences iCloud, I see the following error message:  "Preferences Error Could not load iCloud preference pane."
    I get the same error when I click on other Preferences, including "Internet Account", "Sharing", "Parental Controls", etc.
    Some work fine, e.g. "General", "Dock", "Displays" . . .
    Sometimes, when I click on the problem icons, the error is slightly different, and claims that the preference can't open because I have an intel-based mac.   see below:
    I have booted in safe-mode and have the same problem.
    Any ideas?
    Thanks,
    Dan

  • 404 errors from Mavericks web server

    Running Mavericks server in VirtualBox while I come up with a checklist for implementing WordPress on a Mac mini next week. Running into strange 404 errors that I'm not familiar with.
    1) Turned on web server and PHP. Localhost opens the default web page just fine.
    2) Tried installing PHPmyadmin. Got 404 errors attempting to access any files in that directory.
    3) Moved the default index.html.en into a folder named osxs. Got 404 errors trying to access those files. HOWEVER, localhost still finds that page in the root directory, which it shouldn't.
    4) Moved WordPress default files into root folder. Localhost still shows default OSXS page.
    Is there a cache that needs to be refreshed? I've tried turning Apache off and on again, with no luck.
    Thanks,
    Jeff

    I'm going to guess you're reading some directions for an older OS X release, or for OS X client and not OS X Server.
    404 is "not found".  That'll usually show up in the Apache logs, including the requested (failed) path.  When maintaining and particularly troubleshooting a web server, you'll always be reading the server logs and the web server logs.
    If you've not already done so, use Server.app to create a web site underneath /library/server/web/data/sites and load your content management system there.  Don't create that directory elsewhere.  Keep it in that path.  At least not yet.  (Apache intentionally doesn't allow folks to navigate random parts of the file system.)
    OS X Server requires functional DNS, as well.  To verify that, launch Terminal.app from Applications > Utilities and issue the following harmless diagnostic command:
    sudo changeip -checkhostname
    That'll require an administrative password, might show a one-time informational message around the use of sudo, and will then display some network information and then an indication that no changes are required, or that there are DNS or network problems. 
    Do not use .local nor .arpa as your domain.

  • "Use the purchases page to try again" App store update error in Mavericks

    When Mavericks came out, I did a clean install of the OS. The first thing I did upon logging in, was reverting iTunes back to 10.7 before I opened it so it wouldn't update my iTunes library files and make them incompatible with any version lower than 11 (I went backt to 10.7 some time ago).
    However, this seems to cause a problem with the App store - specfically updating apps. Whenever I try to update anything, I get this error message:
    After going to the purchases page, it then looks like this:
    And so after trying to update it from the purchaes page, I still get this error message:
    The only work around I have found to work is to update itunes to version 11, update the apps, then downgrade back to 10.7 again. This is a hastle so I'm wondering if there is an easier way. Obviously the app store in Mavericks needs iTunes 11 installed for it to work correctly - so I was thinking, was there a way to trick OSX into thinking that I have iTunes 11 installed when I actually have 10.7? I'm assuming there must be a file somewhere included in the version 11 install that the app store looks for to work with?
    Any advice/help would be appreciated!

    Ok,  time to troubleshoot then.
    Quit the Mac App Store
    Run the terminal app in your Utilities folder
    Copy & Paste this command exactly and hit return:
    open $TMPDIR../C/
    In the Finder window that appears, place the com.apple.appstore folder into the trash.
    Restart the Mac App Store and see if things work now.

  • Air app gives error on mavericks

    I wrote an AdobeAir app 3 years ago. It uses php and a MySQL database. It worked fine on leopard, snow leopard, lion and mountain lion. After upgrading to mavericks, the app now gives an error - 'default decode could not decode result' when attempting to start the app. There have been no code changes. I don't know where to start.

    Is this something we could reproduce internally?  If so could you please open a new bug report on this over at https://bugbase.adobe.com?  If you'd like to keep your app private, feel free to email the attachment to me directly ([email protected]). 

  • Error installing Mavericks on Macbook.

    I have downloaded the Mavericks installer and prepared my Mac by removing TM backups, turning off TM and rebooting.  I have a qualifying macbook running 10.6.8.  When I try to activate the installer, I get a error saying that the drive is used for Time Machine backups.  What can I do to fix this?

    Try going to Time Machine Preferences > Select Disk, and remove that disk as the choice for the TM backup.
    And BTW, doesn't that defeat the purpose to use the same drive that your startup disk is on for TM?

Maybe you are looking for

  • How to calculate Average balance for an account

    Hi, How to calculate average balance for an account for a particular period say for JAN-12 period and after the end of that period for another two days 01-feb-12 and 01-feb-12 ? I'm using the following query : SELECT cc.segment1||'-'||cc.segment2||'-

  • Early 2008 Macbook Pro extremely slow with Yosemite 10.10.2

    Since updating to Yosemite, my system has become very slow and unresponsive. Below is the EtreCheck report, and I am looking for assistance on how to get my system back to quicker speeds. EtreCheck version: 2.1.8 (121) Report generated February 7, 20

  • Problem in Business Workplace

    Hi Gurus, We are having a problem in SAP Business workplace. One particular user is unable to attach any excel fiile while sending mail. The error is "close the file in the PC eff.nuovo attempt" Regards, Pradeep

  • RSCONN01 send PO (pdf format) as Confidential

    Hello... We have the following issue... we have 2 SAP clients... in one client the messages sents via RSCONN01 program via Internet are not flag as Confidential. And the other client, sending the messages via RSCONN01 program via internet are set as

  • Problem setting default browser to Firefox

    Hey everyone, I'm stumped and could use some help. I have set my default browser to Firefox (Safari - preferences - default browser - Firefox.) Here's the problem: I click on a URL in Mail and get an error message. (Result - clicking the URL won't op