Error opening module book in Lightroom

Hello

I want to start to create a 5 Lightroom book, but there is an error message (?: 0: attempt to call field 'private_PDFL' (a nil value))

Can someone tell me what this means? And why can't I access the book module in my Lightroom. Thank you

Hello

Could you please let us know which computer you're working on Mac or Windows?

Also please make sure that you have the latest version of Lightroom 5, is Lr 5.7.1

Kind regards

Tanuj Sandal

Tags: Photoshop Lightroom

Similar Questions

  • When you open lightroom on my pc the message unexpected error opening catalog is displayed

    When opening upward of lightroom on my pc the message unexpected error opening catalog appears with options to try again, choose different catalog or get out. Can anyone help? At the same time when trying to update photoshop / bridge is 52% and update fails.

    Hi Dirk,

    What is the version of Lightroom installed on your computer?

    Could you please try to open a new catalog, or open a backup catalog and see if you still get the same error.

    And for the issue of the update of Photoshop and Bridge, I suggest you to start a new thread on: download, installation, commissioning

    Concerning

    Tanuj

  • I get this message when trying to open the catalog, lightroom version 6 unexpected error opening I use a mac. I tried to use an earlier version of lightroom still get the message.

    I use lightroom 6 and cannot open my catalog, I get a message ""unexpected error opening catalog " I have a mac OS X version 10.10.4 Yosemite I tried to use an older version of lightroom and am still getting the error message."

    Jackie, try to open the new catalog, and then 'import of catalogue' the problem we... Let us know how it goes, or how far you get with it.

  • Why my book module disappeared in lightroom 5?

    Why my book Module disappeared in lightroom 5?  Thank you!

    Try Ctrl + Alt + 4 (Cmd + Optn + 4) or use the menu

    Window > book

  • Error changing Modules with Lightroom 5 (CC) and Yosemite.

    Friend not fixing is not something, or is there a step I'm missing?

    Error changing modules | Lightroom

  • Outlook Express 6 can not do mail or open address book

    I have problems with Outlook express 6. Can I receive and read mail, but it won't let me reply or send a new e-mail. I can't open my address book either. I want to reinstall Outlook express 6, but cannot find anywhere to download. Need help again

    Then you have no DWORD named UseOutlook. Fix? In this case, check all of the following conditions. Don't ignore all the elements that are on older versions of OE. They are still topical.

    -----------------------------------

    Something is screwed up with your address book.

    It could be several specific problems, which include:
    -corrupted WAB file
    -damaged or incompatible DLL files for the addressbook
    -have OE set to use the Outlook98 / 2000 + contacts instead of the WAB
    folder and there is something wrong at the end of Outlook

    For more details, take a look at:

    Error message: the Message could not be sent. Some invalid recipients
    (Outlook Express: there was an error opening this message)
    (The address book failed to load. OE is configured incorrectly)
    (Corrupted or incompatible WAB32. DLL file)
    http://support.Microsoft.com/?kbid=239135
    OLEXP: Error Message: failed to load address book
    (There was an error opening this message)
    http://support.Microsoft.com/?kbid=269777
    http://support.Microsoft.com/?kbid=310873
    OLEXP: MSIMN has caused an IPF in Module Wab32.dll
    http://support.Microsoft.com/?kbid=247706
    Error message: failed to load address book, Outlook Express is...
    http://support.Microsoft.com/?kbid=191946
    Error message: could not open address book, a component is missing
    http://support.Microsoft.com/?kbid=192321

    The address book Windows (WAB)
    http://www.insideoe.com/files/WAB.htm

    To share Contacts between Outlook and Outlook Express
    http://www.slipstick.com/contacts/oeshare.htm

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • Error: Import module XLRD in a custom script FDMEE

    Hello Experts,

    I'm trying to import a python "xlrd" module in a custom Script FDMEE. But he doesn't always lift error "No Module name xlrd".

    I tried to import the module by changing the path sys:

    Here is the code I tried:

    ===========================================================================================

    import sys

    "custModlePath = r'fdmContext ["INBOXDIR"] +"\\Excel_Sample\\xlrd""

    sys. Path.Append (custModlePath)

    import xlrd

    path = fdmContext ["INBOXDIR"] + "\\Excel_Sample\\."

    pathout = fdmContext ["INBOXDIR"] + "\\Excel_Sample\\Out."

    Book = xlrd.open_workbook (path)

    data_sheet = book.sheet_by_name ("Report")

    #data_sheet = book.sheet_by_index (3)

    start_row_count = 7

    end_row_count = data_sheet.nrows

    MyFile = open (fdmContext ["INBOXDIR"] + "\\Excel_Sample\\Out\\mapping.csv",'w")

    #myfile = open('SG\OUT\mapping.txt','w')

    all in start_row_count < end_row_count:

    #print data_sheet.row_values (i)

    lines = data_sheet.row_values (start_row_count)

    for the line data_sheet.row_values (start_row_count):

    MyFile.Write (STR (Line))

    MyFile.Write(",")

    MyFile.Write ("\n")

    start_row_count = start_row_count + 1

    MyFile.Close)

    =============================================================================================

    ERROR:

    2016-01-27 01:18:11, 294 FATAL [AIF]: error in CommProcess.executeCustomScript

    Traceback (most recent call changed):

    File "< string >", line 191, in executeCustomScript

    File '< string >", line 486, in executeCustomScript

    Folder "< string >", line 528, in executeJythonScript

    File "E:\FDMEE/data/scripts/custom/EXCEL_TO_CSV.py", line 6, < module >

    import xlrd

    ImportError: No module named xlrd

    2016-01-27 01:18:11, 336 DEBUG [AIF]: the connection of fdmAPI was closed.

    ===========================================================================================

    Appreciate your help!

    Thank you

    Ishti

    Hello

    I was able to get it working after some changes.

    Version compatible with Jython 2.5.1 FDMEE xlrd is xlrd 0.7.4

    Xlrd record is required to be placed inside the FDMEE server and the path is required to be updated in the script.

    Below the script just in case someone needs it:

    ===============================================================================================

    import sys

    custModlePath = fdmContext ["INBOXDIR"] + "\\Excel_Sample" # path in which is placed the folder xlrd

    sys. Path.Append (custModlePath)

    import xlrd

    path = fdmContext ["INBOXDIR"] + "\\Excel_Sample\\Mapping.xls" # path to the Source file

    pathout = fdmContext ["INBOXDIR"] + "\\Excel_Sample\\Out\\" # path to the .csv file

    Book = xlrd.open_workbook (path)

    data_sheet = book.sheet_by_name ("Report")

    start_row_count = 7

    end_row_count = data_sheet.nrows

    MyFile = open (pathout + "mapping.csv", "w" ")

    everything start_row_count<>

    lines = data_sheet.row_values (start_row_count)

    for the line data_sheet.row_values (start_row_count):

    MyFile.Write (STR (Line))

    MyFile.Write(",")

    MyFile.Write ("\n")

    start_row_count = start_row_count + 1

    MyFile.Close)

    =====================================================================================================

    Thank you

    Ishtique

  • Error changing modules, no imports cannot option under edit?

    Have not be able to start Lightroom Dungeon error changing modules. I reinstalled bright room, tried to change the permissions, trashing preferences.  Repair preferences I tried, I changed today still operating system to Maverick. I'm on a Mac mini, please help.

    OK, well finally had righted things. It is a week long event. You would think that it would be easier. the reason why my LR5 became error Module was because the program permissions were not set right. If you want to try this solution here is the map

    Open finder

    in main menu, select go > go to folder

    Enter the folder Support

    under bottom of sharing and permissions right click on the lock to open the lock

    then change all these names for reading and writing

    then lock and restart LR

    If who disobeys there is another folder to change

    Follow the same map as above, but this time type

    ~ support folder

    WAIT, I forgot some steps

    After you type application Support

    Right-click on the adobe folder

    and select information

    then unlock so that you can change the permissions, change them and then

    the most important part!

    Click on the gear icon

    and apply the changes

    then re lock and re start LR

    unlock and change all names to read the lock write and try again LR.

    that has solved the problem of "error trying to change modules".

    hope this can help someone

    THANKS to all who tried to help!

    art

  • The tool at the top of my Thunderbird email button doesn't have an option 'open module '. I have an add-on downloaded from Mozilla, how do I add to Thunderbird

    Maybe there's another tool button somewhere, but the only one I can find is when I write a new message. I have 4 options under the tool button; mail and newsgroups, address book, account settings and options. No where in these 4 find 'open module. I downloaded an add-on of highlighter recommended for Mozilla's Thunderbird, (highlighter by André Rodier 0.6.5) but I can't understand not just how to get it in Thunderbird! Thanks for your help.

    You challenge do not use the Menu bar in a window of writing.

    You must learn the shortcut of Windows to show hidden menu bars.
    Alt or F10 displays hidden menu bars.

    In the Bar Menu of MAIN WINDOW, select Tools-Add-ons
    Click the gear icon and select install module file

    The other option is to use the AppMenu. It's 3 horizontal lines. There is a choice of add-on in this menu.

  • Can't BUY iPhoto book - Error Message "incomplete book." Problem with the theme "photojournalism"?

    The use of iPhoto 11 on Mac OS X

    Problem - can not BUY iPhoto book

    Error message - 'Incomplete book'... images on one or more pages contain no pictures

    WORKFLOW

    Choose the theme - 'Photo Story' / connected / large

    Create the Layout - Standard 20 pages of Photos and text

    Overview of TEST Version 1 - Export PDF OK - OK - BUY OK

    Create the duplicate - save to Version 2 - Triangles of yellow lights appear on all pages!

    Version 2 - OK - OK Preview - PDF Export BUY FAIL - same mistake

    Create copies - Save to Version 3 - Reload Photos/text/background on all pages until each yellow warning Triangle disappears

    Version of TEST 3 - export to PDF OK - OK Preview - BUY still FAILS - same mistake

    Create the duplicate - except for Version 4 - everything looks good - Triangles of yellow signaling No.

    Trial 4 - export to PDF OK - OK Preview - BUY still FAILS - same mistake

    RETEST Version 1 - export to PDF OK - OK Preview - buy always OK

    Search and read help files, Support from Apple, cat competent bodies and try the suggestions - many people have struggled with similar issues.

    Eventually repair and then rebuild the iPhoto Library - everything seems fine.

    TEST Version 1 new - BUY always OK.   All other Versions - BUY still does NOT work

    Create duplicates - save to Version 5 - try to change the theme to 'photo book '.

    TEST Version 5 Overview - Export PDF OK - OK - OK NOW!

    BUT - all completely scrambled and useless page layouts

    "Photojournalism" is the only theme that works well for this Album

    Version 1 cannot be used because all the pictures/text/Layouts are now improved

    2 days wasted trying to buy a book in iPhoto from Apple...

    At least I have a good PDF of Version 4 I can take for local printing

    IT OF JUST A BUG?  IS THERE A SOLUTION?  -IS THE NEW APPLICATION 'PHOTOS' ANY BETTER?

    You can buy is more books of photos with iPHoto (or opening) - Apple dropped that service 03/31/2016

    You must use Photos or a third party - PrestoPhotos States that they can print and above all of the positive comments on the results in the opening forum - I don't personally used them

    And the error you are getting is not wrong - you have not one or several photos missing in your book - usually a background picture full page covered by another photo, so you don't notice it

    and you don't say how you are seen, but it's the way recommended - Preview of a project on paper in Photos or iPhoto to avoid problems - Apple Support

    LN

  • Outlook Express (XP) - Error Message "there was an error opening this message. An error has occurred. "When you try to open an e-mail.

    I can not open e-mails or addressbook from OE.

    When you open an email, I get the following messages, 'there was an error opening this message.  An error has occurred. "However, I can save an email on my desk (cause I can't open it) and receive the following error message while trying to open my office on the second dialog box AFTER the above message, Outlook express could not be started.  It can be installed incorrectly.  Make sure your disk is not full and you're not out of memory.  Contact Microsoft support for further assistance (0x8004104F)".  I'm not out of disk space or memory.

    When I try to open the address book within the OE, the error message says "unable to open the address book.  The AddressBook is may not be installed correctly.  I check that the WAB file is not read-only (as a matter of fact, I can open the WAB file directly by double-clicking in Explorer and email as an 'Action' very well).  Also, I check register and I have not any sharing with Outlook 2007.  I continue to receive emails and such mentioned, can send through the WAB file.

    There was an update of Windows by 18 points before it do not longer work.  I don't have a record of what has been installed.  I tried to come back a week to a previous restore point, but told me that nothing has changed.

    Help, please.  This has worked well for years.

    Remove Folders.dbx. If you can get OE open, create a new book of identity and address.

    In Windows XP, the files of user OE (DBX and WAB) are by default marked as hidden. To view these files in Windows Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder Options icon | Opinion, or in Windows Explorer. Tools | Folder options | View.

    The path to the message will be very similar to this:

    C:\Documents and Settings\Your User of utilisateur\Local Settings\Application Data\Identities\ {long string of letters & numbers} \Microsoft\Outlook Express

    With OE closed, find the Folders.dbx file and delete it.  Another will be created automatically when you open OE.

    Note these possible side effects:

    When you re - start OE, it will build a new index of all *.dbx files it can read and create a new Folders.dbx. However, understand that you will lose the mail directory structure and message rules will probably have to be edited.

  • There was an error opening this message. An error occurred using Outlook express 6.0

    Original title: I get an error message when you try to open the email in outlook express

    I get the error message when you try to open the email in Outlook Express 6.  "There was an error opening this message.  An error has occurred. »

    Also get the error address book cannot open, "unable to open the address book.  The address book is not installed correctly.  Need help

    Hello

    You can try the troubleshooting provided in the link below steps to fix the problem.

    Error message: the Message could not be sent. Some of the recipients for this Message are not valid.

    http://support.Microsoft.com/kb/239135

  • Error at startup APP name: error loading module 'name of the app' error check. on Blackberry 9800

    Hello.
    Now a day cannot open the newly added application that is downloaded from the app store.
    His pitches ' departure name APP Error: error loading module "app name" error check. "
    I searched online. but impossible to get the correct solution. I have given all the permissions and restart the unit more time. But not to use it.
    Some have said that it is the problem of the os. you need to reinstall the operating system.
    I don't know how to get the operating system and reinstall the operating system.
    Please help me.

    Hello.. Thank you. My problem is solved.

    I have clean the operating system and install the new os.

    Now, any problem is solved.

  • Problem with the 2007 Hallmark card studio deluxe installation and get error message "Error 1904.Module that cannot save c:\windows\syswow64\msxml4dll".

    Original title: 1904.Module error cannot save C:\windows\SysWOW64\msxml4dll. HRESULT 2147023782 contact your support staff

    I want to install hallmark card studio deluxe 2007 and I got this message

    C:\windows\SysWOW64\msxml4dll Error 1904.module cannot save. HRESULT 2147023782 contact your support staff.

    Someone knows how to fix this?

    Thank you

    Hi Roman,.

    Thanks for posting in Microsoft Community!

    It seems that you have a problem with the installation of Hallmark card studio deluxe 2007 and will receive error message "Error 1904.Module than c:\windows\syswow64\msxml4dll cannot be saved."
    I imagine the inconvenience that you are experiencing. We are here to help and guide you in the right direction.
    I may need a few more details to better understand the issue.
    1. deal with any issue when installing any other program?

    2. did you of recent changes on the computer before this problem?

    Method 1:
    I suggest you to run the fixit and check if it helps.

    Solve problems with programs that cannot be installed or uninstalled
    http://support.Microsoft.com/mats/program_install_and_uninstall

    Method 2:
    If the problem persists, I suggest to perform the clean boot and see if you can install the software.

    By setting your boot system minimum state helps determine if third-party applications or startup items are causing the problem.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7:
    http://support.Microsoft.com/kb/929135
    Note: After the boot minimum troubleshooting step, follow step 3 in the link provided to return the computer to a Normal startup mode.
    Method 3:
    If the problem persists, I suggest you try to remove all the temporary files in the temp folder. And check if it helps.
    Follow the steps to clear the temp folder:
    a. click the Start button and in the search in %temp% bar and press ENTER.
    b. the Temp folder opens, press on Ctrl + A , and then press delete.
    Note: I suggest that you backup important file or a folder in the Temp folder.
    You can check the links for more information:
    Get back to us and let us know the State of the question, I'll be happy to help you. We, at tender Microsoft to excellence.

  • I have Windows 7 on my PC and PS/LR CC. I recently backdated my computer. Now, I can't open LR. Error message "unexpected error opening catalog" which can do?

    What can I do to return to Lightroom.  I use Windows 7.  I used creative cloud and LR and PS worked.  Now, I get an error on LR, unexpected error opening catalog.

    Adobe technical support to replace the program because the file has been corrupted.

Maybe you are looking for