CR 6.7 gives "unexpected end of file in clipboard" error

When I first installed CR67 RC1 it worked fine.  After restarting Photoshop and Bridge, I then got an "unexpected end of file encountered" popup whenever Photoshop CS5.1 tried to open a file.  Bridge seemed to work fine, though.  Very strange.
I then logged into another account on the same machine and CR67 and Photoshop worked fine.  After logging out of the first account and logging back in, CR67 RC1 started working fine in this original account that I had been using.  Plus, as a bonus, CR67 RC1 no longer displays the initial popup about how this is an RC.
Overall, I wish I could uninstall CR67 RC1, anyone know how?

A8ene wrote:
Overall, I wish I could uninstall CR67 RC1, anyone know how?
This has been answered lots of times recently. I don't know a link offhand, but it'll be there, if you search for it.

Similar Messages

  • Adobe CS2 unexpected end-of-file was encountered

    We have imaqge preview saving turned of but are still getting unexpected end-of-file was encountered errors when saving eps files. Saving the eps file to an new folder saves corerectly.

    The reason for asking about the details has to do with a possible bug in XSan 1.2 which seem to be hitting Helios / Xinet and possibly also Apple's own AFP implementation.
    Symptoms seem to be coherent (although 3 different products are used.
    Here is post from the xsan-users mailing list
    Otto,
    There appear to be some semi-known issues that have come up when using Xinet's FullPress with Xsan as well. Files disappearing, becoming corrupt, reverting to earlier versions... Finder windows showing multiple versions of the same file, even though the shell only shows one... etc, etc, etc.
    I can't tell you a whole lot about it as of yet, but the problem seems to be related to issues with files' i-node numbers. If you do a "ls -il" on the directory which contains your "missing" files and folders, often they will reappear. ??? Additionally you may notice that the i-node numbers change (they are the first numbers in the resulting list) with every execution of the "ls -il" command.
    I was told by someone that it is some sort of "caching problem", although I don't know what that means exactly or how that would affect what we are seeing happen. Early indications seem to look like problems are more likely to occur when users are accessing the same files over again, at different times throughout the day, from different machines (ie. X user worked on X job in the AM on X Mac, and in the afternoon Y user worked on X job in the PM on Y Mac).
    I wish I could tell you more, but I'm still in the early stages of tracking this one down!
    Good luck,
    Dustin Tantum
    And here is a tech note from helios:
    HELIOS TechInfo #095en01
    ========================
    Tue, 24 Jan 2006
    Data corruption using Apple XSan 1.2
    Recently we received feedback from HELIOS partners and customers that
    clients connected to HELIOS servers using Apple XSan 1.2 file systems
    showed indications of intermittent data corruption.
    Symptoms are that files can not be opened after Save, or show partial
    old content. Among the affected applications are Adobe Photoshop,
    InDesign, and Quark XPress.
    Another symptom are system messages from the "desksrv" process, like
    "node does not belong to index" which indicate corrupted database
    contents.
    From a "ktrace" dump of a "pcshare" process a partner could provide,
    it became clear that contents of a data file were written correctly by
    HELIOS. But after the application from the same SMB client did close,
    reopen and then read the content in again, this was in part the old
    content of the file.
    As these problems may not be recognized by users every time they
    occur, it would be safest not to use XSan 1.2 as a file system.
    HELIOS has reported this to Apple who is currently investigating this
    issue.
    We recommend that every customer who encounters this Xsan data
    corruption problem reports this bug to Apple.
    When a workaround or fix is available, this information will be
    distributed by a follow up to this TechInfo.
    So XSan 1.2 and doing file sharing doesn't seem to cooperate well for now

  • Good morning, my photoshop stopped working, it gives error when started, what can it be?  This is the message that appears: Unable to start the program it took a unexpected end of file  I hope answer

    Good morning, my photoshop stopped working, it gives error when started, what can it be?
    This is the message that appears:
    Unable to start the program it took a unexpected end of file
    I hope answer

    Could not initialize Photoshop because an unexpected end-of-file was encountered. | Mylenium's Error Code Database
    Mylenium

  • How to solve this problem in shell script: unexpected end of file

    Hello,
    I need to connect to each databases listed in /etc/oratab and check which database is shutdown(or mounted-only) and which database is opened to accept connection. However, following shell script gives me this error message:
    $>./check_is_db_runing.sh
    ./check_is_db_runing.sh: line 39: syntax error: unexpected end of file
    Could anyone please help me to solve this problem, why the code (line 29 to 32) does not work in the LOOP? It works without the LOOP.
    Thanks in advance!!!
    1 #!/bin/bash
    2
    3 LOGDIR=/data03/oracle/dbscripts
    4 ORATABFILE=/etc/oratab
    5
    6 cat $ORATABFILE | while read LINE
    7 do
    8 case $LINE in
    9 \#*) ;; #comment-line in oratab
    10 *)
    11 ORACLE_SID=`echo $LINE | awk -F: '{print $1}' -`
    12 if [ "$ORACLE_SID" = '*' ] ; then
    13 # NULL SID - ignore
    14 ORACLE_SID=""
    15 continue
    16 fi
    17
    18 # Proceed only if last field is 'Y'
    19 if [ "`echo $LINE | awk -F: '{print $NF}' -`" = "Y" ] ; then
    20 if [ `echo $ORACLE_SID | cut -b 1` != '+' ]; then
    21
    22 ORACLE_HOME=`echo $LINE | awk -F: '{print $2}' -`
    23 PATH=$ORACLE_HOME/bin:/bin:/usr/bin:/etc
    24 export ORACLE_SID ORACLE_HOME PATH
    25 LOGFILE=$LOGDIR/check_$ORACLE_SID.log
    26 touch $LOGFILE
    27 #echo $LOGFILE
    28
    29 $ORACLE_HOME/bin/sqlplus -s "/ as sysdba" << EOF > $LOGFILE
    30 select * from global_name;
    31 exit
    32 EOF
    33
    34 fi
    35 fi
    36 ;;
    37 esac
    38 done

    This code works ie. generates logs with sql result - slightly modified to be runable:
    #!/bin/bash
    LOGDIR=/tmp
    ORATABFILE=/etc/oratab
    cat $ORATABFILE | while read LINE
    do
    case $LINE in
    \#*) ;; #comment-line in oratab
    ORACLE_SID=`echo $LINE | awk -F: '{print $1}' -`
    if \[ -z $ORACLE_SID \] ; then
    # NULL SID - ignore
    ORACLE_SID=""
    continue
    # Proceed only if last field is 'Y'
    else
    ORACLE_HOME=`echo $LINE | awk -F: '{print $2}' -`
    PATH=$ORACLE_HOME/bin:/bin:/usr/bin:/etc
    export ORACLE_SID ORACLE_HOME PATH
    LOGFILE=$LOGDIR/check_$ORACLE_SID.log
    touch $LOGFILE
    #echo $LOGFILE
    $ORACLE_HOME/bin/sqlplus -s "/ as sysdba" << EOF > $LOGFILE
    select * from global_name;
    exit
    EOF
    fi
    esac
    done

  • Bulk Insert Failure: Unexpected end of file

    Hi all,
    I have a Bulk Insert task which pulls data from a .csv file to SQL server table.
    It works fine 99 out of 100 times, but sometimes it throws the following error in production.
    "System exception: An error occurred with the following error message: "Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information
    about the error.Bulk load: An unexpected end of file was encountered in the data file.".  "
    My Client says that there was no change to the file and it runs fine the next time.Its a error which I could not reproduce in development.
    I have an interface prior to this bulk insert interface to check whether the file is completely available(i.e i try to open the file and check whether its used by any other process).
    I'm supposed to give an answer for why it fails sometimes. Your thoughts on this?
    Rajkumar

    The Bulk insert task is used in SSIS package. The error Posted in my first post is what I got from SSIS..
    Why don't you use Data Flow task? BULK INSERT is fast, but not much error control.
    BOL quote ( http://msdn.microsoft.com/en-us/library/ms141679.aspx ) : "Error Handling in Data
    When a data flow component applies a transformation to column data, extracts data from sources, or loads data into destinations, errors can occur. Errors frequently occur because of unexpected data values. For example, a data conversion fails because a column
    contains a string instead of a number, an insertion into a database column fails because the data is a date and the column has a numeric data type, or an expression fails to evaluate because a column value is zero, resulting in a mathematical operation that
    is not valid.
    Errors typically fall into one the following categories:
    Data conversion errors, which occur if a conversion results in loss of significant digits, the loss of insignificant digits, and the truncation of strings. Data conversion errors also occur if the requested conversion is not supported.
    Expression evaluation errors, which occur if expressions that are evaluated at run time perform invalid operations or become syntactically incorrect because of missing or incorrect data values.
    Lookup errors, which occur if a lookup operation fails to locate a match in the lookup table.
    Many data flow components support error outputs, which let you control how the component handles row-level errors in both incoming and outgoing data. You specify how the component behaves when truncation or an error occurs by setting options on individual
    columns in the input or output. For example, you can specify that the component should fail if customer name data is truncated, but ignore errors on another column that contains less important data."
    http://msdn.microsoft.com/en-us/library/ms141679.aspx
    Kalman Toth SQL SERVER & BI TRAINING

  • What causes 'Unexpected end-of-file' error?

    Hi,
    I am a photographer and an avid Lightroom user. I have two camera's (Nikon D700 and D300) and two computers, a desktop PC and a MacbookPro. Lightroom is installed on both computers.
    For the last three photoshoots I have had this problem where 1 in 3 to 1 in 5 images in Lightroom on my desktop PC suddenly gives a 'Unexpected end-of-file' error. First I thought it was my camera. But then I loaded the images onto my MacbookPro and they worked fine. Then I took some images with my other camera, loaded them on to my Desktop PC, and, voila, same problem.
    The problem specified: the image stops rendering a preview. A dull preview appears. At the top of the screen the message appears: "An unexpected end-of-file occurred." The histogram window stays empty and the image can not be developed.
    I have browsed through this forum some looking for the cause and the fix. There are some mentions of it, but they all date back to 2007.
    I run LR 2.2 on Windows XP SP2 and on a MacbookPro with OS X, version 10.5.8.
    Please help me understand the cause of this problem, and help me find a fix?
    Thanks,
    Rogier
    Rotterdam, The Netherlands
    www.rogierbos.com

    While the corruption in your .NEF file could come from any one of a number of sources, here is a way to recover at least some of the information if you own Adobe Acrobat.  Your .NEF file should contain a smaller JPEG file created by your Nikon camera when the picture was taken.  Even if the .NEF file is corrupt, the JPEG may well be intact, and you can tell that's the case if a preview is visible in Lightroom or Bridge. 
    If you try to print it from Bridge or Lightroom, though, you will get an error.  You can get around this by loading up a CODEC that will let you preview the files in Windows Photo Gallery.  Nikon has one available for download to use with Vista x32 at http://www.nikonimglib.com/nefcodec/index.html.en, but it doesn't support Vista x64, so if you're running that (as I am) you'll need a second party CODEC such as the one available from http://www.ardfry.com/Products.htm with a 15-day trial download available.  They also have a DNG CODEC which I have not tried.
    With that CODEC installed and your system rebooted, preview the damaged NEF file in Windows Photo Gallery.  Choose the "Print" option and select the "Adobe PDF" printer.  Choose the "Postscript Custom Paper Size" option, and set the dpi resolution to the highest available (4000).
    Go to the "Options" link on the bottom right of the window and uncheck the "Sharpen For Printing" box, as you can do this yourself with later processing.  Then go to the "Printer Properties" link to see the Adobe PDF settings.
    Go to the Adobe PDF Settings tab and choose Default Settings: High Quality Print, which will set the resolution to 2400 dpi. 
    You want to have Acrobat interfere as little as possible with the output, so select "Edit" from the Default Settings tab, which will bring up the "High Quality Print - Adobe PDF Settings" dialog.  Here, turn off the "Optimize for fast web view" check box, then go to the "Images" folder and set the "Downsample" setting to Off and the pixels per inch to 2400.  Also, set "Compression" to Off.
    If you're going to do this in the future, you can also "Save As ..." your settings for future use with a name like "Fix Bad NEF Files."
    Print the file to a designated folder.  It won't be quite as good as the NEF file would have been, but at least you haven't lost the shot.

  • Import-SPMetadataWebServicePartitionData : Bulk load: An unexpected end of file

    hello all, i was importing term sets from farm to farm using powershell, i used the export and i got a file and on the import i got this message:
    This is the command I wrote:
    PS C:\Users\DaniR> Import-SPMetadataWebServicePartitionData -identity "3194
    6ea-40a9-4d94-8443-92e71c6a9ad3" -serviceproxy "Managed Metadata Service" -path "c:\TermSets.bak" -overwriteexisting
    I got this error :
    Import-SPMetadataWebServicePartitionData : Bulk load: An unexpected end of file the data file.
    The OLE DB provider "BULK" for linked server "(null)" reported an error. The povider did not give any information about the error.
    any help will be good. thanks.

    We had the same issue. So we unzipped the cab file and had a look.
    It turned out that ECMTermDescription.dat had an entry that was long in fact it went over 3 lines at had some line breaks in it as well.
    We removed most of the text and tried again and it worked! Thank you Sharepoint!
    something like this:
    0C37852B-34D0-418E-91C6-XXXXXXXXXXXX 35622
    1033 Description asfsa safsf 
    0C37852B-34D0-418E-91C6-XXXXXXXXXXXX 40428
    1033 was importing term sets from farm to farm using powershell,
    i used the export and i got a file and on the import i got this message fasdfas fasfsf
    asfasfsa f asdfasdfasfs asfasfsa fsafsa fsafas flkjsfl;kj la;skfd;a sjfsalkjfasl;kjf slkajfk j asfsfsaf'
    asfasf asfs ' asdfas asdf safas' asfsaf asfsaf asfasdfsaf asfas' fasfasdf asdfasfsaf dlkjoi o ipoji jiojjjiji ijijijnkjnk   jhkjhkhjh iuhiooiuoiu
    oiouo ugyuyguyg uygugiuhiuhih iuhihuiuhf

  • Error while starting the server - Unexpected end of file from server|

    Hi,
    I am getting below error when I start my glassfish server.
    SEVERE|sun-appserver2.1|com.stc.emanager.deployment.sunone.model.runtime.ServerRuntimeModel|_ThreadID=86;_ThreadName=httpWorkerThread-4048-3;_RequestID=8d1f2acd-9e4e-4e9f-a9fd-3b21e4223318;|Unexpected end of file from server|#]
    I see the process is running. But, I am not able to open admin console.
    could any one plz help me to resolve this issue.
    Thanks in Advance,
    -Manandi

    Welcome to the forum.
    Unfortunately for you, posting only about things not working isn't going to net you assistance or answers - at most you can get sympathy but there isn't too much of that to share with everyone. You should find a forum for the particular product that is not working. If you have a problem with Glassfish, then try the Glassfish forum.
    http://www.java.net/forums/glassfish/glassfish

  • Error message: unexpected end-of-file in Photoshop CS4

    "could not complete the command because an unexpected end-of-file was encountered"I just started getting them tonight. It happened when I opt-doubled clicked on an image in Dreamweaver to edit in Photoshop. Now it pops up on every image. I just reinstalled Photoshop CS4 and Bridge today. Help!

    Check your scratch disks for fragmentation ( use something like disk warrior ) and available space.  Sounds like the files are not getting completely saved.

  • Quick par upload NWDS ERROR   Unexpected end of file from server

    Hi:
    I can´t deploy my par file from NWDS, this is the error:
    28.04.09 / 08:24] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > No Information
    java.net.SocketException: Unexpected end of file from server
         at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:763)
         at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:626)
         at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:760)
         at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:626)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:957)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.readResponse(DeployEngine.java:363)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.uploadPar(DeployEngine.java:435)
         at com.sap.portal.developmentTools.general.wizards.upload.DeployEngine.deploy(DeployEngine.java:221)
         at com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1.processUpload(SAPMPWizard.java:416)
         at com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1.run(SAPMPWizard.java:350)
         at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:302)
         at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252)
         at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:758)
         at com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard.performFinish(SAPMPWizard.java:531)
         at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:608)
         at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:321)
         at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
         at org.eclipse.jface.window.Window.open(Window.java:563)
         at com.sap.portal.developmentTools.general.uploader.QuickPARUploader.run(QuickPARUploader.java:146)
         at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:456)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:403)
         at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:397)
         at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:72)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Any idea?
    Thanks a lot for your time on this thread.
    Rocío.

    Hi Rocio,
    Check the proxy settings in NWDS and use JAVA RUNTIME 1.5.0_06-b05.
    Please refer to the links below where similar problems have been resolved:
    Cannot deploy par from NWDS
    Can not download SOAP CLIENT TOOL
    Another way of deploying the .par file is from System Administration -> Support -> Portal Runtime -> Administration Console.
    Hope this resolves your issue.
    Regards,
    Seema Rane.
    Edited by: Seema Rane on Apr 29, 2009 8:57 AM

  • HELP! 'unexpected end of file' error-Is there a fix?! OS 10.4.11

    Getting 'Unexpected end of file' error when trying to open a file (that's a rush job) in QuarkXpress 6.5.  I attributed it to lack of memory, so I immediately backed up all files and HD to an external drive to free up space. Restarted and prayed... Quark launched, but file won't open. Same error.
    Have: 2.1 GHz PPC G5, 1.5 GB DDR2 SDRAM  OS 10.4.11 (pre Intel)
    Capacity: 232.8GB, Available: 163GB, Used 69.6GB
    Have been searching help site for 5 hours looking for answer and am DESPERATE!  I saved changes regularly, but can't access this file at all... I've lost 2 full days & nights working on this project that has to be done in 2 days.
    Ran Disk Utility, but no success opening this specific Quark file (Quark will launch- it's just this file that's affected).  Have tried to down load Applejack, etc. but keep finding out they only support OS 10.5 or higher.  (Haven't been able to afford upgraded system since Intel requires purchase of full verions of graphics software instead of upgrades to the tune of $6k).
    PLEASE, I only know enough to be dangerous, so ANY help is GREATLY APPRECIATED! 
    Savvy folks- if I'm in the wrong place, please send me a link where I can solve this personal catastrophy.
    Many thanks-in-advance

    I think you best do over your work from scratch.  You need to make backup copies of the files regularly.  You need to have copies on multiple disks or flash drives.
    I saved changes regularly
    You should know that this isn't sufficient. You need to have multiplte copies of the file.  Backup anyone?  Could be the file structure got messed up.  Could be Quark messed up the file.
    You need to get a newer machine.  G5's are not reliable any more.  Need to see if Quark will run in compatiblity mode on an intel machine.  You should at least get an external firewire drive from owc.  Old hd's are not reliable.
    Boot in safe mode. Hold down the shift key when powering on the machine. This will run a disk repair program. Boot up will take longer as the harddrive is scanned and repaired.
    See this article:
    http://docs.info.apple.com/article.html?artnum=107393
    Or from:
        mrtotes article  :
        Boot from the OS X Install disk and from the Menu Bar choose Disk Utility. Then run "Repair Disk" and "Repair Disk Permissions" on your hard disk.
        a brody:
        https://discussions.apple.com/docs/DOC-1689
    Here the apple article on booting single user mode and using fsck. See the section on Use fsck:
    http://docs.info.apple.com/article.html?artnum=106214
    I suspect not but Perhaps Disk Warrior will be of some help:
    http://www.alsoft.com/DiskWarrior/
    Robert

  • How to resolve Unexpected End of file error in Web Crawling

    how to resolve Unexpected End of file error in Web Crawling....
    I am getting java.net.SocketException :Unexpected End of file error in Web Crawling.
    How to get rid of this error.
    Please help anybody ASAP.

    1. Handle this exception - not recommended since you will be creating an exception handling overhead unnecessarily.
    2. Check for EOF using available() method in InputStream. It returns 0 if there are no bytes to read.

  • When trying to open in external editor I get this warning when going to Photoshop CS6: Could not complete your request because an unexpected end-of-file was encountered.

    Aperture: When trying to open in external editor I get this warning when going to Photoshop CS6: Could not complete your request because an unexpected end-of-file was encountered. I can export and open via Photoshop or open directly from file-just not through external editor. Gerry

    Hi gerry,
    does this happen for a particular image only, or for all images?
    And does this happen only from your account or also from other user accounts?
    Léonie

  • I can´t initialise photoshop because of this Could not load actions because an unexpected end-of-file was encontered. "Could not initialise Photoshop because the preferences file was invalid (it has been deleted)" how can i fix it?

    I can´t initialise photoshop because of this Could not load actions because an unexpected end-of-file was encontered. "Could not initialise Photoshop because the preferences file was invalid (it has been deleted)" how can i fix it?

    I have a MacBook Pro.
    App - Adobe Creative suite 5.5
    The only app that does´t initialize is the photoshop
    Problem solve
    FAQ: How do I reset my preferences?
    Thank you Jeffrey Tranberry

  • Unexpected end of file on DNG using LR5

    I was editing images in Lightroom 5, just applying "blue" labels to images I wanted to look at again.  Then on one image I did some color and tone corrections.  Then when I went to open that image in PS I got an error message saying Unexpected end-of-file.  The other images which had no color or tone corrections do not have this problem and open fine.
    I downloaded a trial of capture one, and it is not able to open or convert it either.
    I know this pops up from time to time but not much with DNG, as I saw it listed in a few forums, but none really seem to answer if it is fixable.  I looked at the files in iHex-hex editor as one forum briefly mentioned that, but even comparing it to other files that are working fine I don't know what I am looking at with that.
    I don't have a backup of this image, so recovery is my only option...that is if it is an option.
    The images are stored on a Drobo.  I had LR set to save metadata changes to the files automatically.  Camera was Leica M240, but I think this error happened while editing in LR, as I was able to generate a 1:1 preview before I started editing.
    Do you know if it is fixable? And if so how?
    Thanks in advance

    I believe the only reason it is displaying in LR is because I had already generated a 1:1 preview of it before I did the editing that I think created the issue.  I have tried every export option I know in LR, and all produce the same error
    Thanks though.

Maybe you are looking for

  • Creating Infoobject

    Hello I have a question in regards to creating an Infoobject. Under 'Master Data/Texts' tab when creating an Infoobject  when should we actually fill in the Application Component box.And what exactly will it do.Do i fill it for things like 'Wever- Ve

  • How to insert into mysql the creation time and modification time from java?

    first how? Second what is better from create the date from java or do it from mysql? thanks in advace Pedro

  • Number of Entries icon should come on report selection screen

    Hi, In my requirement, I want Number of Entries icon on my report selection screen. Means when i insert the required selection parameter's, then i want to see the total number of entries, which is come after the execution of my report. Please let me

  • SSO With UDDI Registry

    Hello, Does anyone know if there is a way to configure the Oracle 10.1.3 Service Registry so that the login is managed by an Oracle SSO instance? Thanks, KS

  • QLF (Qualifier) Field in Sales Order

    Hi, Can anyone please tell me the significance of the field QLF (Qualifier) in the Sales Order is or what it is used for?This field can be found next to Item Category in the AFS Item Overview Tab. I havent found much information on this and would app