4.1 rc1 - unable to read monochrome Sigma DP X3F files

Sigma DP2s
LR 4.1 rc1
I import .X3F files to LR catalogue from SD card via card reader.
LR reads and allows me to edit these OK
If I then edit the .X3F files using Sigma Photo Pro  v5.1, and change WB to "Monochrome", then save the modification to the raw file (in SPP5.1), and then attempt to look at it in LR in the develop module,  I get the error "There was a problem working with the file"..
Followed by "Lightroom has encountered problems reading this photo. You will not be able to make adjustments to the photo."
I have tried this a number of times with different X3F image files with the same result.
I have tried (separately) synchronizing, deleting and re-importing the file with the same result.
LR3 worked perfectly in this regard - if a .X3F file was imported, then changed using SPP5.1 to mono, the effect would be immediately seen in LR without errors.
NB If I then set the WB back from monochrome in SPP5.1, LR is able to work with theimage file again with noerrors.
I have also encountered similar error messages when trying to export jpgs from edited .tiff files created using a film scanner, which may be related. When or if I can reproduce that I will start a separate thread.

Lightroom is raw conversion software and once your camera is supported it will be able to process the raw data. However if you use other raw conversion software to process the raw data or partially process the raw file you have altered the raw file and Lightroom will no longer be able to process. With raw data you can only choose one chef.

Similar Messages

  • ORA-27047: unable to read the header block of file

    My Windows 2003 crashed which was running Oracle XE.
    I installed Oracle XE on Windows XP on another machine.
    I coped my D:\oracle\XE10g\oradata folder of Win2003 to the same location in WinXP machine.
    When I start the database in WinXP using SQLPLUS i get the following message
    SQL> startup
    ORACLE instance started.
    Total System Global Area 146800640 bytes
    Fixed Size 1286220 bytes
    Variable Size 62918580 bytes
    Database Buffers 79691776 bytes
    Redo Buffers 2904064 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    I my D:\oracle\XE10g\app\oracle\admin\XE\bdump\alert_xe I found following errors
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Wed Apr 25 18:38:36 2007
    ALTER DATABASE MOUNT
    Wed Apr 25 18:38:36 2007
    ORA-00202: control file: 'D:\ORACLE\XE10G\ORADATA\XE\CONTROL.DBF'
    ORA-27047: unable to read the header block of file
    OSD-04001: invalid logical block size (OS 2800189884)
    Wed Apr 25 18:38:36 2007
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    ORA-00202: control file: 'D:\ORACLE\XE10G\ORADATA\XE\CONTROL.DBF'
    ORA-27047: unable to read the header block of file
    OSD-04001: invalid logical block size (OS 2800189884)
    Please help.
    Regards,
    Zulqarnain

    Try to install win 2003 server software, do the fresh installation of oracle software, now copy the datafiles and controlfiles to same locations as you did on winxp.
    get back to us, if still not out of the woods. I still doubt that a simple restore would do the trick, since you doing it across different platforms, might be I can be wrong, but this is what I personally feel, you not able to start the database on winxp.
    hare krishna
    Alok

  • Error updating AE: ERROR: DS015: Unable to read symlink target of source file "/Applications/Adobe After Effects CC 2014/Plug-ins/Effects/mochaAE/(Mocha Support)/mocha AE CC.app/Contents/MacOS/mediaioserver.app/Contents/CodeResources"(Seq 212)

    Error updating AE: ERROR: DS015: Unable to read symlink target of source file "/Applications/Adobe After Effects CC 2014/Plug-ins/Effects/mochaAE/(Mocha Support)/mocha AE CC.app/Contents/MacOS/mediaioserver.app/Contents/CodeResources"(Seq 212)
    What can I do?

    Run the cleaner tool and install from scratch.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • Excel unable to read WEBI schedule download excel file

    Hi experts,
    We use BO central management's instance manager to schedule download a report as excel format in our ftp share folder.
    And the download did run successfully and an icon of the file been shown as excel  format in ftp folder.
    while we use excel 2007 to open the file, excel pop out the message of unable to read the file.
    it is saying the excel found unreadbale content in report. Do you want to recover the contens of this workbook? if you trust the source of this workbook, click yes. after applied the yes, excel stil pop out the message of unable to read the file.
    the general tab in excel been uncheck the "ignore other applications that use Dynamic Data Exchange (DDE), but result still shown unable to read.
    The whole set of report can be run in WEBI and using save report to my computer as excel without any issues.
    WEBI been setup as refresh on open.
    Any clues?

    Hi,
    Did you create a PivotTable report in the file? As your description, the HTML format could be used correctly in Excel 2007. Did you get the other error message?
    Such as,Unable to read file.
    When you click OK,   you receive the following error message:
    Errors were   detected in '<var>filename</var>.xls', but Microsoft Excel was   able to open the file by making the repairs listed below. Save the file to make   these repairs permanent.
    PivotTable report   '<var>report_name</var>' on   '[<var>filename</var>.xls]worksheet_name' was discarded due to   integrity problems.
    Please try to use the workaround:
    Turn off AutoRecovery when you work with any workbooks.Click Excel button>Excel options>Save>Uncheck AutoRecovery
    Following this, if the issue exists, I recommend you fix the issue the following KB:
    http://support.microsoft.com/kb/943088
    http://support.microsoft.com/kb/929766
    Regards,
    George Zhao
    TechNet Community Support

  • Java App on Linux : Unable to read iso-8859-1 encoded file correctly.

    I have a file which is encoded as iso-8859-1, and contains characters such as ô .
    I am reading this file with java code, something like:
    File in = new File("myfile.csv");
    InputStream fr = new FileInputStream(in);
    byte[] buffer = new byte[4096];
    while (true) {
    int byteCount = fr.read(buffer, 0, buffer.length);
    if (byteCount <= 0) {
    break;
    String s = new String(buffer, 0, byteCount,"ISO-8859-1");
    System.out.println(s);
    However the ô character is always garbled, usually printing as a ? .
    I am running this on a Linux machine. It works fine on my XP machine.
    I have verified that I can see the correct characters when I cat the file on the terminal.
    (Interestingly, but I think maybe only by co-incidence, it works when I run with the -Dfile.encoding=UTF16 option, but not with UTF8, although this appears a hack rather than a fix since this option was not intended for developer use by sun - but I thought mentioning it may provide some clues as to what is going on)

    I think your main probelm is with the console. When you send text to the console, it's sent in the system default encoding. On an English-locale system that might be ASCII, ISO-8859-1, windows-1252, UTF-8, MacRoman, and probably several other possibilities. Then the console decodes the the bytes using whatever encoding it feels like using--on my WinXP machine, it uses cp437 by default (just for laughs, as far as I can tell). If the text happens to be pure, seven-bit ASCII, there's no problem, since all those encodings are identical in that range.
    But if you need to output anything other than ASCII characters, avoid the console. Send the output to a file and specify an encoding that you know will be able to handle your characters--UTF-8 can handle anything. Then open the file with an editor that can read that encoding; most of them can handle UTF-8 these days, and many will even detect it automatically. You also need to be using a font that can display your characters.
    However, you're also going about the reading part wrong. Instead of reading the text in as bytes and passing them to a String constructor, you should use an InputStreamReader and read it as text from the beginning: BufferedReader br = new BufferedReader(
      new InputStreamReader(
        new FileInputStream("myfile.csv"), "ISO-8859-1"));I am curious about your statement that "it works" when you run with the -Dfile.encoding=UTF16 option. I wouldn't be surprised to see it output the correct characters (ASCII characters, anyway), but I would expect to see the characters interspersed with blank spaces or rectangles.

  • Terminal Error: Unable to read "/private/etc/cups/cups-files.conf" due to errors.

    After finding out that my Kodak ESP C310 printer was no longer printing after installing OS X Yosemite, I tried entering these into the terminal to get the driver working again.
    sudo sh -c 'echo "Sandboxing Relaxed" >> /etc/cups/cups-files.conf'
    sudo launchctl stop org.cups.cupsd
    Nothing happened the first time I tried it, so I tried it again with still no luck. Now within seconds of opening the terminal I get this message :
    " /private/etc/cups/cups-files.conf"
    It pops up every few seconds, so it is practically impossible for me to type anything into the terminal without it popping up right in the middle. I tried the fix from the other discussion on this issue, and that didn't work. also I'm noticing that my printer isn't even added under "printers and scanners" anymore. I tried to re-add it, but I cannot without a driver that functions with 10.10.1
    Any suggestions on how I should deal with this?

    The permissions and ownership on /private/etc/cups/cups-files.conf should be:
    /bin/ls -leO@ /private/etc/cups/cups-files.conf
    -rw-r--r--  1 root  _lp  compressed 3297 Mar  8  2014 /private/etc/cups/cups-files.conf
    See "man cups-files" for the format of the cups-files.conf file
    The contents of the /private/etc/cups/cups-files.conf file should look like:
    # "$Id: cups-files.conf.in 11203 2013-07-26 21:32:33Z msweet $"
    # Sample file/directory/user/group configuration file for the CUPS scheduler.
    # See "man cups-files.conf" for a complete description of this file.
    # List of events that are considered fatal errors for the scheduler...
    #FatalErrors config
    # Do we call fsync() after writing configuration or status files?
    #SyncOnClose No
    # Default user and group for filters/backends/helper programs; this cannot be
    # any user or group that resolves to ID 0 for security reasons...
    #User _lp
    #Group _lp
    # Administrator user group, used to match @SYSTEM in cupsd.conf policy rules...
    SystemGroup admin
    SystemGroupAuthKey system.print.admin
    # User that is substituted for unauthenticated (remote) root accesses...
    #RemoteRoot remroot
    # Do we allow file: device URIs other than to /dev/null?
    #FileDevice No
    # Permissions for configuration and log files...
    #ConfigFilePerm 0644
    #LogFilePerm 0644
    # Location of the file logging all access to the scheduler; may be the name
    # "syslog". If not an absolute path, the value of ServerRoot is used as the
    # root directory.  Also see the "AccessLogLevel" directive in cupsd.conf.
    AccessLog /private/var/log/cups/access_log
    # Location of cache files used by the scheduler...
    #CacheDir /private/var/spool/cups/cache
    # Location of data files used by the scheduler...
    #DataDir /usr/share/cups
    # Location of the static web content served by the scheduler...
    #DocumentRoot /usr/share/doc/cups
    # Location of the file logging all messages produced by the scheduler and any
    # helper programs; may be the name "syslog". If not an absolute path, the value
    # of ServerRoot is used as the root directory.  Also see the "LogLevel"
    # directive in cupsd.conf.
    ErrorLog /private/var/log/cups/error_log
    # Location of fonts used by older print filters...
    #FontPath /usr/share/cups/fonts
    # Location of LPD configuration
    #LPDConfigFile launchd:///System/Library/LaunchDaemons/org.cups.cups-lpd.plist
    # Location of the file logging all pages printed by the scheduler and any
    # helper programs; may be the name "syslog". If not an absolute path, the value
    # of ServerRoot is used as the root directory.  Also see the "PageLogFormat"
    # directive in cupsd.conf.
    PageLog /private/var/log/cups/page_log
    # Location of the file listing all of the local printers...
    #Printcap /Library/Preferences/org.cups.printers.plist
    # Format of the Printcap file...
    #PrintcapFormat bsd
    #PrintcapFormat plist
    #PrintcapFormat solaris
    # Location of all spool files...
    #RequestRoot /private/var/spool/cups
    # Location of helper programs...
    #ServerBin /usr/libexec/cups
    # SSL/TLS certificate for the scheduler...
    #ServerCertificate /Library/Keychains/System.keychain
    # SSL/TLS private key for the scheduler...
    #ServerKey
    # Location of other configuration files...
    #ServerRoot /private/etc/cups
    # Location of Samba configuration file...
    #SMBConfigFile
    # Location of scheduler state files...
    #StateDir /private/etc/cups
    # Location of scheduler/helper temporary files. This directory is emptied on
    # scheduler startup and cannot be one of the standard (public) temporary
    # directory locations for security reasons...
    #TempDir /private/var/spool/cups/tmp
    # End of "$Id: cups-files.conf.in 11203 2013-07-26 21:32:33Z msweet $".

  • Terminal: unable to read "/private/etc/cups/cups-files.conf" due to errors

    Terminal is giving me the message above every 10 seconds making it impossible to write any lines without the error message breaking up the line.  Any suggestions on how to resolve this issue?

    Back up all data.
    Select
              Shell ▹ New Command
    from the Terminal menu bar. Uncheck the box marked
              Run command inside a shell
    if checked.
    Copy and paste the following line into the text box that opens, then press return:
    mkdir disabled_shell_files
    Close the Terminal window that opens. Repeat with this line:
    mv .profile .bash_history .bash_profile .bashrc .inputrc disabled_shell_files
    Your old shell initialization and history files will be saved in a directory named "disabled_shell_files" at the top level of your home directory. It's normal that some of these files will not exist, and therefore you will get some "no such file" errors.
    Close the window, open a new one, and test.

  • Lightroom rendering Sigma dp1x .x3f files black

    Hi,
    Hoping someone can help.  I just got a Sigma dp1x.  LR renders all my x3f raw files black.  A normal preview will show up, but when I attempt to edit the photo, the picture goes completely black.  I am running LR4.1 and ACR 7.1 win 7.
    Please help!

    Forum search: http://forums.adobe.com/community/search.jspa?peopleEnabled=true&userID=&spotlight=false&c ontainerType=14&container=3316&rankBy=date&q=sigma+merrill

  • How can i read the data from attached file?

    using javamail i receiving a mail with attachment
    but unable to read the content of the file
    Plz help me out
    thanks in advance

    The answer is in the JavaMail FAQ.

  • System unable to read table in Adhoc Query

    Hi Experts,
    I am trying to extract a report based on Infotype 0022 through Adhoc query. Even after maintaining data for IT0022 for a few employees the system is unable to read the educational details of those employees.
    I am unable to trace the defect . can anybody please tell me what could be the reason. I have checked the table PA0022, there the data is been stored.
    Thanks & Regards,
    Smitha

    Hi paul and experts
    actuall im reading data from 0022 infotype .  im using  macro
    rp_provide_from_last p0022 '11' pn-begda pn-endda.
    no data found for this.
    but in pa30 for that particular employee data is there.
    please help me out of this.
    thanks a lot

  • 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

  • Install Software HANA unable to read repository

    Hello,
    I'm new to Eclipse. I'm trying to get up the trial Cloud environment for SAP HANA. I have Eclipse Juno installed. When I attempt to do an install of the HANA software on top of Eclipse I receive error "Unable to read Repository".
    We do not use a proxy, so network was set to "DIRECT". I can get to the SAP site from the browser tools.hana.ondemand.com/luna. I downloaded the certificate for that site and added it to the cacerts file for JDK1.6.0_45.
    The error message in full says:
    Unable to read repository at tools.hana.ondemand.com/luna/content.xml.
    Using the browser, tools.hana.ondemand.com/luna/content.xml returns a 404 error. If I change it to tools.hana.ondemand.com/luna/content.jar, it gives me a download.
    As far as I can tell, there's no way to make Eclipse point to content.jar. Can someone tell me where this is going wrong?
    Thanks.
    Danny Hearn

    On 06/26/2015 08:52 AM, Danny Hearn wrote:
    > Hello,
    >
    > I'm new to Eclipse. I'm trying to get up the trial Cloud environment
    > for SAP HANA. I have Eclipse Juno installed. When I attempt to do an
    > install of the HANA software on top of Eclipse I receive error "Unable
    > to read Repository".
    > We do not use a proxy, so network was set to "DIRECT". I can get to the
    > SAP site from the browser tools.hana.ondemand.com/luna. I downloaded
    > the certificate for that site and added it to the cacerts file for
    > JDK1.6.0_45.
    >
    > The error message in full says:
    > Unable to read repository at tools.hana.ondemand.com/luna/content.xml.
    >
    > Using the browser, tools.hana.ondemand.com/luna/content.xml returns a
    > 404 error. If I change it to tools.hana.ondemand.com/luna/content.jar,
    > it gives me a download.
    > As far as I can tell, there's no way to make Eclipse point to
    > content.jar. Can someone tell me where this is going wrong?
    >
    > Thanks.
    >
    > Danny Hearn
    Likely the best support for SAP/HANA would come from SAP/HANA.

  • PI 7.3 - AEX "unable to read configuration data" and login problems

    Hello Friends,
    after installation of AEX, i'm facing some problems.
    1.I'm not able to login with any user, i created during installation wizard. So i cannot check any user in NWA -> User Administration.
    2.Once more, while opening http://<host>:<port>/rep or http://<host>:<port>/dir, i get the following error message.
    Can somebody help me?
    I think, there is a problem with the users, which have been created during installation. How can i check this? Is there any chance?
    Second, if i'm able to login, i have to import the exchange profile again. This should solve the problem. Or is this wrong?
    PI (http://<host>:<port>/dir/start/index.jsp). Below is the part of the error message that is showing up. Appreciate your suggestions:
    Exception class: com.sap.aii.utilxi.prop.api.PropertiesException$InitFailed
    Message
    Unable to read configuration data (ExchangeProfile/aii.properties)
    Stacktrace
    Thrown:
    com.sap.aii.utilxi.prop.api.PropertiesException$InitFailed: Unable to read configuration data (ExchangeProfile/aii.properties)
    at com.sap.aii.utilxi.prop.api.PropertySourceFactory.initServerMode(PropertySourceFactory.java:220)
    at com.sap.aii.utilxi.prop.api.AIIProperties.initServerMode(AIIProperties.java:518)
    at com.sap.aii.ib.server.applcomp.StartupServerProperties.initPropertiesForServer(StartupServerProperties.java:97)
    at com.sap.aii.ibdir.server.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:151)
    at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:43)
    at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
    at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:438)
    at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:203)
    Please let me know if I am not clear.
    Edited by: Clarence on Feb 6, 2012 3:28 PM
    Edited by: Clarence on Feb 6, 2012 3:28 PM

    hi,
    >>>>Second, if i'm able to login, i have to import the exchange profile again. This should solve the problem. Or is this wrong?
    if you have java stack only there is no exchange profile anymore...
    https://weblogs.sdn.sap.com/pub/wlg/28334
    Regards,
    Michal Krawczyk

  • Error: Unable to read footer file

    Hoping someone out there can help me. I get this error on
    everypage in my site and have no idea how to stop it.
    Error: Unable to read footer file
    The error does not show up when I preview inside dreamweaver
    but only rears its ugly head after I post the site up on the
    internet. I have searched for hours through the Dreamweaver menus
    and can not find these elusive footers and have no idea where they
    are coming from or what footer file it is trying to read.. Please
    help. This probably has a simple solution and I am just not able to
    understand it. Thank you.

    sdrouillard wrote:
    > This probably has a simple solution and I am just not
    able to understand
    > it.
    Possibly, but without a URL we can't comment. Post it, and
    we'll see.
    At a guess, sounds like an include file is missing. Are you
    on some sort of
    free hosting plan where the host puts some adverts in the
    footer? If that
    file is removed from your site directory you might get the
    error you've
    mentioned (at least, that was the case on the only other time
    I've seen this
    error)
    Regards,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • Unable to read DVD video

    I unable to read DVD video discs, although I can read DVD-R and CD.
    I try to change the region using regionset but with no change.
    here is the output of vlc, when I try to open DVD:
    VLC media player 0.8.6b Janus
    libdvdnav: Using dvdnav version 0.1.10 from http://dvd.sf.net
    libdvdread: Using libdvdcss version 1.2.9 for DVD access
    libdvdread: Could not open /dev/hdc with libdvdcss.
    libdvdread: Can't open /dev/hdc for reading
    libdvdnav: vm: faild to open/read the DVD
    [00000291] dvdread demuxer error: DVDRead cannot open source: /dev/hdc
    [00000294] vcd access error: could not read TOCHDR
    [00000294] vcd access error: no movie tracks found
    [00000294] access_file access error: file /dev/hdc is empty, aborting
    [00000294] cdda access error: could not read TOCHDR
    [00000294] cdda access error: no audio tracks found
    [00000289] main input error: no suitable access module for `dvd:///dev/hdc'
    [00000278] main playlist: nothing to play
    signal 2 received, terminating vlc - do it again in case it gets stuck
    [00000278] main playlist: stopping playback

    whats in your
    /etc/fstab
    yours is probably
    /dev/dvd         /mnt/dvd    auto      ro,user,noauto,unhide   0      0
    mine is
    /dev/dvd        /mnt/dvd    udf,iso9660      ro,user,noauto,unhide   0      0
    i had issues with some dvd's till i changed from auto to udf

Maybe you are looking for