PSE8 Backup/Synchronization not working for more than a month

1. Reconnecting files shows that a file is not connected; however, no file is listed. How do I find missing file's properties.
2. Backup/synchronization preferences works fine.
3. I can select one or more or the whole catalog.
4. The twirly icons show next to the album(s) for a second or show but then the synced icon remains in album/albums.
5. I click OK and after the hour glass shows a while, it finishes.
6. I click on icon and see that sychronization is on.
7. If I check (unsynced items, synced items, or items marked for sync) it shows nothing and says that none of those choices matches.
8. I have repaired and reindexed countless times (never has there been a "repair" problem.
9. I click on optimize and that works.
10. After that I notice "generating thumb nails" and the twirly thing moving. I've let it generate thumbnails for more than 24 hours and it's still going.
I have spent countles hours during day and night, and I can't get it to work.
I noticed that someone wrote that he had a similar problem that began with his using the IPAD. And I started using the IPAD also, but I couldn't sync my files with photoshop.com before that.
Customer service and Help provides me with no answers. What should I do?

Hi clairenanak:
Sorry to hear about the troubles.
On your #1, you may have disconnected files of media types that are not visible. To ensure that all media types are visible, go to View > Media Types, and check any items that are not currently checked. Then try the Reconnect.
As far as backup/sync not working, disconnected files can stop sync from working.
After resolving the disconnected files issue, let us know if sync is not working. We may need to look at the sync log to determine why.
As for the Organizer constantly generating thumbnails, this could indicated that you have many files, for example 10,000, in your catalog.
If you have many files in your catalog, then you may need to just wait for the process to finish.
It may also indicate a problem with the thumbnail cache that can't be repaired by the Optimize command.
You can manually reset this file by doing the following:
Determine the name of your Elements Organizer catalog.
The name of the catalog appears in the lower-left of the Organizer.
    Alternatively, you can open the Organizer and then click File >  Catalog. The name of the catalog will show in the list at the bottom  with " [current]" after it.
Close the Elements Organizer.
Navigate in Windows Explorer to the folder that contains your catalog. Here are the default locations:
   Windows 7 or Vista: C:\ProgramData\Adobe\Elements Organizer\Catalogs\<CATALOG NAME>  
Click Start, type "%ProgramData%" (including the quotation marks) into the Start Search, and then press Enter.
Open each folder in the above structure until you have opened the catalog folder.
   Windows XP: C:\Documents and Settings\All Users\Application Data\Adobe\Elements Organizer\Catalogs\<CATALOG NAME>  
Choose Start > Run, type "%AllUsersProfile%\Application Data" (including the quotation marks) in the Open text box, then press Enter or click OK.
Open each folder in the above structure until you have opened the catalog folder.
   NOTE: Replace <CATALOG NAME> with the name of the catalog that you determined in Step 1 above.
There should be a file called thumb.5.cache, which is the thumbnail cache. Delete this file.
The next time you open the Elements Organizer, the thumbnail cache will begin to rebuild. This may take some time, depending on the number of files you have in the catalog.
HTH

Similar Messages

  • LSMW For Converting Open Sales Orders (not working for more than 1 item)

    Hi,
    I am using following standard object for Open sales orders .
    Object               0090   Sales documents                   
    Method               0000                                     
    Program Name         RVINVB10                                 
    Program Type         D   Direct Input                         
    Its not working for more than 1 line item.
    For more than 1 line item its giving Error saying that
    '102122                         V1                   845
    Print parameter SAPML2 1 is not defined
    Can anybody help me out in this regard.
    Thanks in advance.
    Nitin.

    hello, friend.
    i will still research the subject.  but the first thing that comes into my mind is t-code VA05.  with this, you have the option to change the Plant en masse.  so a possible workaround is for you to list a number of sales orders using VA05.  you then sort the line items by Plant.  choose all items with the same plant, change the plant via mass change... then change back to the original plant.  hopefully, the new settings should apply.
    do test a few sales orders by doing this for a larger scope.
    regards.

  • E3200 - USB port does NOT work for more than one device

    We needed a new router that had the dual band connectivity as our previous router stopped working properly when we started using a baby monitor operating on the same 2.4 GHz. The choice was between E3200 and E2500. We chose the E3200 mainly because it also offered a USB port. We were hoping to use that to connect our printer and two external drives (thus bypassing our old desktop that's been working as a server). However, it turns out that the USB port on E3200 does NOT support USB hubs! So, you can ONLY use ONE device - either a printer or one external storage drive. That wasn't really clear at all from the description. I feel like we wasted the extra $50 hoping to get functionality that just isn't there. Can't believe that in this day and age, Cisco thinks we all have only ONE USB device we might want to connect to the network! The router itself is fast enough, but the extra $50 for a USB port that doesn't do much and some speedboost phantom ability is just not worth it. 

    Just to save time to you all, after numerous attempts to install a USB hub to my E3200,
    I wrote to Cisco Customer Service (live chat) and I specifically requested how to set up the usb hub or the virtual USB port and they said that they do not have a software to install a USB hub.
    Hope this help
    Massimo
    (Mod note: Edited for guideline compliance.)

  • CustomDatumExample.java does not work for more than 2 attributes

    The CustomDatumExample.java only works
    if the Employee object has 2 attributes -
    (EmpName and EmpNo). If I try to add
    another attribute to the Employee object I get java.lang.ArrayIndexOutOfBoundsException: 2 on the getAttr3 method.
    Anyone know why?
    Employee object
    CREATE TYPE employee AS OBJECT
    empname VARCHAR2(50),
    empno INTEGER,
    attr3 VARCHAR2(50)
    Custom object class
    public class Employee implements CustomDatum, CustomDatumFactory
    public static final String SQLNAME = "EMPLOYEE";
    public static final int SQLTYPECODE = OracleTypes.STRUCT;
    MutableStruct _struct;
    static int[] _sqlType =
    12, 4
    static CustomDatumFactory[] _factory = new CustomDatumFactory[3];
    static final Employee _EmployeeFactory = new Employee();
    public static CustomDatumFactory getFactory()
    return _EmployeeFactory;
    /* constructor */
    public Employee()
    struct = new MutableStruct(new Object[3], sqlType, _factory);
    /* CustomDatum interface */
    public Datum toDatum(OracleConnection c) throws SQLException
    return struct.toDatum(c, SQL_NAME);
    /* CustomDatumFactory interface */
    public CustomDatum create(Datum d, int sqlType) throws SQLException
    if (d == null) return null;
    Employee o = new Employee();
    o._struct = new MutableStruct((STRUCT) d, sqlType, factory);
    return o;
    /* accessor methods */
    public String getEmpname() throws SQLException
    { return (String) _struct.getAttribute(0); }
    public void setEmpname(String empname) throws SQLException
    { _struct.setAttribute(0, empname); }
    public Integer getEmpno() throws SQLException
    { return (Integer) _struct.getAttribute(1); }
    public void setEmpno(Integer empno) throws SQLException
    { _struct.setAttribute(1, empno); }
    public String getAttr3() throws SQLException
    { return (String) _struct.getAttribute(2); }
    public void setAttr3(String attr3) throws SQLException
    { _struct.setAttribute(2, attr3); }
    null

    Just to save time to you all, after numerous attempts to install a USB hub to my E3200,
    I wrote to Cisco Customer Service (live chat) and I specifically requested how to set up the usb hub or the virtual USB port and they said that they do not have a software to install a USB hub.
    Hope this help
    Massimo
    (Mod note: Edited for guideline compliance.)

  • SNAPSHOT : clause IN not working for more than 1 entry

    Greetings,
    I'm trying to use snapshots templates to confine a snapshot to a
    particular set of data. My 'where' clause of my snapshot is
    something like this:
    (...) where attribute IN (:VALUES)
    -When I define my template variable VALUES as "'value1'", it
    returns ok only the records which attribute has the
    value 'value1'. [OK]
    -When I define my template variable VALUES
    as "'value1','value2'", it doesn't return any record!! [WRONG!]
    Is this a bug (or a not implemented feature) of oracle lite? Or
    am I doing anything wrong?
    If it is a bug, anyone has an idea of how can I turn around this
    problem if I don't know what are the filter values that I'm
    going to use (defined by each user) and how many they are?
    thanks,
    psalazar.

    In our application we tend to use views to return appropriate values for a particular user.
    For example (we do building inspections) the publication item sql is like
    select * from inspection_sites where id in (select site_id from v_pda_bi_sites where bi_id=:bi_id)
    The view acts like a dynamic parameter table (in this cases looks at experience level, status of sites, and responsibility allocations). Once the driving views are tuned this works quite efficiently, and as the dependant tables for the publication item automatically includes all of the tables in the driving view, the object gets refreshed if there is any change to any of them, even if the site details themselves have not changed

  • Daily lot size not working for more than 5 days grouping

    Dear All,
    I want to create the procurement proposal for 6 days once. So I have created new lot size ZB by copying TB and maintained no of periods as 6.
    Assigned the lot size in Material master. After MRP run, the procurement proposal created for every two weeks on Monday. It is not created as expected (6 days once). Is there any other settings needs to be maintained to achieve the requirement?. The same problem happening for the no of periods 7,8,9 also with daily lot size.
    I don't want to use the planning calendar for this. Daily lot size is working only upto no of periods as 5.
    Could you please someone explain the standard functionality of daily lot size with combination of no of periods?
    Thanks in advance.
    Regards,
    Ganesh

    Ganesh,
    Check if your lot size is something similar to screenshot below. It is important that you have lot sizing procedure as 'Period lot size' and period as 'Daily lot size'
    With the above lot size (number of period as 8 days) I can see expected results.
    Regards,
    Himanshu

  • Bought a ipod nano 6th and is not playing for more than 2 min?

    bought a ipod nano 6th and is not playing for more than 2 min?

    The most likely problem is that the headset is not inserted fully. When you insert the headset, you should feel and hear a "Click" to let you know it is inserted all the way.
    The problem is that if it is not inserted all the way, the nano does not detect it. If it is not detected, it will pause playback when the screen goes dark. This is to keep your battery from draining when there is nothing connected to listen to the music.
    i

  • I have a nokia c6-00 that has adobe flash installed. for more than three months can not I watch vide

    I have a nokia c6-00 that has adobe flash installed. for more than three months can not I watch videos on it. how to solve this situation? best regards

    hey! Will someone answer please?? Does anyone hear me?? I'm really getting frustrated! And why isn't firmware 40.0.021 not available for update on phone? I don't have net connection on my pc, and cyber cafes won't let me install ovi suite there!

  • Songs stop playing on my iphone I try to start it again and it will not play for more than 2-4 seconds, does anyone have the solution to this problem?

    I have Imatch and songs stop playing on my iphone I try to start it again and it will not play for more than 2-4 seconds, does anyone have the solution to this problem?

    By "hard reset" you mean hold down the Home and power buttons until the iOS device restarts, correct?

  • No home phone service for more than two months

    I am sending this note on behalf of my mother.  She has been waiting for technical services to her home phone for more than two months.  She has received dates where a technician would come out to repair her services in which she has left work early or stayed home on weekends no avail.  My mom is not in best health and has a child with disabilities living in the home and it is imperative that her services are working.  It is frustrating to her to pay for a service she's not receiving.  This is the worst customer service experience from Verizon.  
    I am asking for immediate resolve to this issue and to work with us to assure payment for time where phone has not worked Will not be charged to her account.  Please contact me {edited for privacy}.

    Hi lmatthews522,
    Please go to your profile page for the forum by clicking on your name, and look at the top of the middle column where you will find an area titled "My Private Support Cases". There you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis, as the agent may be waiting for information from you before they can proceed with any actions. Please keep all correspondence regarding your issue in the private support portal.

  • Calendar said if I wanted to save entries for more than a month to click 'all events' in settings.   Now all events except birthdays have disappeared!  Have tried to reverse request with no luck.  HELP!

    Calendar message said if I wanted to save entries for more than a month I should go to settings and change to sync for 'all events'.  I did this and all but repeating birthday entries disappeared.   I have tried to reverse but nothing has reappeared.  HELP!

    Welcome to the discussions,
    WHY does it claim to be 8G but my capacity now says its just 6.83
    The size of you HD is calculated binary when it comes to use it, instead of decimal when companies want to advertise there products. 1 KB=1024Byte instead of 1000KB as advertised by the manufacturer. In your case this reduces the actual available space by the factor of 0.93 or approx. 7,4GB.
    If you have an "other" section in your color bar showing the different types of data on your ipod, which is bigger than 500MB, this could be a sign of corrupt data caused by a sync that did not complete or copied damaged data. A restore will reduce the size to normal again.
    Restoring: http://support.apple.com/kb/HT1414
    If you restore your ipod, iTunes will install the newest firmware first and then add back your data and settings from your last backup if you choose to "restore from backup". Every backup is replaced by the following one, so make sure to include this folder in your backup routine in case you'll have to go back.
    You can check the location and size of the backup folder for your ipod here:
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    copied from: About backups http://support.apple.com/kb/HT1766
    Sorry, I can't answer your payment question, I have never used your kind of setup, maybe you can find something useful here: http://www.apple.com/support/itunes/

  • VERIZON CHANGED HIGH SPEED DSL AT CENTRAL OFFICE AFTER I HAD 7.840 MBPS FOR MORE THAN 10 MONTHS!!!

    ALL OF THE SUDDEN VERIZON DECIDES IN LATE APRIL THAT I SHOULD HAVE 7.1 MBPS INSTEAD OF THE 7.840 MBPS I HAVE BEEN HAVING FOR MORE THAN 10 MONTHS. AS A MATTER OF FACT, AFTER A LOT OF DISCONNECTIONS SUFFERED IN MARCH/APRIL 2012 BECAUSE VERIZON WAS DOING SOMETHING IN THEIR CENTRAL OFFICE WITHOUT TELLING TO THEIR CUSTOMERS, AND HAVING TO REPLACE ALL OF THE DSL FILTERS, AND TWO MODEMS... I GOT THE D-LINK WORKING AT 7.840 MBPS. AS A MATTER OF FACT, VERIZON TECHNICIAN CAME TO MY HOME AND WE DID INSTALL THE NEW MODEM AT THAT VERY SPEED, WHICH WAS AGREED MORE THAN 1 YEAR AGO AFTER DOING A LOT OF TESTING TO ENSURE THE STABILITY IN THE CONNECTION. ALL OF THE SUDDEN, AFTER THE 20-DAY HONEYMOON WITH MY NEW MODEM, I NOTICED THAT MY SPEED WAS NOT THE SAME, AND FOUND OUT THAT THE IP WAS CHANGED AND THE SPEED SETTING DROPPED TO 7.1 MBPS. NOW VERIZON CLAIMS THAT MY CONTRACT WAS FOR A MAXIMUM OF 7.1 MBPS WHICH IS NOT TRUE BECAUSE I WAS IN THE 7-15 MBPS RANGE!!! AS A MATTER OF FACT I COULD GO EVEN OVER 8 MBPS BUT BECAUSE OF MY LOCATION, RELATIVELY FAR AWAY FROM THE CENTRAL OFFICE AND AFTER A LOT OF TESTING, 7.840 MBPS WAS THE MOST CONVENIENT SPEED. VERIZON CHANGES THEIR POLICIES NOT NOTIFYING THE CUSTOMERS, THEY DO WORK INTERRUPTING THE SERVICE WITHOUT NOTIFYING. I AM GOING TO WAIT AND SEE WHAT THEY DO IN THIS CASE. IF THIS IS NOT SOLVED PROPERLY... GOOD BYE VERIZON, AND HELLO TIME WARNER CABLE!!! SO, VERIZON BE PREPARED TO LOSE ANOTHER LOYAL CUSTOMER FOR MORE THAN 9 YEARS!!! THAT IS THE PROBLEM WITH VERIZON, THEY ARE SO DEDICATED TO GET NEW CUSTOMERS THAT FORGET ABOUT THEIR OLD LOYAL ONES... UNFORTUNATELY, THERE ARE CONSEQUENCES... AND THOSE ARE THAT YOU WILL LOSE THE OLD ONES SOON BECAUSE YOUR LACK OF CARE ABOUT THEM!!! ONCE YOU ARE HOOKED WITH VERIZON, THEY THINK THEY GOTCHA FOREVER... LET'S WAIT AND SEE...

    Believe or not... That 20% does make a difference... In one of my games, I used to have 5.3 secs of response time, now it does not lower from 7.8. By the way, even my PC worked faster  when I had that little higher speed... I know the changes were done without my knowledge because for a period of 2 weeks I got lot of unstability in my connection that I never got for years before... After 20 days with the first IP assigned to the new modem, the speed dropped like Verizon was running a program to levelize such an speed.
    At the end, what really bothers me, is that the 7.840 Mbps was a speed agreed with Verizon, their technicians, their supervisors at the CO, and it was fully documented, and all of the sudden because an "internal change in their policies" that agreement was broken... I am currently making arrangements to have FIOS installed at home, subject to an scouting visit from Verizon to evaluate the feasibility of its installation according to my internal wiring limitations. I have to give them a try... No doubt that it would me cheaper and much faster than the high speed enhanced internet connection that I currently have. Let's wait and see...
    Thank you for your interest in my case and observations made too.

  • My iPhone 5s won't turn on. Its battery was drained for more than a month. I tried charging it for more than an hour then pressed reset but it still won't turn on. What could be the problem?, My iPhone 5s won't turn on. Its battery was drained for mo

    My iPhone 5s won't turn on. Its battery was drained for more than a month. I tried charging it for more than an hour then pressed reset but it still won't turn on. What could be the problem?, My iPhone 5s won't turn on. Its battery was drained for more than a month. I tried charging it for more than an hour then pressed reset but it still won't turn on. What could be the problem?

    You said "reset," so Meg assumed that's what you did. But "reset" is not a button; to reset the phone you must hold the HOME and SLEEP buttons at the same time until an Apple logo appears. You may have to hold for up to 30 seconds, and if the battery was completely drained, you will have to restore iOS using iTunes on your computer.

  • I have an Iphone 4 and my internet has not worked for a good 10 months, why wont it work? my dad pays for my data plan, so its not that i dont pay my bill. I've even tried to reset my net work settings, and that did not work

    i have an iphone 4 and my internet has not worked for a good 10 months, why wont it work? My dad pays for my data plan, so its not that i dont pay the bill. I've even tried to rest my net work settings, and that did not work. I went to AT&T and they said that the only way to fix it was to buy a new phone, and im not going to buy a new phone with out my upgrade. someone, please help!

    Hey lilmissindian!
    I have an article for you here that will help you troubleshoot this issue:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Calendars to List for more than 12 months? With advanced selection the Listing will go back farther than 12 months but will then disappear!

    How do you get Ical to List for more than 12 months on your Ipad?  I have used Advanced settings which accomplish this but the Listing disappear overnight!

    Hi Kaorin
    I was charged £75 last month for broadband, calls, and TV - we have unlimited so cannot be charged any extra, and have never used the phone.
    It's shocking - we too were 'enticed' by a discount, which really didn't mean anything...
    Hope you get the issue's sorted. Feel free to post on my forum post in my signature.
    Please see my story:
    http://community.bt.com/t5/Bills-Call-Packages/Taken-to-the-Ombudsman-Service-My-story-with-BT/td-p/211003

Maybe you are looking for

  • Report with columns - totals in column at far right

    Hi All, A user would like to see a report in this type of format:     Total Shift 1       Total Shift 2     Total Rpt Info But not as simple as this.  Meaning the data in the last column is not a total of shift 1 and shift 2, but different total info

  • What went wrong? (swing-mdi-screen resolution)

    Hello, I have completed my java application which I relied heavily on swing components and awt lay out managers. It is an MDI and I had developed it using border/flow/grid layout managers under a 1024*768 resolution. Today I ran it on a different mac

  • Update causes Firefox to disappear?

    When I tried updating Firefox on my Mac (an automatic update), it took an unusually long time, my computer went into hibernation, and now Firefox seems to have completely disappeared off of my computer. I search and cannot find it anywhere.

  • Exited abnormally: Segmentation fault

    I see that 'Exited abnormally: Segmentation fault' is very common with Leopard and would be grateful if somebody could explain it and say if this is a Leopard fault which Apple will eventually fix. I had it earlier and it appeared to crash the OS. I

  • CME 3.2: Using third party FXS endpoints to connect analog phones

    I am wondering if anyone has done this before and can help point me in the right direction toward making this work. I am trying to connect remote users who work at home offices via IPSEC VPN links. The data portion is great and is working fine, but I