Errorcode-8003

I can't empty the trashbin, the errorcode 8003 pops up.
What to do??

Open your applications folder
Open the Utilities folder
click the icon called Terminal
Copy the following command on the terminal window:
cd ./.Trash
rm -r ./*
Hit enter
done.
Recycle bin problem should be solved.

Similar Messages

  • Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Downloads from itunes fail - error code 8003 - what does that mean, or more importantly, how do I get what I paid for?

    Try the troubleshooting for that error code on this page : iTunes: Advanced iTunes Store troubleshooting - Apple Support (search for '8003' on the page, it's just below half-way down)

  • I downloaded an album from iTunes and some of the songs downloaded but others didn't there was an error message 8003 Unknown error occurred. While I downloaded the album to my phone, it wouldn't download to my mac, what am I doing wrong???

    I purchased an album on ITunes store, while the items downloaded to my phone, it didn't download to my mac. Some of the songs downloaded but not the majority, when I try to download the songs, it gives me an error 8003 Unknown error occured. What am I doing wrong? If I can't download this album, how do I get a credit??

    Hello mercdw,
    Once the music has been downloaded to your iPhone, you can transfer purchases from your device to iTunes.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    Alternatively, the following article provides further information regarding this error and steps that can help resolve the issue.
    "Error -50," "-5000," "8003," "8008," or "-42023"
    These alerts occur due to timeouts or conflicts trying to write a file during download.
    If you encounter this issue while accessing iTunes Store:
    See iTunes 9: "One Moment Please" or "Error (-50)" message when accessing iTunes Store
    If you encounter this issue while while downloading something from the iTunes Store:
    Delete your iTunes Downloads folder, located in:
    Mac OS X:
  ~/Music/iTunes/iTunes Media/Downloads   Note: "iTunes Media" may appear as "iTunes Music. Also, the tilde (~) refers to your Home directory.
    Windows Vista:
  \Users\username\Music\iTunes\iTunes Media\Downloads\
    Windows 7:
  \Users\username\My Music\iTunes\iTunes Media\Downloads\
    Windows XP:
  \Documents and Settings\username\My Documents\My Music\iTunes\iTunes Media\Downloads\
    After locating your iTunes Downloads folder:
    Quit iTunes.
    Delete the Downloads folder on your computer.
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    If you encounter this issue while while downloading Digital Copies using Windows:
    Use MSCONFIG (directions for Windows XP and Windows Vista/Windows 7) to disable conflicting software.
    If using MSCONFIG steps resolves the issue, you may want to use the System Configuration Utility to turn on the third-party System Services and Startup Items one at a time (restarting your computer after turning on the item or items) to identify which System Service or Startup Item is causing the conflict.
    You can turn all of them back on by selecting the Normal Startup option under the General tab of the System Configuration Utility window, but please note that this may cause the issue to reoccur.
    If you are able to isolate the issue to a particular third-party software, you may wish to contact them to let them know of the conflict.
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Cheers,
    Allen

  • I tried to empty the trash, full of back up file from my hard disk and it just says: "The operation can't be completed because an unexpected error occurred (error code -8003)"

    I have an external hard disk of 319.73 GB that I use as back up memory and where I put all the movies and other files that I can't leave on the computer as they occupy too much memory space . One day I was deleting all the previous dated back up to have more space on it , but had to stop the trash for doing it cause it was taking too long and now every time that I try to empty the trash it just says "The operation can’t be completed because an unexpected error occurred (error code -8003)" and even if I press CONTINUE it won't empting it . I'm not really pratical with this things and I tried already to find out the solution here and on Google but apparently nobody ever had a similar error code and I don't know what else to do.
    I've a MacBook Pro with a Mac OS X 10.6.8 Version.
    Thanks again for the help and sorry if I did some english mistakes !
    PEACE & LOVE

    Hey donnie90,
    It seems like this article might be the best for helping you address this issue:
    You can't empty the Trash or move a file to the Trash
    http://support.apple.com/kb/ht1526
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Why am I getting ErrorCode: OperationNotSupported _Code: 204 When I am trying to get campaigns from sandbox account

    Hi All,
          Seasonal Greetings. 
          I am new one to bing ads . I am trying to get Campaigns from my sandbox account. The following is my code.                    
     <?php
    // To ensure that a cached WSDL is not being used,
    // disable WSDL caching.
    ini_set("soap.wsdl_cache_enabled", "0");
    try
        //$accountId = <youraccountid>; // Application-specific value.
         $accountId = "8951263";
        // Use either the sandbox or the production URI.
        // This example is for the sandbox URI.
        $URI =
            "https://api.sandbox.bingads.microsoft.com/Api/Advertiser/v8/";
        // The following commented-out line contains the production URI.
        //$URI = "https://adcenterapi.microsoft.com/api/advertiser/v8/";
        // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v8";
        // The proxy for the Campaign Management Web service.
        $campaignProxy = 
            $URI . "CampaignManagement/CampaignManagementService.svc?wsdl";
        // The name of the service operation that will be called.
        $action = "GetCampaignsByAccountId";
        // The user name, password, and developer token are
        // expected to be passed in as command-line
        // arguments.
        // $argv[0] is the PHP file name.
        // $argv[1] is the user name.
        // $argv[2] is the password.
        // $argv[3] is the developer token.
        if ($argc !=4)
            printf("Usage:\n");
            printf(
              "php file.php username password devtoken\n");
            exit(0);
        $username = $argv[1];
        $password = $argv[2];
        $developerToken = $argv[3];
        $applicationToken = "";
        // Create the SOAP headers.
        $headerApplicationToken = 
            new SoapHeader
                $xmlns,
                'ApplicationToken',
                $applicationToken,
                false
        $headerDeveloperToken = 
            new SoapHeader
                $xmlns,
                'DeveloperToken',
                $developerToken,
                false
        $headerUserName = 
            new SoapHeader
                $xmlns,
                'UserName',
                $username,
                false
        $headerPassword = 
            new SoapHeader
                $xmlns,
                'Password',
                $password,
                false
        $headerCustomerAccountId = 
            new SoapHeader
                $xmlns,
                'CustomerAccountId',
                $accountId,
                false
        // Create the SOAP input header array.
        $inputHeaders = array
            $headerApplicationToken,
            $headerDeveloperToken,
            $headerUserName,
            $headerPassword,
            $headerCustomerAccountId
        // Create the SOAP client.
        $opts = array('trace' => true);
        $client = new SOAPClient($campaignProxy, $opts); 
        // Specify the parameters for the SOAP call.
        $params = array
            'AccountId' => $accountId,
        // Execute the SOAP call.
        $result = $client->__soapCall
            $action,
            array( $action.'Request' => $params ),
            null,
            $inputHeaders,
            $outputHeaders
         print "Successful $action call.\n";
         print "TrackingId output from response header: "
              . $outputHeaders['TrackingId']
              . ".\n";
         // Insert a blank line to separate the text that follows.
         print "\n";
        // Retrieve the campaigns.
        if (isset(
            $result->Campaigns
            if (is_array($result->Campaigns->Campaign))
                // An array of campaigns has been returned.
                $obj = $result->Campaigns->Campaign;
            else
                // A single campaign has been returned.
                $obj = $result->Campaigns;
            // Display the campaigns.
            foreach ($obj as $campaign)
                print "Name          : " . $campaign->Name . "\n";
                print "Description   : " . $campaign->Description . "\n";
                print "MonthlyBudget : " . $campaign->MonthlyBudget . "\n";
                print "BudgetType    : " . $campaign->BudgetType . "\n";
                print "\n";
    catch (Exception $e)
        print "$action failed.\n";
        if (isset($e->detail->ApiFaultDetail))
          print "ApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->ApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->ApiFaultDetail->OperationErrors->OperationError
              if (is_array(
                  $e->detail->ApiFaultDetail->OperationErrors->OperationError
                  // An array of operation errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors->OperationError;
              else
                  // A single operation error has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors;
              foreach ($obj as $operationError)
                  print "Operation error encountered:\n";
                  print "\tMessage: ". $operationError->Message . "\n"; 
                  print "\tDetails: ". $operationError->Details . "\n"; 
                  print "\tErrorCode: ". $operationError->ErrorCode . "\n"; 
                  print "\tCode: ". $operationError->Code . "\n"; 
          // Process any batch errors.
          if (isset(
              $e->detail->ApiFaultDetail->BatchErrors->BatchError
              if (is_array(
                  $e->detail->ApiFaultDetail->BatchErrors->BatchError
                  // An array of batch errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors->BatchError;
              else
                  // A single batch error has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors;
              foreach ($obj as $batchError)
                  print "Batch error encountered for array index " . $batchError->Index . ".\n";
                  print "\tMessage: ". $batchError->Message . "\n"; 
                  print "\tDetails: ". $batchError->Details . "\n"; 
                  print "\tErrorCode: ". $batchError->ErrorCode . "\n"; 
                  print "\tCode: ". $batchError->Code . "\n"; 
        if (isset($e->detail->AdApiFaultDetail))
          print "AdApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->AdApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->AdApiFaultDetail->Errors
              if (is_array(
                  $e->detail->AdApiFaultDetail->Errors
                  // An array of errors has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              else
                  // A single error has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              foreach ($obj as $Error)
                  print "Error encountered:\n";
                  print "\tMessage: ". $Error->Message . "\n"; 
                  print "\tDetail: ". $Error->Detail . "\n"; 
                  print "\tErrorCode: ". $Error->ErrorCode . "\n"; 
                  print "\tCode: ". $Error->Code . "\n"; 
        // Display the fault code and the fault string.
        print $e->faultcode . " " . $e->faultstring . ".\n";
        // Output the last request.
        print "Last SOAP request:\n";
        print $client->__getLastRequest() . "\n";
    ?>
    http://msdn.microsoft.com/en-us/library/bing-ads-campaign-management-php-samples-get-campaigns(v=msads.80).aspx
    But I am getting responce 
    GetCampaignsByAccountId failed.
    ApiFaultDetail exception encountered
    Tracking ID: efa654c5-b112-4e96-8c3d-79bac7e70112
    Operation error encountered:
    Message: This operation is not supported.
    Details: 
    ErrorCode: OperationNotSupported
    Code: 204
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns1:ApplicationToken></ns1:ApplicationToken><ns1:DeveloperToken>BBD37VB98</ns1:DeveloperToken><ns1:UserName>-XXXXXX-</ns1:UserName><ns1:Password>-XXXXX-</ns1:Password><ns1:CustomerAccountId>8951263</ns1:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    Please Help me to get out of this .  
    Thank you in advance.
    Deepa Varma 

    Hello Nalin,
              Thank you for the reply . Now I am using
    $campaignProxy ="https://api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v9/CampaignManagementService.svc?wsdl" ;
    // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v9";
        $xmlns = "https://bingads.microsoft.com/AdIntelligence/v9";
    But I am getting 
    GetCampaignsByAccountId failed.
    AdApiFaultDetail exception encountered
    Tracking ID: ca31d743-7b7b-4479-8082-44997d60d549
    Error encountered:
    Message: Authentication failed. Either supplied credentials are invalid or the account is inactive
    Detail: 
    ErrorCode: InvalidCredentials
    Code: 105
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://bingads.microsoft.com/CampaignManagement/v9" xmlns:ns2="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns2:ApplicationToken></ns2:ApplicationToken><ns2:DeveloperToken>BBD37VB98</ns2:DeveloperToken><ns2:UserName>vbridgellp</ns2:UserName><ns2:Password>XXXX</ns2:Password><ns2:CustomerAccountId>8951263</ns2:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    I am able to login to sand box UI and see my campaigns. What may be reason for the error ? 
    Thank you in Advance. 
    Deepa Varma

  • HT201250 i'm getting message: can't be opened because you don't have permission to see its contents. and he operation can't be completed because an unexpected error occurred (error code -8003).

    I took my computer in to have the Backup restored onto my computer after having a new harddrive put onto my 1year 1/2 old MacBook Pro. When i got it home there was a new User that i had to logout of to getting into my normal user. Don't know why this was, just figured the Mac guys that installed my backup did this for some odd reason. Today i could not open any of my files in the backup on the time machine. All the folder had line going thought them and when i clicked on them I revieved this message: can’t be opened because you don’t have permission to see its contents. After talking with that same mac store. I decided to just delete all the files out of the time machine as it was just put back on my computer and i have everything i need. Hours later when i tried to empty the trash i got this messsage: the operation can’t be completed because an unexpected error occurred (error code -8003).
    Any advise how to fix my problem?
    thanks in advance

    While you see a single trash can, in reality there are trash folders on each mounted volume.  I don't use TM but what you are describing implies that a TM drive is no different with the way trash is treated.  So when the TM is unmounted the trash folder on there is gone and thus the trash looks empty.  Remount the drive, the trash folder on it now causes the trashcan to look like something is in it.
    If TrashIt! could not remove the file, I'm sorry, you will need to use the terminal.  We can do this one step at a time so you only have to copy/paste the lines into terminal (except the first time).  So launch Terminal (in utilities).  You might want to make the window that is shown a bit larger with the grow box since it's pretty small.
    This first line is the only exception to the copy/pasting since you have to enter some information.
    sudo ls -laR /Volumes/your-TM-volume-name/.Trashes
    where your-TM-volume-name is the name of your TM volume.  That's the part you have to fill in since I don't know it.
    When you hit return the sudo in that command will cause a prompt for your admin password.  Enter it and hit return again.  Note the password will not be shown as you type it.  Post the results so I can tell you what to do next.
    Note this ls command is not doing anything but listing the files in the TM's .Trashes folder.  Remember I said each drive has it's own trash folder.  .Trashes is it.

  • How do I deal with error code -8003 ?

    When I try to empty my Trash with a certain app in it I get error code -8003. I can't find reference to that code anywhere and do not know how to clean up the trash.
    "The operation can’t be completed because an unexpected error occurred (error code -8003)."

    Try using Trash It!
    Possibly helpful articles:
    The X Lab: Solving Trash Problems
    You can't empty the Trash or move a file to the Trash
    Error -8003 or other problems with emptying the OS X Trash

  • Can someone help me with error 404 and 8003?

    while trying to download episodes of prison break on itunes it stopped and stated that one episode could not download because of error 404 and that another couldnt because of err 8003. ONe of the errirs stated that it could not establish a connection wiht the server but meanwhile another episode downloaded. Can someone please help me.

    See here:
    http://www.adobe.com/support/contact/licensing.html

  • Partial Duplicate Downloads (Error 8003)

    One evening I set a TV series to download on my ATV. The next morning I noticed that episodes were down loading on my iMac. When that had finished, I had a complete series (and nothing else) on my Mac. However, when I return to my ATV as well as all the complete episodes I also have some partial duplicates shown. These files are listed in the downloads menu as 1% complete with the message Download error 8003.
    What I think happened is that my wireless connection was interrupted over night so the episodes could not down load to the ATV. Before this happened, however, the ATV synced and put them in my iTunes down load queue, where they happily downloaded and then were synced back to the ATV.
    I have all the episodes so its not a big problem, but I have all this junk showing on my ATV (so a series is listed as having 12 episodes when it only has 8: I have episodes 1 to 8, plus partial duplicates of episodes 1 to 4).
    Any ideas how to erase the junk from my ATV (it doesn't appear in iTunes)?

    Click the AppleTV device in iTunes to get the tabbed sync menus - if there aren't many tabs you may need to select to 'custom sync' on the ones available. My sync computer has failed so I can't check the exact option.
    There are several posible ways to sort this, some more time consuming than others.
    Those items which directly downloaded to AppleTV may have a trash can icon next to them when they're the current scrolled to item - if so you could just delete them direct from AppleTV.
    Other alternatives would be to remove the sync computer from AppleTV Settings>Computers which will delete all synced data in preparation for a new sync library - it may not remove direct AppleTV downloads though - quick to try but you'd need to add the library agaim with the 5 digit code from this menu and resync stuff. Another alternative would be a factory restore, update software then add back the sync library but this is a last resort in my opinion.
    Did the duplicates sync back to iTunes? If so deleting them from there may remove them from AppleTV at the next sync.
    Oh, how I wish you could drag and drop files to AppleTV in iTunes, and delete/recover content from it in the same way!

  • I'm getting an error code -8003 when I try to empty my trash.

    I recently emptied several old backup files from an external hard drive to the trash folder.  Now when I attempt to empty the trash, I get this message: "The operation can't be completed because an unexpected error occurred (error code -8003).  What should I do?  I just took the computer and external hard drive to an apple store for genius support a few days ago and the tech fixed a few things.  He advised me to empty the backup files, which is what I'm trying to do.

    See this general resume of trash problems.
    I suspect you've been trying to remove some of your Time Machine back ups.   Not a good idea without doing the necessary research first.  Read about ways to solve Trash problems.
    From the X LAB.       Solving Trash Problems     
    Then, for clearing stubborn trash.                Download Trash It! for Mac
    In particular related to Time Machine.       Time Machine - Troubleshooting
    http://pondini.org/TM/E6.html
    Can't empty the trash after deleting backups via the Finder

  • I get an error code -8003 when I try to empty the trash

    I was about to run TechToolPro to defrag etc my external HD when I decided to reduce the size of the Time Machine file by removing the earliest two or three backups which date back to a year ago or so. I realize the error of my ways now but my thinking was to reduce the time it took to defrag etc.
    I had put the files in my trash on the MBP 2.16 GHz Intel Core 2 Duo 4 Gb ram running 10.6.8 which at that time had about 11gib of HD space left. This action brought it down to 3.8 Gb left on the HD.
    cannot
    Now when I try to empty the HD I get an error code -8003 and the HD space remaining has reduced to about .5 Gb.
    What are my options?
    I also have a Super Duper backup.

    Did any of the threads that appear in the "More Like This" section to the right help you?
    You could try this utility and see if that trashes any stubborn files:
    http://www.macupdate.com/app/mac/8214/trash-it

  • ITunes 8003 error with Windows XP too

    On Windows XP Pro I just downloaded 11 of 12 tracks. For the twelfth a 8003 error occured, with the message that the download was stopped because the network was interrupted. But the network is fine! I tried signing out/signing on and checking for purchases, but unfortunately the same result occurs.
    Same than Kaderic on Mac...
    What can I do ?

    Thanks Timmy Y, but the problem has been solved.
    Tonight downloading succeeded on the first try.
    I think this is the site iTunes which was in trouble.
    I suppose they have corrected the problem on this file since yesterday.
    All is OK now !

  • Error Message 8003??  Download won't work!!  Help PLEASE!

    Hi--
    I have a new iPod nano (2d gen) and tried to download music onto it from the iTunes store. Each time, I am foiled at the downloading cycle with "Error Message 8003--unknown error." The download basically freezes between the store and the computer. What am I doing wrong?? Please help!!
    Many thanks!!

    Hello tbsphoto,
    Welcome to the BlackBerry Support Community Forums.
    Based on the information that you have provided it looks like during the software update the device was not able to re connect to the Mac which in turn caused the 507 error on your BlackBerry Smartphone. The 507 error basically indicates that there is no OS on the device. This issue can be resolved by reloading the software on your BlackBerry Smartphone. I am attaching a link to our knowledge base with instructions on how to go about doing so on a Mac.
    Link: http://www.blackberry.com/btsc/KB19767
    -DrP
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Empty trash The operation can't be completed because an unexpected error occurred (error code -8003).

    I can't empty my trash.  The operation can’t be completed because an unexpected error occurred (error code -8003).
    I have started up in a guest account and that show empty trash bucket.
    I have use 'option' or all three, control, option, command.  and nothing works.
    This has been a problem for about 3 weeks now.
    I have an external WD hardrive for back up, these are the files that I try to erase - and I have unlocked each one, still no luck....
    Can some one give me a hint what to do?
    Jan

    Don;
    Plus all of you that have tried to help me with my 'empty trash' problem.  I have it solved!
    I am running a Western Digital external hard drive.  I phoned them just now and they asked me to unplug the WD drive, and I reset the back up occasions, it was backing up every hour, which was way too often. The trash emptied when I unplugged and now I have rebooted and the trash is still empty
    Thanks to all who gave me suggestions as to what I needed to do to empty my trash can!  It had more than 1600 items living there.  What a relief.
    Jan

  • When trying to empty trash, (securely or not), I get this: The operation can't be completed because an unexpected error occurred (error code -8003).

    When trying to empty trash, (securely or not), I get this: The operation can’t be completed because an unexpected error occurred (error code -8003).  FWIW, there are nearly 3000 items in my Trash - although this does not seem the source of the problem.

    Have you read for possible solutions over in the "More Like This" thread over here?-----------------------> 

Maybe you are looking for

  • Word wrapping in row header cell in OLAPDataGrid

    I have an issue with the OLAPDatagrid. Does anyone know how to wrap text in the row header cells? (to avoid confusion, i will demonstrate my issue using a grid with 1 row and 1 column dimension). OLAPDataGrid has 2 properties: wordWrap, which only se

  • Does anyone know what MacError Reporter is?

    I have recently started to receive MacErrorReporter icon/messages on my Mac laptop.  They started to arrive just after I updated my maps on Garmin GPS units. Does anyone know what this means and how I can stop this icon/message automatically appearin

  • IMovie won't update because of an old card.

    Hello! Besides buying a new iMAC, what can I do to get an updated card for my iMAC (purch. 03/2008) so that I can update the newest version of OSX Maverick iMovie App??  I upgraded to OSX Maverick yesterday.  I'm not sure what my options are on this.

  • Change default realm name ("WebLogic Server")

    Hi, I'm using WLS5.1 and ACLs, now I'd like to change the realm name coming up in the browser popup where now "Realm: WebLogic Server" shows.How can I do this? Thanks, tino

  • ChaRM - Mainenance Cycle in two system landscape - possible?

    Hi Experts, we are trying to create a maintenace cycle with two systems. We have a system defined as "Evaluation System" and the second is defined as "Production System". Generally Question Is it possible to create a maintenace cycle for a two-system