Having problems with CC desktop, not syncing at all.

Hi my CC desktop says it's syncing but it never ends syncing can anybody help?
Cheers

Hi,
Can you confirm that your all of your files are on creative.adobe.com under the Assets section?. Please send me your log files to [email protected]
Your log files can be found in the following locations:
Mac:
/Users/<username>/Library/Application Support/Adobe/CoreSync
Windows:
C:\Users\<username>\AppData\Roaming\Adobe\CoreSync
'Library' on Mac and 'AppData' on Windows are both hidden folders. Please read these pages for help on showing these folders:
http://helpx.adobe.com/x-productkb/global/show-hidden-files-folders-extensions.html (Win)
https://helpx.adobe.com/x-productkb/global/access-hidden-user-library-files.html (Mac)
Adobe CC Sync issues
Thanks
Warner

Similar Messages

  • Am having problem with my iphone4s not syncing with my iPad

    Am having problem with my iPhone 4s calendar events showing up on my iPad .  Have turned calendar off &amp; on in both devices, to no avail

    On the iPhone, check Settings>Mail,Contacts,Calendars>Default Calendar.  Here be sure you have selected the calendar listed under your iCloud account name as your default.  If you haven't, change this, then enter a new event on the phone's calendar and see if it syncs to the iPad now.

  • I have new Ipad...MacBook Pro with Mountain Lion:  I have problems with certain applicaitons not sync'ing (like email, cal, notes)...need help

    I have problems with certain applicaitons not sync'ing (like email, cal, notes)...need help

    There are a few twists here. This is my opinion of a quick and easy way to do what you want to do.
    Get a 2.5" sata enclosure like this one - this is just a sample:
    http://www.amazon.ca/eForCity-2-5-inch-SATA-Enclosure-Blue/dp/B0083OOV9G/ref=sr_ 1_1?ie=UTF8&qid=1360012807&sr=8-1
    Put the new ssd in the enclosure, connect it to the Mac using the included USB cable. It is now an external drive.
    Format the drive using Disk Utility.
    Download and run Carbon Copy cloner, and clone your drive to the new external.
    Shutdown. Open the MBP and remove the SSD drive from the enclosure and put it in the place of the old drive.
    Boot the MBP. Once you know the new drive is up and running, you can get to the process of installing the old one in the optical bay.
    http://mac.tutsplus.com/tutorials/hardware/how-to-upgrade-your-macbook-pro-to-an -ssd/

  • I am having problems with my music collection, after burning all of my music to the computer I organized it into folders and placed it in the iTunes Folder. Starting on a new computer now. I can get my music from old computer?

    I am having problems with my music collection, after burning all of my music to the computer I organized it into folders and placed it in the iTunes Folder. As of now i realize this was a mistake. Starting on a new computer now. I cant get my music to transfer from the itunes folder on the old computer? I keep getting error "Can't Read from the source file or disk." Whenever I got to folder properties its always checked read only. But when i play the song it works just fine. Im sure this is just because I added music into itunes folder but is there anyway to fix it?

    WMA files are 'window media audio' files, which is a Microsoft format. If you want to add them to your iTunes library on your Mac then you will need to convert them into a compatible format first. If you still have your windows machine then iTunes for Windows can convert them from WMA to MP3 format : https://discussions.apple.com/message/24158701#24158701
    Or try a search for, for example, 'convert wma to mp3' to find programs to convert them.

  • Anyone having problem with iphone getting not delivered message after sending picture and it really is getting delivered to recipient.

    Anyone having problem with iphone getting a not delivered message after sending pic and it really is getting delivered to recipient.

    Same problem here with and I've done everything shy of a total reset which I also find unacceptable. This problem exists on all iMessage platforms (iPhone, iPad, and Mac) so I don't see how restoring my iPhone would help the problem.

  • I am having problem with my imessages not going through

    I am having problems with my tx messages not going through.  some do and some don't

    Do you mean after a phone update? Do you mean just at home? Does it happen everywhere?  Do you have wifi turned on? If its on and your not connecting just clear out the connections (forget) then reset up the connections and see if that helps.  Did you get a Jelly Bean update? Many people have had wifi connections issues because your router is either outdated and not supported with the new os, or it needs a firmware update.  Post back with more information.

  • Having problems with some links not working. Especially with webhost

    I sent this about 1/2 hour ago but never received the confirming email so thought I would try again. Sorry about the dupe if you did receive this.
    I am having a problem with Firefox. I have a website that I need to check stats with. I was able to login but when I clicked on the link for the stats nothing happened. No new page, no new window, no new screen. I tried all links and still nothing. At bottom of page it said "done". Then I got out of the webhost and tried other links, some worked some didn't.
    I went into Safari to check, and I was able to get my stats, so I tried again on Firefox, still nothing. I noticed a few other problems also, where I got the strangest things happening. Like when I tried to get on GoogleAds and YahooAds it didn't recognize me and also started redirecting me to other stuff.
    I prefer using Firefox, is there anyway to make the fixes?

    Downgrading is not supported by Apple.
    For better or worse, the burden is on app developers to make their apps compliant to the current iOS. If they haven't done that, then unfortunately users are stuck until they do so. The most you can do is communicate your issues to your app developers and see if they will get an update out to make their app work again. That or find another app.

  • I am having problem with my phne not being able to pick up any wi - fi service ?

    Does anyone have a similar problem with their Motorola phone ?

    Do you mean after a phone update? Do you mean just at home? Does it happen everywhere?  Do you have wifi turned on? If its on and your not connecting just clear out the connections (forget) then reset up the connections and see if that helps.  Did you get a Jelly Bean update? Many people have had wifi connections issues because your router is either outdated and not supported with the new os, or it needs a firmware update.  Post back with more information.

  • Having problems with File IO, not sure what im doing or lack thereof.

    This is my code, basically I create a class which reads data from a .dat file which contains names and salarys, based on a question i found on a forum online, anyways I first created the .dat, now I need to create a class which takes the .dat file and writes it to a .txt file...he is my code I keep getting an EOFException which I have read in the docs is caused by an unexpected stop in reading of the data from file. Any assistance with regards to this problem would be much appriciated. Here is my code:
    import java.io.*;
    public class EmployeeRead implements Serializable{
         public static void main(String[] args){
         String inFile = null;
         String outFile = null;
         if (args.length<2) {
         System.out.println("You must specify two input files and one output file.");
         try {
         InputStreamReader reader = new InputStreamReader(System.in);
         BufferedReader console = new BufferedReader(reader);
         System.out.print("Please type the name of the .dat file: ");
         inFile = console.readLine();
         System.out.print("Please type the name for the .txt file (Output): ");
         outFile = console.readLine();
         catch(IOException e) {
              System.err.println("Problem with input: " + e);
         System.exit(1);
         else {
         inFile = args[0];
         outFile = args[1];
         try {
         //inFileReader = new ObjectInputStream(inFile);
         //inFileBuffered = new BufferedReader(inFileReader);
         //ObjectInputStream inFileReader = null;
         //BufferedReader inFileBuffered = null;
         //Input Streams:
              FileInputStream obj = new FileInputStream(inFile);
              ObjectInputStream in = new ObjectInputStream(obj);
              //output stream:
              FileWriter out = new FileWriter(outFile);
         String name = null;
         Double salary = 0.0;
         Employee temp = (Employee)in.readObject();
         Class nameClass = temp.getClass();
         temp = new Employee("SallyJones", 23456);
         while(temp != null){
              name = (String)temp.getName();
              salary = (Double)temp.getSalary();
              out.write(name + " - " + salary);
              temp = (Employee)in.readObject();
              catch(FileNotFoundException e){
              System.err.println("File not found: " + e.toString());
              catch(IOException e){
                   System.err.println("Error with file: " + e.toString());
                   e.printStackTrace();
              catch(IndexOutOfBoundsException e){
                   System.err.println("Index is out of Bounds: " + e.toString());
                   e.printStackTrace();
              catch(NullPointerException e){
                   System.err.println("Error with String(NullPointerException):" + e);
                   e.printStackTrace();
              catch(ClassNotFoundException e){
                   System.err.println("Error with Class: " + e);
                   e.printStackTrace();
    }

    Sorry, I was unaware of the code function. My Bad, here is the formatted code:
    import java.io.*;
    public class EmployeeRead implements Serializable{
         public static void main(String[] args){
             String inFile = null;
             String outFile = null;
              if (args.length<2) {
                  System.out.println("You must specify two input files and one output file.");
                  try {
                     InputStreamReader reader = new InputStreamReader(System.in);
                     BufferedReader console = new BufferedReader(reader);
                     System.out.print("Please type the name of the .dat file: ");
                     inFile = console.readLine();
                     System.out.print("Please type the name for the .txt file (Output): ");
                     outFile = console.readLine();
                  catch(IOException e) {
                          System.err.println("Problem with input: " + e);
                     System.exit(1);
               else {
                  inFile = args[0];
                  outFile = args[1];
               try {
                 //inFileReader = new ObjectInputStream(inFile);
                  //inFileBuffered = new BufferedReader(inFileReader);
                  //ObjectInputStream inFileReader = null;
                   //BufferedReader inFileBuffered = null;
                  //Input Streams:
                   FileInputStream obj = new FileInputStream(inFile);
                   ObjectInputStream in = new ObjectInputStream(obj);
                    //output stream:
                    FileWriter out = new FileWriter(outFile);
                  String name = null;
                  Double salary = 0.0;
                  Employee temp = (Employee)in.readObject();
                  Class nameClass = temp.getClass();
                  temp = new Employee("SallyJones", 23456);
                  while(temp != null){
                      name = (String)temp.getName();
                      salary = (Double)temp.getSalary();
                        out.write(name + " - " + salary);
                       temp = (Employee)in.readObject();
              catch(FileNotFoundException e){
              System.err.println("File not found: " + e.toString());
              catch(IOException e){
                   System.err.println("Error with file: " + e.toString());
                   e.printStackTrace();
              catch(IndexOutOfBoundsException e){
                   System.err.println("Index is out of Bounds: " + e.toString());
                   e.printStackTrace();
              catch(NullPointerException e){
                   System.err.println("Error with String(NullPointerException):" + e);
                   e.printStackTrace();
              catch(ClassNotFoundException e){
                   System.err.println("Error with Class: " + e);
                   e.printStackTrace();
    }

  • Is anyone having problems with FB app not opening and calendar appts disappearing after update

    Since I did the most recent update yesterday, the FBI app won't open.  Also, all my reminders have disappeared.  All still work on iPhone, just not on pad.
    Thanks in advance!

    My problems with the Healt App are all over the map. The information on Withings Health Mate is totally accurate, and updates immediately.  I have their scale (since 2011) and wireless blood pressure monitor. Also, I find the heart rate senson on the iPhone 6 to work well, every time.
    This issue for me is with Apple's Health app. I get ridiculous readings on the Dashboards. For example, it shows my daily average in steps as 170,688, and miles walked at 80. Hardly! Additionally, the Dashbord widgets will disappear/reappear for no reason. I have tried switching the priority of data sources for the steps dashboard between Withings and my iPhone 6 (because it is indicated that the top source governs the dashboard info), to no avail.
    Lastly, I don't know how to interpret the infomration on the individual dashboards. On the same line as the word "Steps" there is a number, i.e. 14,272 steps, and just under it the word "Today." However, when I switch from "Day," "Week,," "Month," and "Year," those number don't change. Below the word Today is a number (which changes all the time), and at the bottom of the widget, just above the month (October now) is the number 1,149,749. Nice.
    I would like to get the Apple Watch next year, but if the Health App cannot be fixed I may not.

  • Anyone else having problem with RAID and iTunes syncing photos in Vista?

    Hello,
    For whatever reason iTunes can not load some of the photos from C drive. It can do it from D drive, though VERY slow. Both C and D are NTFS system, but C is a RAID 0 drive (implemented by hardware on motherboard, Intel 82801G controller). I just wander if this is something related to iTunes not working correctly with RAID drivers, or is it something else? I should say that ALL other programs and games working fine on this drive.
    Thanks for the replies.

    The problem is with Windows Vista using the NTFS file system, check out this post for the official solution. This has worked perfectly for me everytime I've tried it:
    http://i.nconspicuo.us/2007/10/28/syncing-photos-to-iphone-with-windows-vista-us ing-itunes-sync-pictures-solution/

  • Having problems with one computer not "seeing" the Airport base station.

    Aloha:
    I have an Airport router hooked up to the internet via Cable. I have a laptop and G4 desktop talking to the the Airport Base Station via their respective Airport cards. This allows me to get to the internet with both of my computers. This system has worked just fine for several years, but recently my desktop computer has started to be unable to connect to my Airport Base Station. At first it was intermittent, but now it has stopped completely. The laptop continues to be able to get to the internet via my Airport base station.
    The desktop is running OS 10.3.9 and the airport card in the desktop passes the hardware test that came with the laptop. But it can no longer see the signal from the ABS.
    What might my problem be?
    Dan

    Hi Clinton:
    I have tried that to no avail. I don't see any
    signal, so I see no networks "in the box below" to
    choose. My airport card does not see a signal, but
    the airport card checks out ok in the hardware test.
    Thanks for replying, Clinton, much appreciated.
    Dan
    Have you tried choosing "other..." and then entering the name of your network?

  • We are still having problems with the "Could not initialize the application's security component" error message after performing suggested fixes?

    We have been attempting to resolve this error in our Lab Environment with FireFox version 14.0.1. The application has been virtually installed in our PC environment, running WIN 7 and launches without error for most users. When performing the suggest "fixes" at http://support.mozilla.org/en-US/kb/couldnt-initialize-applications-security-component we found:
    1. There is adequate hard drive space
    2. Permissions are set correctly.
    3. Once the "Cert8" file is deleted it does not regenerate upon logging out and relaunching Firefox. Not sure why this occurs.
    4. Could not create a new profile since these rights are not extended to users in the lab environment.
    Is anyone using Firefox in a similar lab environment, having this same issue and been able to resolve the problem? Does version 15.0.1 address this problem and provide a fix?

    Try to remove or rename the secmod.db (secmod.db.old) file in the Firefox Profile Folder.
    If that didn't help then remove or rename cert8.db (cert8.db.old) as well.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    * C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\
    The "Application Data" folder in XP/Win2K and the "AppData" folder in Vista/Windows 7 are hidden folders.
    *http://kb.mozillazine.org/Show_hidden_files_and_folders

  • TS4196 Anyone else having problems with messages beta not detecting facetime hd camera?

    I searched the web , but couldn't find anyone else with the problem I am having , I'm using a 2.4 GHz i5 macbook pro , downloaded the beta for messages but lost facetime camera it displays this message (This computer does not support video chats.)  i just can't get it to work properly with messages.
    Thanks in advance.

    HI,
    As I intimated Messages can either Invoke FaceTime for Video Chats with those people (Contacts) that you can iMessage.
    It can also do the iChat Video.
    If your Buddies only have iChat then you have to have a Screen Name if you don't already have one.
    I will state this another way as well.
    In Messages beta menu > Preferences > Accounts you have at least two "Accounts" once you have entered your Apple ID
    One of these is the Bonjour option (Runs a Buddy list like iChat used to - see Window Menu if Logged in)
    The other is the iMessage account (your Apple ID)
    It is possible that your also have some iChat Accounts from before and these may be listed.
    They could be AIM or Jabber Logins (And both those type are effectively sub-divided)
    If you do have other Accounts and they have the tick box in "Enable this Account" then they will appear in the Window Menu as a list with Keystroke listed next to them.
    These can be used to dispaly the Buddy Lists much like iChat.
    By default though they care gathered in to one list (See the Preferences > General Section for Unlinking them)
    @mac.com and @me.com ending names from Apple are valid AIM login names (Some people may find an MobileMe issued @me.com account does not work if it has run out).
    Facebook and Google Mail IDs are valid Jabber IDs (Providing you enable the "Talk" or "Chat" option in the relevant Account Settings.
    If your Buddy logs into AIM with their Valid name then you should use a AIM valid name.
    If they use a Jabber valid name then you use a Jabber valid name.
    10:47 PM      Sunday; June 10, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.7.4),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • My Apple TV is having problems with slideshows for photos synced from iTunes. How can I make it play thew whole slideshow without starting the loop again half way through?

    My Apple TV randomly returns to the beginning in the middle of the slideshow for no reason. I don't habve the photos on shuffle
    I started the slide show many times and somtimes it got through 20 photos, other times 50. Then all of a sudden, it goes back to the beginning and starts again. It's so frustrating as there is no reason for this and it doesn't loop back to the start on the same photo each time. I have about 350 photos in the album and they all loaded fine as thumbnails before I played the slideshow.
    Can anyone help please?
    Thanks, Adam

    Have solved my own problem. My PC sits on the floor so I have a four-port USB hub on my desktop with one port in use. I use one of the other three ports for USB-related task. As I was shutting down for the night I had a - what turned out to be inspired - thought about whether there was an adequate power supply from the hub. I then tried the iPod USB connection directly into the front of my machine and everything worked. It seems that an inadequate power supply was the cause of this strange set of conditions.

Maybe you are looking for

  • HP Laserjet p1102w Wireless Problem

    hi  I have HP Laserjet p1102w . All Drivers and updates are installed correct and diagnostic utilities can not help. the problem is , If First I turn on the PRINTER and then the wireless MODEM ( router ) , It works perfect and it pronts wireless , BU

  • Digital output to switch external hardware

    hello all I am having trouble with error 200077 at a DAQ assistant.  I am trying to output a signal of boolean values (skinny blue wire) but will not "go through" the DAQ board. I see a chart on the front panel that is constantly being updated throug

  • Lost WebDB username and password

    Is there a way to change the WebDB username and password for Oracle 9i Application Server Enterprise ed. Is there a script in the server where this can be altered, or will i have to reinstall. When i access the url iam asked for a WebDB username and

  • Schema replication in 5.2

    Hi, I had setup multimaster replication between two ids5.2 but schema replication is not workin while it should be automatic. I can change the 99user.ldif files manually, but I want to make sur that schema replication is enabled and ensured after(and

  • All apps freeze after os x update

    After I updated to Mavericks all of my apps open, but freeze. I have to force quit all of them just to get them to close. does aanyone have any idea how to fix this?