"could not start print job" when printing to PDF from Lightroom

Any body else had this problem and fixed it??  When I print from Lightroom to Adobe PDF I get "could not start print job" and the print job hangs.
I have:
Lightroom 2.5 64 bit
Acrobat Standard 9
Windows 7 Ultimata 64bit but I had this problem with Vista 64 bit. Somtimes it would work sometimes not - now with Windows 7 Not - always.
I can print to acrobat from every other application, even Photoshop CS3 - just not Lightroom.
It's terribly frustrating.  Any help would be greatly appreciated.
Ken

Andrew,
I can print from other apps, just printed a doc from open office.
OS Windows 8.1. Have been printing from this computer and setup previously, it seems to have been an intermitent problem that has now become a consistent problem.
I've updated the printer firmware, and Windows is up to date.
Seems to be a lightroom issue, and I'm getting a bit nervous because I have a show opening on February 15th I need to print for.

Similar Messages

  • Any way to get more than 100% zoom on print jobs when printing multiple pages?

    I know how to increase the size of a print job, when I am printing one page at a time. But when I go to print 2 pages at once (the multiple page print function), there are always large margins around the page. I'm ok with saving paper and printing up two pages, but it seems silly to see small print and wide blank margins. Is there any way to increase the print zoom, when printing multiple pages per sheet of paper?

    I once overshot the limit by marking too many photos to fit within 99 pages, but I could never figure out how to fool the application and had to give up trying to add those 14 extra photos.
    I asked a friend (who practically lives in Terminal) if he had any way of modifying that limit, but he reminded me that if their printing services are set up to bind books and bill for only 99 pages, fooling the application might be useless if the service only prints me a 99 page book and discards the additional pages.
    I can understand that you wouldn't want to let people print 1000 page books, but I sent feedback anyway to allow me to increase the limit. Anyone know of any service that lets you print beyond iPhoto's limits?

  • How to include the URL in the name of the print job when printing from FF

    We log all print activity in our company and it would be helpful to be able to identify print jobs from Firefox, however as only a web page's <TITLE> content is used as the print job name, I was wondering if there was a way to either use the URL as the print job name, or even prefix the print job name as "Mozilla Firefox" to identify jobs from this application?

    Thank you for your reply but that's the print job content, i.e. page header / footer will have the URL typed into it. I'm after the name of the print job, i.e. as it appears in the print queue. For that I cannot find an option.
    I'm wondering whether a plug-in could do this, replace the normal print function with an identical one that uses the URL as the print job name.

  • Could not initiate SSL connection when DS is launched from Eclipse

    Hello,
    I am wondering whether anyone has faced this issue connecting to the BIP with https when Design Studio is launched from the Eclipse IDE.
    The URL is something like : https://myservername.domain.net/dswsbobje/services/Session
    We get the following error message when entering the URL : "Could not initiate SSL connection. Check the Web Service Url"
    However, when Design Studio is launched directly, the same URL works fine and we can connect to the BIP normally.
    I would imagine something is missing in the Eclipse configuration or there is an issue elsewhere. I did not find anything relevant in the SDK guide.
    We checked the following SAP notes :
    1807142 - How to enable HTTPS/SSL Designer against BIP
    -> Web service configured properly, the URL works fine and it works when Design Studio is started without Eclipse
    1975475 - Unable to select authentication method in BIP logon dialog of SAP Design Studio
    Tried the solution : set to Direct. Tried to remove proxy entries in IE. No improvement. Also, I tried to set the connectivity to Direct in the Eclipse. But, no luck.
    Software :
    Design Studio 1.2 SP01 + SDK 1.2 SP01
    BI 4.0 SP06
    Java EE IDE (Kepler)  Version: 2.0.1.20130919-0803
    Java JRE 1.6.0.35. It's old, I know...
    Thanks in advance.
    Joel

    Hi Joel,
    any progress?
    do you use a self signed certficate?
    Kind regards
    Frank

  • Error #2057: The page could not be added to the print job.

    I've been making myself crazy over this one.  I'm trying to print a complex multi-page "report" in Flex, but I keep getting this error every time I try to call FlexPrintJob.addObject(page):
    Error #2057: The page could not be added to the print job.
    Here is the basic scenario...  I have created a new control I call a PrintVBox that extends the normal VBox control.  After adding all of the children properly to the component, I wait for an update event (so that the heights of all the components are calculated) and then I call a custom method I have added to PrintVBox that "paginates" the control.
    This pagination method essentially decides how many of the items in the VBox can fix on each page, and splits them up into separate pages.  Here's a somewhat graphic example of what happens:
    (before paginate)
    ***** PrintVBox ********
         [ Item 1 ]
         [ Item 2 ]
         [ Item 3 ]
         [ Item 4 ]
         [ Item 5 ]
    This single VBox with 5 items, after calling the paginate method becomes something like this:
    (after paginate)
    ****** PrintVBox ********
         **** VBox (page1) ******
                   [ Item 1 ]
                   [ Item 2 ]
         **** VBox (page 2) ******
                   [ Item 3 ]
                   [ Item 4 ]
                   [ Item 5 ]
    So, what was once a single VBox with 5 UIComponents on it is now a VBox that contains two VBoxes, each the exact size of a printable page, one containing the first two items, the other containing the second two items.
    In my example that I am working on, my PrintVBox that I have created uses a Repeater to create about 20 HBoxes on the page.  I then call
    myFlexPrintJob.start()
    to show the print dialog and get the user's parameters.  I then pass the chosen print height and width to the PrintVBox control and call the paginate method, which creates pages of the desired width/height.  I have tested this part thoroughly and displayed the resulting PrintVBox on the screen and it paginates successfully and all is well.  After paginate, it has created 3 page VBoxes each holding some of those 20 items.
    I then iterate thru PrintVBox.getChildren() array, in this case which is the three VBox pages, and I call:
    myFlexPrintJob.addObject(page);
    for each one.  Each one errors out with the above error.  The error is down in the PrintJob code, which is part of the Flash framework and I cannot step through it.  I have no indication of why the page can't be added to the print job.  Is there a reason this is happening??  Does it have to do with the Repeater that originally created the 20 HBoxes, even though I have now moved those HBoxes down onto separate pages?  I'm just so confused here.
    I can probably post the entire code chunk if someone really wanted it.  I'm currently testing it as an AIR application using a big tester XML data object on the repeater, so that I didn't need a database and such to create the control and test printing.  If someone really wants to see what I'm doing, let me know.
    HELP! PLEASE!!
    Thanks,
    Joe

    Were you able to solve this problem?
    I am currently having the same problem as yours... I created my own printing classes that do all crazy calculation to figure out page breaks and stuff... everything goes well until the point I want to add these pages to the printJob. I get same error?
    Any help is highly appreciated.
    Thanks,

  • Could not start printer. Please check your printer configuration??

    I am getting the following message when I try to print from my HP Photosmart 2610:  "Could not start printer.  Please check your printer configuration"
    I am connected via a usb port and use windows Vista.  Any suggestions on what to do.  I have tried to uninstall and reinstall drivers and delete the printer and readd it.  It did not help

    Hi SCheyne,
    Welcome to the HP Forums.
    I see that you are having some issues when attempting to print from your computer.
    I do have a few steps that we can take to troubleshoot this issue.
    First off, please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    I have also found a document that deals with the 'Printer is offline' Message Displays on the Computer and the Printer Will Not Print: Windows Vista.
    If you are still having issues or if you have any additional questions, please feel free to write me back.
    Cheers,    
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • OS XP Operation could not be completed. "The print spooler service is not running what to do?

    I've used this printer since 2009 no problems.  Added MS Office Home/Student 2010 and added Publisher 2010.  When I try to add printer I get this message:  "Operation could not be completed.  The print spooler service is not running.  In trouble shooting with "?" get an error Server error 403.
    I've uninstalled and installed the last 2 days, over 16 hours.  I'm on an Acer Netbook (10" screen).  What do I do to fix this.  I even tried System Restore and still does not work.

    Running the diagnostics at http://www.hp.com/go/tools may help resolve the issue.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Page does not fit on paper when printed directly to printer

    Hi experts,
    I have developed a form in transaction SFP, using A4 as the paper format for the master pages. If I print to spool and preview and print my form from spool using transaction SP01, the form prints nicely. If I print directly to printer using the generated function module for the form (setting parameter REQIMM to true), the page does not fit on the paper (it is cropped), and also I do not get duplex printing.
    Why do I get different results when printing directly to printer as opposed to printing to spool first? How can I ensure that the form is printed correctly when printing directly to printer?
    thanks!
    Frank

    Did you check the window settings of the Firefox desktop shortcut to see how Firefox opens?
    Did you try to delete the current Firefox desktop shortcut and create a new shortcut?
    Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).<br />
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.

  • HT1766 When I started my new iPad 2 I could not start from a previous backup because the os on the new iPad is not the latest 7.x used to backup the previous ipad2  to install the new os I had to start the iPad as new. But now I cannot backup from the pre

    When I started my new iPad 2 I could not start from a previous backup because the os on the new iPad is not the latest 7.x used to backup the previous ipad2  to install the new os I had to start the iPad as new. But now I cannot backup from the previously backup ipad

    Hi there,
    You may find the troubleshooting steps in the articles below helpful.
    iCloud: Troubleshooting restoring an iCloud backup
    http://support.apple.com/kb/ts4036
    iOS: If you can't back up or restore from a backup in iTunes
    http://support.apple.com/kb/ts2529
    -Griff W. 

  • CLI156 Could not start domain domain1 error when J2ee is installed

    Whenever I install J2ee 1.4 sdk the first time the application server starts and everything works fine. But when the system is restarted and the server is started again i get the above mentioned error.
    Domain domina1 failed to startup. Could not start domain domain1. I have installed and uninstalled the application many times but yet I am experiencing the same error.
    Please give me a solution to this error asap.
    Thanks,
    Poonam

    Did you check server log for the exact cause of startup failure? One thing that is possible is that some of the ports associated with server listeners start being used by other processes after system restart (it seems that Windows use ports in 10xx range for remote drive mappings - so that might be one area where you might run into issues). If so, changing server port numbers might help. In any case, check logs for the exact cause of error .

  • I took my iphone from u.k. now i am in india  my simcard was not working in this so i restore it. it could not restore and now when i start it. it ask itunes. what should i do

    you can never help any people

    i took my iphone from u.k. now i am in india  my simcard was not working in this so i restore it. it could not restore and now when i start it. it ask itunes. what should i do

  • When I open Itunes it says,Windows could not start the bonjour service on local computer.

    Just recently, I had a problem with the AVFoundation  thing on my computer. Well I got that fixed, but now it has a message coming up that says " Windows could not start the Bonjour Service service on local computer. Error 3: The system could not find the path specified.
                                               Please tell me how to fix it.

    Windows could not start the Bonjour Service service on local computer. Error 3: The system could not find the path specified.
    That's an unfamiliar one, steve.
    Let's see what happens if we try to start the service manually.
    In your Start menu, right-click Computer and select "Manage".
    Expand "Services & Applications"
    Open "Services". (Perhaps maximise the Window to better see what's going on.)
    Select the Bonjour Service and click "Start".
    Do you get an error message then? If so, what does that one say?

  • What should i do when my ipod touch could not start?

    my ipod  touch could not start even it has been charged... what's the problem? please help..

    Press and hold both the Home and Sleep/Wake button together for at least ten seconds. Does the iPod re-start? (It may take several minutes to complete the process.)
    If the above doesn't work, consider whether the battery has been run down and is now run out. If so, the iPod needs to be left on charge for at least thirty minutes before you see any signs of life. Then, you need to leave it on charge, preferably until the charging is complete, before you attempt to use it.

  • REP-0132 - could not start JVM

    We currently just successfully installed Oracle 9ias Reports Server on Windows 2000 (both the Infrastructure and the Reports) When we try to start the Report Server via the Enterprise Manager Application, it does not start. Next we try to start the report server from command line and we get the error message "
    REP-0132 could not start JVM".
    Please Help!!!
    Thanks in advance.

    Hi All,
    Currently we are successfully printing Barcodes in postscript reports for our 11.5.10.2 EBS reports.
    Some of our customers prefer us to send reports in PDF format. however barcodes are not printing in PDF format of the same report?
    Any solution you recommend ?
    Thanks.
    Rao Pokuru
    Edited by: rpokuru on Jan 3, 2011 2:30 PM
    Edited by: rpokuru on Jan 3, 2011 2:34 PM

  • DQE Service could not started.

    Hi All,
    I installed WAS 6.40 SP7 and then EP6 SP6 on Windows Platform. Installation was successfull.
    But when I tried to create Database iViews, its not opening the tables for the configured DB. Then i tried to open in Portal content page...
    System Administratation ---> Distributed Query Engine
    here when i open
    * Configuration -> No content is displayed.
    Session Manager -> DQE not installed(this messge is displayed)
    MetaData Loader -> Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration/com.sap.portal.distributed_query_engine/com.sap.portal.metadata_loader
    Component Name : com.sap.portal.dqe.admintool.metadataloader.DQEMetadataLoader
    The exception was logged. Inform your system administrator..
    Exception id: 10:57_08/11/04_0002_9138850
    See the details for the exception ID in the log file.
    When i check the defalutTrace*.trc, the following message is printed...
    #1.5#00508BE9307C00170000006000000DA40003E86216ECCFF0#1099932919156#com.sap.engine.core.service630.container.ServiceRunner##com.sap.engine.core.service630.container.ServiceRunner#######SAPEngine_System_Thread[impl:5]_49##0#0#Error#1#/System/Server#Plain###Service DQE error. Nested exception is: com.sap.engine.frame.ServiceException: <Localization failed: ResourceBundle='com.sap.engine.frame.KernelResourceBundle', ID='Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.
    at com.metamatrix.sap.service.MetaMatrixServiceFrame.start(MetaMatrixServiceFrame.java:144)
    at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:201)
    at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
    at com.sap.engine.frame.core.thread.Task.run(Task.java:60)
    at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:73)
    at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:134)
    I fallowed the same instructions given in the installation guide, and insalled in two different machines,in both places I got same problem.
    Can any body tell me solution for this problem.
    When installing EP6SP3 I have choosen Portal Platform option(where we have DQE schema installation and Portal Platform option) and then updated to EP6SP6.Is it rigt?
    From SDN site I got WAS with SP7 and EP with SP6 , if any new stable versions available please let me know from where I can get them.
    Regards
    Abhilash

    Hello.
    I have the same problem and when I go into Visual Admin and try to start DQE manually I receive the following error:  Any help would be greatly appreciated.
    Start service DQE
    java.rmi.RemoteException: Could not start service DQE on cluster ID 6654350; nested exception is:
         com.sap.engine.frame.ServiceException: <Localization failed: ResourceBundle='com.sap.engine.frame.KernelResourceBundle', ID='Service DQE error. Nested exception is: com.sap.engine.frame.ServiceException: <Localization failed: ResourceBundle='com.sap.engine.frame.KernelResourceBundle', ID='Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.
         at com.metamatrix.sap.service.MetaMatrixServiceFrame.start(MetaMatrixServiceFrame.java:144)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:201)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:60)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:145)
    ', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key Service DQE error. Nested exception is: com.sap.engine.frame.ServiceException: <Localization failed: ResourceBundle='com.sap.engine.frame.KernelResourceBundle', ID='Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key Could not start DQE service, reason: Could not initialize RuntimeStateAdminAPIImpl.
         at com.metamatrix.sap.service.MetaMatrixServiceFrame.start(MetaMatrixServiceFrame.java:144)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:201)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:60)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:73)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:145)

Maybe you are looking for

  • Confirmation of cancellation

    I signed to AZURE successfully. But somehow the day after I got  mail with Confirmation of cancellation of Free Trial, I didn't cancel and I really want to continue using the Trail version for some more days? What do I need to do to continue with the

  • Cannot edit any pages - No Edit Page Button

    I have a blog through blogger, with my own domain, standupsteals.com. I have added a connection to it in CS5, but I have been unable to edit retrieved posts. The "Edit Pages" button doesn't even appear. I haven't tried to uninstall/reinstall yet. I d

  • Clicking a Link opens old websites in Firefox 4.0 Help?!

    Basically... say I click on a link while im on a flash-game or something similar and then the link opens in a new window, the link will open a new page in Firefox (which is fine...) but then will open my last visited page instead of opening the link

  • Get field names of an internal structure

    Hi, In my program, I have a structure created via begin-of/end-of. A table is based on this structure and later on, I use a macro that deals with the field names and values. I'd like to make the macro dynamic, in that it gets the table field names wi

  • Where is update genius in iTunes store?

    I can't figure out how to update genius?