Problems trying to reconnect files in PE10 organizer

I have PE10 on a Windows 7 computer.  I have a library of 11,000 images.  Somehow last weekend, the Catalog converted the drive letter on all the paths of all the image files to the wrong letter.  Otherwise, the paths and filenames are fine.
So I'm trying to Reconnect files.  Being cautious, I am starting with selecting a few files and doing File-->Reconnect-->Missing File.  However, it doesn't work.  I've done about 10-15 groups at this point. It starts a laborious search thru my directory files.  About 25-30% of the time, PE10 fails.  I get a pop-up error dialog that says "Elements 10 Organizer has stopped working." with only one button that says "Close Program".  When it doesn't fail, it goes to the end of the search (I presume), and then pops up the window to manually search for a file.  So it fails to find the right file(s), but in the manual window I can easily find the right file and it reconnects right away.
I am reluctant to try File-->Reconnect-->All Missing Files.  Reason: On the third group I did above, I got cocky and tried to do 1000 files at once.  That was the first time it bombed, and it trashed the assigned dates on some of my files.
So this is a nightmare.  I could manually reconnect, but I have 11,000 files in 100's of folders - it would take a long time.  How can I get Reconnect to work properly?
I don't have a backup that is recent enough to just do a restore.
Thank you,
Bill

After conversion, things match.  So the drive letters in the catalog database are correct (except the C: drive, but that doesn't matter here.)  Here are the contents of my volume_table:
id
description
serial
drive_path_if_builtin
type
104
C:
2765733514
C:
builtin_drive
80453
P:
3969101216
P:
builtin_drive
184869
E:
680486029
E:
builtin_drive
420438
database relative
amoc:database_relative_volume
database_relative_drive
And here are the volume_id entries in my media_table:
volume_id
count(volume_id)
80453
10302
184869
1559
These numbers are about right.  I have about 11,800 images.  When my failure occured, they all had the bogus "P:" in their pathnames.  Since then I've reconnected about 1500 files to the E: drive.
So at this point I'm thinking I'll try your idea of remapping my E: drive to P: in Windows.  But I'll wait until you respond, in case you have a better idea.
Thanks again,
Bill

Similar Messages

  • Problems with copying & reconnecting files in a Stmp project

    Hi everyone.
    I want to copy files from a project (that I'm currently working on) to a new drive and reconnect them.
    But I'm running into problems. I cannot select 'reconnect files".
    The situation & history (Sorry for the length):
    From FCP, the editor did a 'Send to STP Multitrack Project' with Base layer video + metadata.
    The files were written to an external drive, that is now connected to my computer.
    When I started the projekt on my computer, I first copied the .stmp file + 'Media' & 'Render files" to the MacinthoshHD, the only internal drive I had.
    I started working on the project, and after a couple of days, the system started to give 'disk limit' - messages. Clearly because of the 1-disk situation.
    So today I bought another internal drive. I was expecting trouble when copying and reconnecting files, and I was right.. What I did:
    I copied all files from the MacHD to the new drive, and opened the stmp file from there.
    First I noticed that the Videotrack in STP was still playing from the external drive
    I managed to copy it to the new drive, and 'relocate' it.
    Just when I thought all troubles were over, the 'limit' messages showed up again.
    Reason: It appeared that the paths to all media files were still the 'old' ones, pointing to the MacintoshHD, and even a couple to the external drive..
    Then, I followed the instructions on 'Reconnecting Media Files' in the STP manual,
    but 'reconnect' is greyed out in the menu. Probably because the project thinks nothing needs to be reconnected.
    So what to do?
    What I can think of, is renaming the source map on the Macintosh HD
    STP will then likely ask: Where is...? And I can point to the new location..
    But this solution is tricky.. It will 'destroy' the original paths. And, will STP really give me a chance to restore all fades, files, and so on?
    I hope someone can help me out..
    Thanks in advance,
    Dan

    STP actually creates and places files in more places than we realize. Look in the temporary files folder; in another that's been showing up as Soundtrack Pro Media (different than the edited media folder), and back in Capture Scratch, Audio Renders and Render files. We've just learned that what we're looking for isn't always where we think it should be. And we use mostly an internal raid and then a detached firewire 800 raid which we pull off and use to work remotely on the same project. We have to make sure everything we need for the project has been mirrored onto the external raid. It's been much more challenging in STP3 than it was in STP2

  • Problem trying to send file to browser in JSF

    Hi I've tried two different techniques for sending a file to a browser(making the user download a file). I've tried an example from myfaces wikipage
    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    int read = 0;
    byte[] bytes = new byte[1024];
    String fileName = "test.txt";
    response.setContentType("text/plain");
    response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
    OutputStream os = null;
    StringBuffer stringBuffer1 = new StringBuffer("Java Forums rock");
    ByteArrayInputStream bis1;
    try {
        bis1 = new ByteArrayInputStream(stringBuffer1.toString().getBytes("UTF-8"));
        os = response.getOutputStream();
         while ((read = bis1.read(bytes)) != -1) {
            os.write(bytes, 0, read);
        os.flush();
        os.close();
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }FacesContext.getCurrentInstance().responseComplete();
    I have also tried using a component named fileDownload from PrimeFaces. Both give the same result:
    I get a response from the server, the response contains text that should be in the file. The header is a follows:
    X-Powered-By    Servlet/3.0, JSF/2.0
    Server  GlassFish v3
    Content-Disposition attachment;filename="test.txt"
    Content-Type    text/plain
    Transfer-Encoding   chunked
    Date    Thu, 20 May 2010 06:30:20 GMTTo me this looks correct but for some reason I don't get to download the file, I just get this response in firebug.
    Does anyone have any idea?, could it be a serversetting problem? I using glassfish 3
    Thanks / Stefan

    False alarm, it didn't really work, I think it was just a glitsh in JSF that made it work. I think the problem lies in JSF and facelets. I use a facelet and a template.
    Template
    <?xml version="1.0" encoding="UTF-8"?>
    <!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"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:ui="http://java.sun.com/jsf/facelets">
    <h:head>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <title><ui:insert name="windowTitle">Default title</ui:insert></title>
         <link rel="stylesheet" type="text/css"
              href="/admin/resources/css/mainGUI.css" />
              <noscript lang="NO">Beklager, dette nettstedet krever at Javascript er skrudd på / tilgjengelig.</noscript>
              <noscript lang="EN">We're sorry, this site need Javascript to be enabled.</noscript>
    </h:head>
    <h:body>
         <div id="fwCenterMiddle" class="fwCenterMiddle"><ui:insert
              name="content">Default content</ui:insert></div>
    </h:body>
    </html>Facelet
    <f:view xmlns="http://www.w3.org/1999/xhtml"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:c="http://java.sun.com/jsp/jstl/core" contentType="text/html"
         xmlns:em="http://java.sun.com/jsf/composite/emcomp/"
         xmlns:fn="http://java.sun.com/jsp/jstl/functions">
         <ui:composition template="/templates/masterLayout.xhtml">
              <ui:define name="content">
                   <h1><h:outputText value="Export">
                   </h:outputText></h1>
                   <h:outputText value="#{ChooseExportController.selectEvent}"/>
                                  <h:outputText value="#{ChooseExportController.selectRole}"/>
                   <h:form id="form" >
                        <p:panel header="Velg Election event" style="margin-bottom:10px;" rendered="#{ChooseExportController.selectEvent}">
                             <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                                  onchange="this.form.submit();"
                                  valueChangeListener="#{ChooseExportController.eventListener}">
                                  <f:selectItem itemLabel="" itemValue="0"/>
                                  <f:selectItems
                                       value="#{ChooseExportController.electionEventList}" var="n"
                                       itemLabel="#{n.name}" itemValue="#{n.pk}" />
                             </h:selectOneMenu>
                        </p:panel>
                         <p:messages errorClass="errors" layout="table" showDetail="true"
                             globalOnly="true" />
                        <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                             var="operatorRole" border="1" selectionMode="single"
                             selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                             <p:column sortBy="#{operatorRole.role.name}">
                                  <f:facet name="header">
                                       <h:outputText value="Name" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.role.name}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥desnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥deskontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="ValgnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection}">
                                  <f:facet name="header">
                                       <h:outputText value="Valgkontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection}" />
                             </p:column>
                        </p:dataTable>
                         <br />
                         <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                        <br />
                        <br />
                        <br />
                   </h:form>
              </ui:define>
         </ui:composition>
    </f:view>But if I rewrite the facelet like this, the download works, and it works with the mimetype text/plain
    <html   xmlns="http://www.w3.org/1999/xhtml"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:ui="http://java.sun.com/jsf/facelets">
    <body>
    <f:view>
                   <h1><h:outputText value="Export">
                   </h:outputText></h1>
                        <h:outputText value="#{ChooseExportController.selectEvent}"/>
                                  <h:outputText value="#{ChooseExportController.selectRole}"/>
                   <h:form id="form" >
                   <h:outputText value="Velg Election event: "/>
                   <br/>
                   <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                        onchange="this.form.submit();"
                        valueChangeListener="#{ChooseExportController.eventListener}">
                        <f:selectItem itemLabel="" itemValue="0"/>
                        <f:selectItems
                             value="#{ChooseExportController.electionEventList}" var="n"
                             itemLabel="#{n.name}" itemValue="#{n.pk}" />
                   </h:selectOneMenu>
                        <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                             var="operatorRole" border="1" selectionMode="single"
                             selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                             <p:column sortBy="#{operatorRole.role.name}">
                                  <f:facet name="header">
                                       <h:outputText value="Name" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.role.name}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥desnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥deskontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="ValgnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection}">
                                  <f:facet name="header">
                                       <h:outputText value="Valgkontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection}" />
                             </p:column>
                        </p:dataTable>
                         <br />
                         <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                        <br />
                        <br />
                        <br />
                   </h:form>
    </f:view>
    </body>
    </html>

  • Frustrated!  Reconnecting files.

    I am Sooooo frustrated and I'm hoping this is going to be fixable.  I am not expecting a quick fix, but a fix none the less.
    I am trying to reconnect files.  I'm afraid I may have deleted the original files in error due to my lack of know how with
    Adobe Elements.  I have version 8.0  The pictures are in my organizer with the little question mark.  However, I have done the
    reconnecting proceedures but have been unsucessful in finding them.  Is there a way to save the files that are question marked in
    my organizer?  I hope this makes sense.  I feel like I've searched to the end of the internet and cannot find the answer I need.
    mlgl

    If you deleted the original files from your hard drive, I am afraid you are out of luck.
    In order to do a reconnect, the files have to still be on your drive somewhere.

  • We are trying to transfer files from PS Elements 13 to our web builder.  We are getting a '?' in the top left hand corners of some of the image boxes. It seems that we are unable to transfer images with this ? on the image.  We have spent a long time taki

    We are trying to 'reconnect' files.  we seem incapable to do so, for some reason.  Try as we might, we aren't able to do it.  can anyone help?

    Please see other thread
    Re: We are trying to transfer files from PS Elements 13 to our web builder.  We are getting a '?' in the top left hand corners of some of the image boxes. It seems that we are unable to transfer images with this ? on the image.  We have spent a long time

  • PSE 9 Organizer crashes - can't reconnect files

    I have thousands of carefully organized images in my organizer. I moved the files (no I didn't do this with the software as I didn't know that was an option . . i've moved files countless times in the past with no issue).  With this move, my catalog is frozen.  I can reconnect many of the files.  But on random files, the catalog freezes and will not reconnect.  I have to restart and try again (which generally does not work).  I tried moving the photos back and starting over, but that has not solved the problem. The catalog and software is now largely useless and I'm extremely frustrated.  Is there any fix for this that I have missed?  It is not possible to reload all of the images and start over.  thanks for any help. 

    Hi,
    Yes. The best way is to move files from within Organizer. But now that they have gone missing, the only thing to do is to reconnect them in small batches say one folder at a time.
    How much media is there?
    Thanks
    Andaleeb

  • I have completed an online form and am trying to send it to the organization. When I say submit, it tries to connect to File:///C/users/Gail/Downloads and not to the organisations site

    I have completed an online form and am trying to send it to the organization. When I say submit, it tries to connect to File:///C/users/Gail/Downloads and not to the organisations site

    There's nothing you can do about it. Report the problem to the organization. They need to fix it and send you a new version of the PDF.

  • Hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!

    hi im having huge problems trying to install flash for my mac 10.5 imac, iv gone through the internet and tried all of the solutions, everytime i try to install flash it says cant read the download file, or it just wont install, anybody plz help!
    iv unistalled flash, iv checked plug ins it just wont work,

    It would have been a great help to know precisely what Mac you have, so some of the following may not apply:
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    (If you are running Mavericks: After years of fighting malware and exploits facilitated through Adobe's Flash Player, the company is taking advantage of Apple's new App Sandbox feature to restrict malicious code from running outside of Safari in OS X Mavericks.)
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:
    When you have installed the latest version of Flash, relaunch Safari and test.
    If you're getting a "blocked plug-in" error, then in System Preferences… ▹ Flash Player ▹ Advanced
    click Check Now. Quit and relaunch your browser.
    You can also try these illustrated instructions from C F McBlob to perform a full "clean install", which will resolve the "Blocked Plug-in" message when trying to update via the GUI updater from Adobe.
    Use the FULL installer for 12.0.0.44:  Flash Player 12 (Mac OS X)
    And the instructons are here: Snow Leopard Clean Install.pdf
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, try the following solution which fools the site into thinking that you are running the version 11.5.502.55:)
    Download this http://scriptogr.am/nordkril/post/adobe-flash-11.5-for-powerpc to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.

  • I having problems trying to download any files...

    hey im having problems trying to download all files, plz help, i get this message saying system.component.model.Win32Exception The system cannot find the file specified.... plz help me

    Check your Java install and use a different browser. Update both.
    Mylenium

  • I tried to download the trial version of elements 10.  I only got the read me files and the organize

    I tried to download the trial version of elements 10.  I only got the read me files and the organizer.

    Please post the PSE query over the following forums and lets discuss it over there.
    http://forums.adobe.com/community/photoshop_elements
    Thanks and regards
    Harshit yadav

  • D800 file compatibility:  Has anyone experienced problems with loading D800 files onto the iPad using the camer connector kit?  I have tried both RAW and JPEG using SDHC and CF cards and the iPad(3) doesnt recognise any of the files.

    Has anyone experienced problems with downloading Nikon D800 files to the iPad3 using the camer connector kit?  I have tried .RAW and JPEG (of various sizes) on both SD and CF cards, but the iPad doesn't recognise the files. 
    I have seen various forums discussing Lightroom and PSE updates that are required to process .NEF files but I can't find anything on the iPad/camera connector issue.
    I dont have any problem if I put the SD card straight into the SD slot in my iMac and Aperture will process the files fine, but I would really like to be able to download and view files on the move on the iPad.
    Any advice appreciated?
    PS - saw something that suggested the iPad had a maximum file size of 16mb for photos, not sure if this is correct, but I have tried smaller JPEG files and they still aren't recognised.

    If your camera supports both PTP and Mass Storage Device modes, it may be necessary to use both modes to import all media content.
    If some files do not import as expected using one mode, try switching to the other mode and importing again.
    Note: Some cameras may refer to PTP as Pictbridge or PTP/Pictbridge.

  • When I'm trying to add files to media, the program is suddenly closed by windows and says that can not find solution to this problem...

    when I'm trying to add files to media, the program is suddenly closed by windows and says that can not find solution to this problem...

    Hello Wyodor,
    thanks for your reply on my question.
    You are wright the index file is 308 KB.
    And offcourse that I delete my files and documents is not an Iweb problem, but because my English is not that good, that I thougt I try to tell the whole story, and hope people can read trough the lines.
    Why I didn't use Iweb to upload to the server is because the server company recommanded to use file zilla. And I am a nobody with this kind of things, so I did exactly what they tell me to do.
    No, i did not make a backup of Iweb and the domain file, but reading other messages on this forum showed me that I can maybe try to make empty the cashfile (?)
    and otherwise I have bad luck and have to make my website again. Offcourse I have a lot of examples from all the pages (copied from the local map to my USB stick) and my website is aprox. 15 Mb, (not so big) so it will cost me a few nigths.
    But I'm still hoping on a miracle :-)
    greetings Lasource

  • Problem importing video file to PSE Organizer

    I use both PE7 and PSE7 and have been steadily importing my video files using PSE7's "organizer" but have encountered a problem with one particular file.
    I use the PSE7 "Get photos and videos" menu and when I select this file the computer seems to "hang" and then close PSE7 without any error message.  Other video files (.avi) created in exactly the same way can be imported without this problem (although oddly some do seem to take rather a long time for PSE7 to "process").  The offending file is quite large (1.1GB) but I have not had this problem with other files even larger than this.
    Interestingly, I can import the file into my catalog using PE7 (usimg the "Get media" menu) but if I do that it subsequently creates a problem in PSE7.  When I try to open up the Organizer in PSE7 after importing the offending video file using PE7, the PSE7 Organizer appears normally but with a message "creating thumbnails" at the bottom of the screen.  This lasts for 10 seconds or so and then the programme shuts down without any error message.
    I think I must have a "poison file".  In this situation what should I do?  Like many other "clips" already imported, the offending file was created from processing material on a Hi-8 (analogue) tape using the "pass-through" conversion technique.  I could I suppose therefore simply repeat the process as I still have the original tape but wondered if there is a better (easier) solution.
    This is proving a really useful forum so thanks in advance for any suggestions.

    Finnkai2 wrote:
    I use both PE7 and PSE7 and have been steadily importing my video files using PSE7's "organizer" but have encountered a problem with one particular file.
    I use the PSE7 "Get photos and videos" menu and when I select this file the computer seems to "hang" and then close PSE7 without any error message.  Other video files (.avi) created in exactly the same way can be imported without this problem (although oddly some do seem to take rather a long time for PSE7 to "process").  The offending file is quite large (1.1GB) but I have not had this problem with other files even larger than this.
    Interestingly, I can import the file into my catalog using PE7 (usimg the "Get media" menu) but if I do that it subsequently creates a problem in PSE7.  When I try to open up the Organizer in PSE7 after importing the offending video file using PE7, the PSE7 Organizer appears normally but with a message "creating thumbnails" at the bottom of the screen.  This lasts for 10 seconds or so and then the programme shuts down without any error message.
    I think I must have a "poison file".  In this situation what should I do?  Like many other "clips" already imported, the offending file was created from processing material on a Hi-8 (analogue) tape using the "pass-through" conversion technique.  I could I suppose therefore simply repeat the process as I still have the original tape but wondered if there is a better (easier) solution.
    This is proving a really useful forum so thanks in advance for any suggestions.
    Some thoughts
    1 -- You say this is an avi file created from processing material on a Hi-8 analog tape using pass-through, so I think that it is probably a DV-AVI file. What software did you use to capture the DV-AVI file to your computer ? (perhaps Premiere Elements 7 or Windows Movie Maker)?
    2 --  I suspect that your realistic options will be determined by whether Premiere Elements 7 can process this file or not. So that is what I would try first.
    Can you place that clip on the PRE 7 Timeline and then Export it to a different file (this would be a new DV-AVI file.)?  OR - What is at the very front of the problematic clip?  If you don't need the content at the front, I would try trimming off the contents at the front of the clip.(because that is what would be used to create the thumbnail), then Export to a new DV-AVI file.
    However if the problem turns out to be with the control information stored within that specific avi file and Premiere Elements can not process this file, then repeating the conversion process for that specific file may be the solution.
    3 -- FYI - You will probably need to delete that problematic file from your PSE catalog. Not sure if you will be able to do that from Photoshop Elements or if it shuts down too soon.
    4 -- FYI - Despite the fact that your problem happens in Photoshop Elements, your potential solutions may come from Premiere Elements. Therefore, I might be suggesting moving this discussion to another forum. For now, I suggest that you respond to this thread.

  • I have been trying to share file between my Mac Book Air and PC Laptop.Sometimes my Mac sees the PC and tries to connect but every time the connection fails. It says server may not exisit or network problem. I have apparently no network problem. Thanks fo

    I have been trying to share file between my Mac Book Air and PC Laptop.Sometimes my Mac sees the PC and tries to connect but every time the connection fails. It says server may not exisit or network problem. I have apparently no network problem. Thanks for any help you may provide

    hi,
    somewhere on the windows machineshould be something like "network setup wizard". exactly where it is and what it is called i cannot remember off the top of my head, windows help is actually slightly useful here, it should have a link to it.
    all the options checked on the mac are only what services the mac is offering to other machines, they have nothing to do with the services it can access (mostly...).
    oh yeah, to actually connect to the pc after you have turned its sharing on, use the finder, or, when it does not show the pc (this happens on and off, possibly a refresh problem apple...) choose go --> connect to server and enter smb://<pc's name or ip>
    to find the ip, the easiest way i think is
    start --> run --> cmd ->> ipconfig
    Andrew
    Message was edited by: Andrew Dicker

  • Format over catalog file, tried to recover file but now corrupt?!

    I recently performed a format of my hard drive.  When doing this, I did not back up my catalog file from photoshop elements(I have pse 8.0).  I backed up everything else, and I do have all of the original full size photo files from my hard drive, ~11,000 image files which are now all put back to their exact same location on the hard drive as before the format. Horrible mistake on my part not to back this up, but I thought this info was stored in the individual photo files itself, but I know now that this info was in the catalog file that I more than likely have lost.
    First off, following the format elements 8.0 was installed and all of my photos were migrated into elements(all thumbnails visible in organizer with no problems).  Elements and the organizer worked perfectly fine, besides the fact that I had lost all of my tag and album info that was stored in the catalog file. 
    My husband purchased some file recovery software following the format of the hard drive to try and recover the catalog database file from the hard drive.  The recovery software did find the file and was able to recover it from the partition of the hard drive that had been formatted over.  Following the recovery of the file, he tried to move the file manually into the folder C:\program data\adobe\elements organizer\catalogs\my catalogs\.  Doing this replaced the new catalog file that had been recently created by photoshops elements following the reformat with the one that was recovered by the recovery software.  Next, he opened up Photoshop elements and tried to launch the organizer.  Following this, we received the following message from organizer: “the catalog could not be opened, it is either corrupt, or the version is out of date and cannot be updated”. We then clicked on ok and then tried to hit the repair button, which it then told me that the catalog file could not be repaired.  We also tried the File>Catalog> Open command in elements organizer to open the new catalog file and this gave me the same exact error message and same results.
    We have also tried to run the psedbtool found on the web on the catalog file that was recovered by the recovery software.  Unfortunately, the file is unreadable by the tool and the tool gives me the following message when trying to use the tool on the recovered catalog file: "can't open catalog database: file is encrypted or is not a database". I also tried the -csv file and -printVolumeTable options of the tool and it gives me the same message.  Because I am getting this error message, it does not seem as if this tool will be able to help me with the recovered catalog database file.
    Is my catalog file that I have recovered corrupt and unusable, or is there some way to get this file to work? 
    The recovery software I used if from Pareto Logic named "Data Recovery Pro".  Could the problem be with the recovery software and maybe a different recovery software may do a better job of recovering the file?
    Thnks for any help!

    To make the story short, have you backed up your photos?  If the answer is yes then why can't you create a new catalog and import the photos to this new catalog?
    To create a new catalog, the basic process is:
    1) Open the Organizer and click on File
    2) Click Catalog
    3) click New
    4) Type a name for the new catalog
    5) Click OK
    Now it is a question of importing the photos to this new catalog.  the basic process is as follows:
    1) Open the Organizer and Click File
    2) Click Get Photos & Videos
    3) Click From Files and Folders
    4) click "down-arrow" icon to choose the folder
    5) CTRL+ Click on your photos to import (or CTRL + A to select all photos)
    6) click Get Media
    7) Click Show All to view your photos
    Hope this gets you started.  Your formatted hard drive will not let you get your old files so you are stuck.  You should always make a habit to back-up your data on a flash drive because they are very robust and can be stored safely  away from the computer you are working on.  Your your machines own Hard Disk as a back-up store is definitively not a good strategy.

Maybe you are looking for

  • How do I create a separate email account on a second iPad?

    I purchased a used iPad1 for my father. I'm trying to create a gmail account on the iPad. I can log into the email account on gmail but it says "The username or password for "imap.gmail.com" is incorrect."  What am I doing wrong? I carefully re-enter

  • Footer in smartforms.

    Dear friends!     I need your help. I am strugling with strenge problem in smartform. I am supposed to print item numbers in the footer of the data_table in main window. I can print some of the item numbers form the internal table,  I have 2140 item

  • Problem in ABAP HR code .

    I hae written below code in abap hr ,when executed it gives wrong data . tables : PERNR. infotypes : 0000,0001,0002. start-of-selection. Get PERNR. PROVIDE *   FROM p0000   FROM P0001   FROM P0002 BETWEEN PN-BEGDA AND PN-ENDDA. write : / p0000-begda

  • Photoshop Elements needs repair.  After repair it asks for disk 1.  I only have one disk and the case I got the program in has space for one disk.  What should I do?

    I must have gotten a corrupted sector on my disk drive I place my Adobe Photoshop Elements 6 CD in the drive and it asked to install or repair or uninstall.  I clicked repair and after a minute it asked for disk 1.  I could not find a disk one and my

  • Multiple index scenario

    Suppose I have a table that has (among other columns) the following columns: LAST_UPDATE DATE, CATEGORY VARCHAR(1) NOT NULL, The statistics of the data are as follows: - CATEGORY can only be one of 5 different values: 'A', 'B', 'C', 'D' and 'E' - The