Bridge unable to read cache, after clicking refresh another problem

I tried purging cache did not fix the problem. I click the refresh button in bridge to see if that might the problem. Now not only can bridge not read cache it can not build criteria, the circle just keeps spinning and spinning. I cannot open any folders therefore cannot view any of my images. Help Please!!

No. The cache is where Bridge stores the thumbnails not the photos.
If you purge the cache Bridge will regenerate the thumbs when visiting the folders.

Similar Messages

  • Bridge unable to read cache?

    I have an error message 'Bridge encountered a problem and is unable to read the cache.  Please try purging the central cache in Cache Preferences to forrest the situation"..  will this get rid of my photos?

    No. The cache is where Bridge stores the thumbnails not the photos.
    If you purge the cache Bridge will regenerate the thumbs when visiting the folders.

  • Trying for 3 days to get Bridge to work. Told me to unable ti read cache -- tired everything including deleting and reloading -- still getting same message. Pl;ease help I am on a deadline. Bob

    Bridge unable to read cache
    Trying for 3 days to get Bridge to work. Told me to unable ti read cache -- tired everything including deleting and reloading -- still getting same message. Restarted computer several times as well. Please help I am on a deadline. Bob

    THANKS FOR REPLY,
    No, I am on a Mac  OS X 20.9.4
    BOB

  • Bridge CC. on opening message says unable to read cache, purge cache. This does not help.

    On opening message says unable to read cache, purge cache. Purging the cache does not help and Bridge continues to hang. Was working fine before.

    Mac?  REad this http://forums.adobe.com/thread/1237168

  • Unable to read cache when I re-open Bridge

    Each time I reopen Bridge I get an error message saying:  Unable to read cache.  The thumbnails need to be regenerated each time I open program.  Have tried purging cache, etc.  Still no luck.

    Are you using a distributed Bridge Cache or a central bridge cache?

  • Unable to read cache.

    I receive an error message each time I log onto Bridge saying it is unable to read cache. I have tried purging the central cache as recommended, but still get this error message. I am operating a mac. Help????

    Default is to use multicast (when multicast is not available in the network) you can define wel-known-addresses, for example,
    <coherence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/coherence/coherence-operational-config"  xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-operational-config coherence-operational-config.xsd">
        <cluster-config>
            <member-identity>
                <cluster-name system-property="tangosol.coherence.cluster">KlantCluster</cluster-name>
            </member-identity>
            <unicast-listener>
                <well-known-addresses>
                    <socket-address id="1">
                        <address>172.31.0.175</address>
                        <port>8088</port>
                    </socket-address>
                    <socket-address id="2">
                        <address>172.31.0.113</address>
                        <port>8088</port>
                    </socket-address>
                </well-known-addresses>
            </unicast-listener>
        </cluster-config>
    </coherence>You can put this in tangosol-coherence-override.xml
    http://middlewaremagic.com/weblogic/?page_id=5436

  • After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!

    After having yet another problem with my MacBook Pro and having to wipe the drive, I am now unable to sync my iPhones etc without erasing all the music on them. Is there a way around this? I have no other library!
    iTunes is a mess! It couldn't find it's own libraries and I was forced to create a new one. Now I don't know where my music is or if any's missing.

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • Bridge unable to read ARW raw files.

    My Bridge CS5 is reading jpegs but not the ARW raw files from my Sony camera. I have downloaded the image data converter ver.4.2.02.
    I have Camera_Raw_6_2.
    What do I need?

    You need Camera Raw 8.2 or higher.
    Elements 12 shipped with 8.1.
    Click Help > Updates to update Camera Raw

  • Unable to read AsynchronousSocketChannel after getting timeout exception

    i am trying to read some data on the server using a AsynchronousSocketChannel .
    I have this scenario :
    1- Call channel.read : this will print "Received"
    2- Call channel.read : this should fail due to timeout exception.
    3- Call channel.read : I am sending data in this case but I got the exception "Reading not allowed due to timeout or cancellation"
    Below is the source code
    My environment is :
    OS : Windows 7
    JDK :
    Java(TM) SE Runtime Environment (build 1.7.0-b147)
    Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode)
    package com.qmic.asynchronous;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.Socket;
    import java.nio.ByteBuffer;
    import java.nio.channels.AsynchronousChannelGroup;
    import java.nio.channels.AsynchronousServerSocketChannel;
    import java.nio.channels.AsynchronousSocketChannel;
    import java.nio.channels.CompletionHandler;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    public class NIOChannel {
         public static void main(String[] args) {
              try{
                   MyAsynchronousTcpServer server = new MyAsynchronousTcpServer();
                   Thread serverThread = new Thread(server);
                   serverThread.start();
                   Socket socket = new Socket(InetAddress.getByName("127.0.0.1"), 9001, InetAddress.getByName("127.0.0.1"), 9003);
                   socket.setSoTimeout(30000);
                   socket.setKeepAlive(true);
                   if (socket.isConnected()){
                        PrintWriter dos = new PrintWriter(socket.getOutputStream());
                        InputStream input = socket.getInputStream();
                        byte[] buffer = new byte[1024];
                        // Data of the first call
                        dos.print("ABCDEFGH");
                        dos.flush();
                        byte[] data = new byte[50];
                        socket.getInputStream().read(data);
                        // Print the result from server, written in handler of first read operation.
                        System.out.println("Result is:" + new String(data));
                        if (data.length > 0){
                             Thread.sleep(10000); // Wait for 10 Seconds so the second read on the server will fail.
                        // Data of the third call
                        dos.print("ABCDEFGH");
                        dos.flush();
              }catch(Exception ex){
                   ex.printStackTrace();
         class MyAsynchronousTcpServer implements Runnable{
              final int SERVER_PORT = 9001;
              final String SERVER_IP = "127.0.0.1";
              private int THREAD_POOL_SIZE = 10;
              private int DEFAULT_THREAD_POOL_SIZE = 2;
              ConcurrentLinkedQueue<ListenHandler> handlers = new ConcurrentLinkedQueue<ListenHandler>();
              boolean shutDown = false;
              public void run(){
                   //create asynchronous server-socket channel bound to the default group
                   try {
                        // Create the ChannelGroup(thread pool).
                        ExecutorService executorService = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
                        AsynchronousChannelGroup group = AsynchronousChannelGroup.withCachedThreadPool(executorService, DEFAULT_THREAD_POOL_SIZE);
                        AsynchronousServerSocketChannel asynchronousServerSocketChannel =
                             AsynchronousServerSocketChannel.open(group);
                        if (asynchronousServerSocketChannel.isOpen())
                             //bind to local address
                             asynchronousServerSocketChannel.bind(new InetSocketAddress(SERVER_IP, SERVER_PORT));
                             while(!shutDown){
                                  Future<AsynchronousSocketChannel> asynchronousSocketChannelFuture =asynchronousServerSocketChannel.accept();
                                  final AsynchronousSocketChannel channel = asynchronousSocketChannelFuture.get(); // Timeout can be specified in the get() function, thread is blocked here
                                  System.out.println("New channel created successfully");
                                  // First call, should print Result of call 1 is : 10 (size of ABCDEFGH)
                                  ByteBuffer buffer1 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer1, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 1 is :" + result);
                                            ByteBuffer response = ByteBuffer.wrap("Received".getBytes());
                                            channel.write(response);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(3000);
                                  // Second read, should print error InterruptedByTimeoutException
                                  ByteBuffer buffer2 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer2, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 2 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(9000);
                                  // Second read operation was failed, no try to read again . AN EXCEPTION IS THROWN HERE : Reading not allowed due to timeout or cancellation
                                  ByteBuffer buffer3 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer3, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 3 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                        else
                             System.out.println("The asynchronous server-socket channel cannot be opened!");
                   catch (Exception ex)
                        ex.printStackTrace();
                        System.err.println(ex);
         }

    I'm having the same "Unable to read the SIM card" issue. My phone is less than two months old, the unable to read SIM card issue started about a week after I purchased the phone. That was followed by a host of erratic, sporadic issues to the phone becomes unusable and the only way to temporarily fix it is to remove the battery for a few seconds.  I've gone through the factory reset with Verizon reps where I purchased the phone from as well as with a Verizon online Chat representative. In a nutshell, I got a ticket to send the phone back to Samsung in Plano, Texas to get the phone fixed, I am going to do that today because this problem is ridiculous.

  • Event ID 18221 after clicking refresh workbook

    Hello all,
    We have a SharePoint 2013 farm with excel services, besides we have a server with two SQL 2012 Sp1 BI instances one for database (default instance) and one named instance (servername\powerpivot) for sharepoint mode analysis services. In sharepoint we created
    a powerpivot gallery and load a workbook with powerview features. When we load the workbook, it creates its database in the remote analysis service correctly, but, when we click data->refresh connections we get the following error:
    External Data Refresh Failed
    An error occurred while working on the data model in the workbook. Please try again.
    We were unable to refresh one or more data connections in this workbook. The following connections failed to refresh:
    <connection name>
    At the same moment, in the database server we can find a couple of event:
    Event ID: 3
    Source: MSOLAP$POWERPIVOT
    Description: OLE DB or ODBC error: A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured
    to allow remote connections. For more information see SQL Server Books Online.; 08001; Client unable to establish connection; 08001; Encryption not supported on the client.; 08001.
    Event ID: 18221
    Source: COMRuntime
    Description: The attempt to connect to the RPCSS service was denied access for the COM Server application D:\Program Files\Microsoft SQL Server\MSAS11.POWERPIVOT\OLAP\bin\msmdsrv.exe to the user Unavailable\Unavailable SID (S-1-5-21-288754965-1796230222-1539857752-9046)
    running in the application container Unavailable SID (Unavailable). The most likely cause is that the machine wide Access Limits do not grant the user or application local access permissions. The Access Limits can be modified using the Component Services administrative
    tool.
    The second event mentions a COM server app that we cannot find in comexp.msc and the event ID is not documented at all. Please help us out.
    Thanks in advance
    Gippo

    Hi Tucer_1,
    This issue might be caused by the SharePoint Server pass the incorrect credential to the SSAS Server. In SSAS Server side, I would suggest you create a SQL Server Analysis Services trace and then capature some events to check the login information when
    you refresh a worksheet from SharePoint Sever. Here is an article for your reference, please see:
    Use SQL Server Profiler to Monitor Analysis Services:
    http://technet.microsoft.com/en-us/library/ms174946.aspx
    Please aslo check that you have enable remote access to ensure Windows firewall will not block the connection.
    Configure the Windows Firewall to Allow Analysis Services Access:
    http://msdn.microsoft.com/en-us/library/ms174937.aspx
    In addition, 최적화기 is right. Please restart Excel Services and reboot the Analysis Services server after configure "Act as part of the operating system" privilege on the local server.
    For more detail information, please refer to the article below:
    PowerPivot Data Refresh with SharePoint 2013 and SQL Server 2012 SP1 (Analysis Services):
    http://technet.microsoft.com/en-us/library/jj879294.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • I am unable to see text after clicking on a pdf download.I just get a mid grey screen .I can send the pdf to my blackberry and see it -so the file is ok .I recently was at an official site that gave me an Adobe down load /update .Help please .

    Why am I suddenly unable to see pdf (on iMac) when I click on them ?There is is just a mid grey blank screen .I have sent pdf to my Blackb and I can read it there ,so the file is OK .I recently tried to down load a recent version of Adobe reader from a government site -could this be the cause?If so ,how do I uninstall it ?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (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 (command-V) into the text box that opens, then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    I've seen an unconfirmed report that the "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you might need to remove it as well, if applicable.
    If you still have the issue, repeat 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 again.

  • HT201210 My iphone was unable to update and after clicking "ok"

    the phone screen has the itunes logo with the usb cord (telling me to connect to itunes). i connect it and nothing happens. ive tried restarting both itunes and my phone and still nothing. please help
    thank you

    it seemed to have backed up everything just before the software update 6.1.4. so after the full restore i restored from backup and its all still there (mostly)
    what a relieve...thx

  • File adapter unable to read file, can it call another BPEL process

    hi'
    I have a XML file to read and I am able to read it by using a File adapter, if the read is success the file is moved to success directory and if the file is invalid its going in the fail directory, now the question is If the file read is not valid at that moment can another BPEL process be invoked, becasue if the file read is invalid then the BPEL process dosent gets initiated due to which I am unable to do anything.
    please advice
    thanks
    Yatan

    Hi,
    You can use file rejection handler which can invoke a user defined BPEL process in case of invalid file. Check :
    http://www.oracle.com/technology/products/integration/adapters/pdf/Adapter_TN_004_Adapter_ErrorManagement.pdf
    HTH,
    Ketan

  • Page back button is disabled after clicking to another web page, causing me to lose the original page.

    When I click to follow a link from one of my home pages, the back button becomes disabled. This has the effect of "disappearing" the first page and "stranding" the link I traveled to.
    The only work around is enter the site again. Subsequent clicks from the page don't cause it to disappear again.

    I would suspect a slightly incompatible addon of causing that to happen.
    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • CS6 Bridge freezes with a cache problem Windows 7

    I get a pop up when bridge starts,its someyhing new.
    It says
    Bridge encountered a problem and is unable to read cache.Please try purging the central cache in
    Cache Preferences to correct the situation.
    I do that and Bridge just freezes.
    Do I need to alter the preferences,they are set on default even though Ive just not had a problem like this before.
    any help appreciated.

    Hello Curt thank you for your input.
    Id tried that but to no avail so in the end after uninstalling once again but this time using the adobe cleaner afterwards  Ive reinstalled from scratch, set the cache folder to be on my scratch drive which is an SSD and un ticked keep 100% previews in Cache .
    Also automatically export cache to folders when possible.Ive updated it and all is working OK now.
    It has been a reall ball ache and If a lot of reconfiguring to do but hey ho,its working so job done

Maybe you are looking for