Could not create~/library/application support/adobe/coresync, could not create~/library/application support/adobe/coresync

could not create~/library/application support/adobe/coresync

Try below steps
Click on Finder and then hold Command + Shift + G keys on your keypad
It will open Go to folder window, type  exactly ~/Library and click on Go. Make sure to include ~
Then open Application Support
Right click on Adobe folder
Click on get info
Click on symbol and Add Administrator and your current user name ( if not added )
Then give read and write permission to user name and admin
Then click on Gear icon and select 'Apply to Enclosed
Then check if you are getting same error again

Similar Messages

  • The procedure entry point ?videoTracks@QTMovie@@QBE?$Vector@V?$RefPtr@VQTTrack@@@***@@$0A@VCrashOnOverflo w @2@@WTFAAXZ could not be located in the dynamic link library C:\Program Files (x86)\Common Files\Apple\Apple Application Support\WebKit.dll.

    After I updated my Itunes I always get this Error:
    The procedure entry point
    ?videoTracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0A@VCrashOnOverflow @2@@***@@XZ could not be located in the dynamic link library C:\Program Files (x86)\Common Files\Apple\Apple Application Support\WebKit.dll.
    And the I get:
    iTunes was not installed correctly.  Please reinstall iTunes.
    Error 7 (Windows error 127)
    I tried the following:
    - Re-Installing Itunes
    - Uninstalling every software from Apple deleting every registery entry and then re-installing it. (itunes, quicktime, bonjour etc.)
    This error is really a pain in the ***. I run Windows 8.1. When I go back to a restore point then Itunes works again. I searched but didn't find a solution that worked for me. Please help me.
    As a software engineer, I really wonder if this is 98 or 2014....

    Try the following user tip:
    iTunes for Windows 11.1.4.62: "The procedure entry point: ?videoTracks@QTMovie@ [...] could not be located ..." error messages when launching iTunes

  • Using Maverick, error message: Adobe Reader could not open '***.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    Receiving error message using current Maverick version: "Adobe Reader could not open '***.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).".  Is fix the same as on previous OS versions?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print or save PDF's displayed in Safari, you may be able to do so by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar should appear under the cursor. Click the printer or disk icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • I keep getting an error on my MAC when i try to open any and all JPG FILES.  How do I correct  Adobe Reader could not open 'images rest 12-4.jpg' because it is either not a supported file type or because the file has been damaged (for example, it was sent

    Adobe Reader could not open 'images rest 12-4.jpg' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    that is the message how do i correct this problem

    It sounds like your file associations are messed up and Reader is trying to open your .jpg files. Is this correct?
    If so, you just need to change the associations to choose what application opens them. Here's how: Change File Associations in Mac OS X

  • Adobe Reader could not open 'filename.pdf'" because it is either not a supported file type...

    I have a website that holds 23 different PDF's. They all download fine and open correctly when downloading from a Mac computer. They even download and open fine from a Mobile Phone. However my client is getting an error over and over again. I have tested it out and this is what I have come up with.
    Error:
    Adobe Reader could not open 'filename.pdf'" because it is either not a supported file type or because the file has been corrupted (for example, it was sent as an email attachment and wasn't correctly decoded)
    I have resaved the PDF's to be compatible with Reader 6.
    Works fine with
    All Mac's using either Firefox, Chrome or Safari using Pro and Reader
    iPhone downloads using iBook
    PC's when downloading from Firefox viewing in Reader 9
    PC's when downloading from IE 6.0 view on Reader 8
    Error Message When
    PC when downloading from IE 7 viewing on Reeder 9
    PC when downloading from IE 8 viewing on Reader 9
    Here goes the URL when the files resides.
    Please help. I can not find a solution.

    Hi i have solved the ie bug creating the pdf phisically, this is the code i use:
    $hostname = "XXXXXX";
    $database = "XXXXX";
    $username = "XXXXX";
    $password = "XXXXXX";
    $db = mysql_pconnect($hostname, $username, $password) or trigger_error(mysql_error(),E_USER_ERROR);
    mysql_select_db($database, $db);
    $query_rs_docs = "SELECT * FROM doc WHERE doc_name='".$_GET['doc_name']."'";
    $rs_docs = mysql_query($query_rs_docs, $db) or die(mysql_error());
    $row_rs_docs = mysql_fetch_assoc($rs_docs);
    $totalRows_rs_docs = mysql_num_rows($rs_docs);
    $t_pdf = fopen("/path to doc folder/doc/".$row_rs_docs['doc_name'], "w+");
    fwrite($t_pdf, $row_rs_docs['doc_file']);
    fclose($t_pdf);
    header('Location: http://www.portalesardegna.com/doc/'.$row_rs_docs['doc_name']);
    the db table (doc_name must contain the .pdf extension):
    CREATE TABLE IF NOT EXISTS `doc` (
      `doc_ID` int(10) NOT NULL auto_increment,
      `doc_name` varchar(255) NOT NULL,
      `doc_file` longblob NOT NULL
      PRIMARY KEY  (`doc_ID`)
    ) ENGINE=MyISAM;
    Message was edited by: Portale Sardegna

  • Getting error "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    How to fix this problem
    "Cannot open the file "*****.INDD". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application."

    When I have seen this message it is either when I try to open a document with an older version of Indesign E.g. an indesign 2014 document with Indesign CC.
    The other time I have seen it is to open an Indesign CC document with Indesign 2014 which does not have Mindsuite - a plugin I use. Mindsuite, as yet, has not upgrade the plugin for Indesign 2014 therefore it recognises that a the document was created withe a plugin that the 2014 version does not have installed.
    I believe your problem will be something like that.

  • Japanese characters alone are not passing correctly (passing like ??? or some unreadable characters) to Adobe application when we create input variable as XML data type. The same solution works fine if we change input variable data type to document type a

    Dear Team,
    Japanese characters alone are not passing correctly (passing like ??? or some unreadable characters) to Adobe application when we create input variable as XML data type. The same solution works fine if we change input variable data type to document type. Could you please do needful. Thank you

    Hello,
    most recent patches for IGS and kernel installed. Now it works.

  • Adobe Reader could not open 'A9R8EF5.tmp' inside of an air application

    Hello,
    I am getting this error after updated acrobat reader to 11.0.10, when i try to open pdf files inside of an adobe air application.
    Adobe Reader could not open 'A9R8EF5.tmp' because it is either not a supported file type or because the file has been damaged.
    But if i go directly to the file locations I can open them with acrobat.
    How this can be fixed?
    But the files exist.
    Thanks

    Hello  Mr. Raja,
    If I may take your time. I have problem something like this.
    There is application called GME in which user entered project estimation(GME) on EP Portal. It is Customization Application. A program where anyone can download the complete project estimation in PDF file. Program is working fine in MMD(portal and R/3) but not working in MMQ(portal and
    R/3).(PDF file is not getting opened when click 'Download')
    Please find the reply from Application developer
    "I am fetching data from R/3 database from Webdynpro Module Tcode(SE80)
    application name ZPS_WD_GME ,and stored into a workarea and passing that workarea to smartform application ZPS_SF_GME_DOWNLOAD.Then calling function SSFCOMP_PDF_PREVIEW it will export all data and that all data will convert into pdf through Convert_OTF function module .After the completion of above steps calling method cl_wd_runtime_services=>attach_file_to_response use for downloading the pdf file."
    Please help us since this is to go Live

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • I have a macbook pro with the latest update, and any Pdf file I have opened online or downloaded and I try to print it gives me this message Adobe Reader could not open 'April-15th-2014-Messenger.pdf' because it is either not a supported file type or beca

    Adobe Reader could not open 'April-15th-2014-Messenger.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    Most likely http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html

  • I bought an ebook but when I  try to download it I receive a message stating 'Adobe reader could not open .....acsm because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wa

    Can anyone assist me? I keep receiving this message when I download my ebook ''Adobe reader could not open .....acsm because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't decoded).'
    Much appreciated

    I think you should ask in the Digital Editions forum, Adobe Digital Editions

  • Help.  How do I fix this?  Have been using adobe reader opening this template for months and now all of the sudden its not working.Adobe Reader could not open 'NSCAAInteractiveSessionPlan.pdf' because it is either not a supported file type or because the

    I coach youth soccer and use a PDF template to save my sessions in.  Today I got this message when trying to open one of my sessions.
    Adobe Reader could not open 'NSCAAInteractiveSessionPlan.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    How can I fix this?  I have not done anything I don't normally do.

    What is your operating system?  Reader version?

  • Why can't I open a pdf file on my desktop?  I keep getting this message: Adobe Reader could not open '8pdk_96_4.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and w

    Why can't I open a pdf file on my desktop?  I have Adobe Reader and running OS 10.10.1  I keep getting the same message: "Adobe Reader could not open '8pdk_96_4.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."

    I tried that.
    I saved the file 8pdk_96_4.pdf to my desktop and tried to open it using Adobe Reader but I get the same message: Adobe Reader could not open '8pdk_96_4.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

  • Microsoft Windows 7 x64 Home Premium Edition (Build 7600) Dell Inc. Inspiron N7010 iTunes 10.7.0.21 QuickTime not available FairPlay 2.2.19 Apple Application Support 2.2.2 iPod Updater Library 10.0d2 CD Driver 2.2.3.0 CD Driver DLL 2.1.3.1 Apple Mobile De

    Microsoft Windows 7 x64 Home Premium Edition (Build 7600)
    Dell Inc. Inspiron N7010
    iTunes 10.7.0.21
    QuickTime not available
    FairPlay 2.2.19
    Apple Application Support 2.2.2
    iPod Updater Library 10.0d2
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.0.0.59
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0032B09C094C1B88
    Current user is not an administrator.
    The current local date and time is 2012-09-26 16:25:35.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) Graphics Media Accelerator HD
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {4C5C6911-9B8F-4CAF-BCB3-36495F443DC9}
    Description:          Microsoft Virtual WiFi Miniport Adapter #2
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 07:00:00 1970
    Lease Expires:          Thu Jan 01 07:00:00 1970
    DNS Servers:
    Adapter Name:          {9A01C758-72D3-4F24-8B9C-402D925B9FC5}
    Description:          Intel(R) Centrino(R) Advanced-N 6250 AGN
    IP Address:          192.168.1.5
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.1
    Lease Obtained:          Wed Sep 26 15:09:47 2012
    Lease Expires:          Sat Sep 29 15:09:47 2012
    DNS Servers:          192.168.1.1
    Adapter Name:          {B98F7EEA-03A3-4616-B167-E9E4C6A09439}
    Description:          Intel(R) Centrino(R) WiMAX 6250
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 07:00:00 1970
    Lease Expires:          Thu Jan 01 07:00:00 1970
    DNS Servers:
    Adapter Name:          {70E7745B-22AB-41A8-A36B-393DCE93A39A}
    Description:          Atheros AR8152 PCI-E Fast Ethernet Controller
    IP Address:          192.168.1.4
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.1
    Lease Obtained:          Wed Sep 26 15:09:33 2012
    Lease Expires:          Sat Sep 29 15:09:33 2012
    DNS Servers:          192.168.1.1
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-09-26 16:17:01.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.3.0),
    E: HL-DT-ST DVDRWBD CT30N, Rev A100
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.7.0.21 (x64) is currently running.
    iTunesHelper 10.7.0.21 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34.  Device is working properly.
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    i cant access to itunes store
    Can you walk us through what happens when you try to connect to the Store, please?

  • Adobe AIR could not be installed because another application is already being installed

    OS Windows XP
    If I try to start a new setup I receive the following message:
    "Adobe AIR could not be installed because another application is already being installed. Complete the first installation before proceeding with this one."
    This is the messagge when I try to remove Adobe Air 1.0 from Control panel:
    "Another installation is already in progress. Complete that installation before proceeding with this install."
    This is the log file:
    [2011-04-08:19:59:21] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-04-08:19:59:21] Commandline is:
    [2011-04-08:19:59:21] No installed runtime detected
    [2011-04-08:19:59:23] Starting runtime install. Installing runtime version 2.6.0.19120
    [2011-04-08:19:59:24] Installing msi at d:\docume~1\carlo~1.zan\locals~1\temp\air78.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-08:19:59:27] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1618" errorID=5008]
    [2011-04-08:19:59:27] Rolling back install of d:\docume~1\carlo~1.zan\locals~1\temp\air78.tmp\setup.msi
    [2011-04-08:19:59:27] Rollback complete
    [2011-04-08:19:59:27] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1618" errorID=5008]
    [2011-04-08:19:59:28] Runtime Installer end with exit code 7
    In the past I had problems with a virus and I removed some voices on regedit. I think I've combined some mistake.

    Hi,
    I'm sorry you're having problems installing/uninstalling air.  Have you tried rebooting to see if that resolves the issue? 
    If it still fails, can you enable MSI logging using the instructions found on the following page and then post the msi log contents for review?
    How to enable Windows Installer logging
    Thanks,
    Chris

  • Adobe Reader could not open a pdf file - either not supported file type or file damaged

    On March 5th, I started getting the Adobe Reader error message "Adobe Reader could not open a pdf file because it is either not supported file type or the file has been damaged.
    I get this when I try to open the pdf file as an attachment in Outlook 2013 from my G-Mail account.  If I save the attachment and then try to open the pdf document, I get the same error4.
    I get this error message with every pdf file that now comes to me in Outlook.
    If I log on to my G-Mail I am able to open the pdf document.  If I also save the attachment to my computer, I do not get the error message when I open the pdf file. This would suggest the file is okay
    This would lead me to believe the problem maybe with Outlook.
    I'm using Adobe Reader XI v11.0.10
    I'm using Windows 8.1
    Is anyone encountering this same issue with outlook?

    I copied it again.  Do you see it?  BTW, how do I set privacy?  (I'm new at this)
    I opened with two different notepads and got different information.here it is from Windows Notepad.  First few lines are:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
    >
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">td img {display: block;}</style>
    </head>
    Here it is from MS Notepad:
    <HTML><HEAD><style>.ending {font-family: Calibri; font-size: 18px;}</style><BODY><TABLE><TR><TD colspan=100%><a href="http://www.trulynolen.com/questionnaire?l=14115468&o=141050070&z=85087-7515"><img src=http://newsletter.tnolen.com/email/service.png border=no></a></TD></TR><TR><TD align=center class="ending">If you would not like to receive email communication from Truly Nolen in the future, please <a href="http://newsletter.tnolen.com/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]">click here</a></TD></TR></TABLE></BODY></HTML>

Maybe you are looking for