Printing to Linux CUPS in Landscape - NOT Fixed

If I tried to print to my HP printer (attached to my Linux box) in Landscape mode, it'll print it in Portrait instead. This was the problem in all previous version of the OS.
If you print the doc out in pdf and lp from the command line, it prints fine in Landscape.

I'm having the same problem. I have a Lexmark x9350 that is shared through Airport Extreme.

Similar Messages

  • On Mac OS 10.5, can't print to Linux CUPS printing server

    We attached a USB printer to a Linux server, which is CUPS1.3.8 installed.
    The printer is Epson Stylus CX5900.
    Printing from another Linux with CPUS is OK.
    But I can NOT print from my MacOSX10.5 system.
    I tried IPP, SMB, no success.
    Visit the http://127.0.0.1:631 on Mac, the CUPS on Mac even can not discovery the printer shared by Linux server.
    If I add added the printer as samba on MacOS, it will report
    /Library/Printers/EPSON/InkjetPrinter/Filter/rastertoescp.app/Contents/MacOS/ras tertoescp failed
    I see many users report printing issues on MacOSX10.5 on the Internet.
    What's the matter?
    As I know, MacOSX10.4 can print to printer on Linux CUPS server.

    Slow down a bit and think this through.
    CUPS on linux is nearly identical to CUPS on OS X - but there is no Mac-to-Mac Apple proprietary print sharing. Rather, on linux you are sharing the printer using standard printing protocols. Just like on the Mac (when using the standard protocols like Windows/SMB or IP printing), linux print queues expect postscript input. Try using a generic postscript driver from the mac.
    And when you add the printer via Windows Printing or IP > LPD or IPP, you will need to know the queue name for that printer from the linux box. (one computer with one IP address can have multiple printers - so what's the additional address info to print to your desired printer? - queue name.)
    HTH

  • Air Print to any printer - using linux cups server

    For those folks who may have Linux boxes with a printer configured, you can make this printer available for air print using a tweak to your CUPs config and adding an avahi service. Details are here (no need to download & purchase additional software)
    http://hartlessbydesign.com/blog/view/197-airprint-with-ubuntu-1010
    I tested this procedure myself on a Canon MP140 printer sending a print job from the photos App on an iPad. It took a couple of refresh attempts to find the printer but once it did, print jobs sent just fine.

    I do not have the exact printer model that you have, but have used several HP wireless printers that all work just fine with an AirPort Extreme.
    Your wireless printer will connect to the wireless signal provided by an AirPort Extreme.....or any other wireless router.....just like any wireless device would connect to a network:
    1) Identify the network to be joined during setup
    2) Enter the wireless password to connect to the network

  • Please help my printer talk to my computer. An error message always occurs when I try to print and Firefox self-help has not fixed the problem. Please help me directly with fixing the issue. Thank you.

    Please help my printer talk to my computer. An error message pops up whenever I try to print. I have tried the firefox self-help on this topic and it doesn't work. I need direct help with this problem.

    message is: "an unknown error occurred while printing" with the yellow icon and exclamation point. this is all it says every time.

  • Printing landscape pdf to Linux CUPS shared printer

    I'm having a problem printing landscape pdf documents from Preview to printers on my Linux CUPS server. Documents print portrait style, with the right side of the document cut off. This occurs in both 10.4.11 and 10.5.2.
    Using Adobe Reader or printing the pdf from the command line using lpr work correctly to the shared printer.
    Printing directly to the printer (not through the server) is the only way Preview prints it right.
    My CUPS server is:
    Ubuntu 8.04 Hardy
    CUPS 1.3.7

    I'm having the same problem. I have a Lexmark x9350 that is shared through Airport Extreme.

  • Does printing in Linux RedHat requires CUPS?

    Does the jdk1.4 Printing API require CUPS to run in Linux RedHat? I installed the JDK and programs run well but I cannot direct the printing to a particular prnter. The printing allways goes to the default printer. I ran the examples in Print2DPrinterJob.java (code at the end of this posting) and I find that the windows to select the printers appear, I select the printer to output the image, but the printout allways goes to the default printer regardless of the printer selected.
    Since the java Printing API requires the IPP and since LPR is not based in this protocol, I was wondering if I must install CUPS in the server in order to use the printing API
    import java.io.*;
    import java.awt.*;
    import java.net.*;
    import java.awt.image.*;
    import java.awt.print.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    public class Print2DPrinterJob implements Printable {
         public Print2DPrinterJob() {
              /* Construct the print request specification.
              * The print data is a Printable object.
              * the request additonally specifies a job name, 2 copies, and
              * landscape orientation of the media.
              PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
              aset.add(OrientationRequested.LANDSCAPE);
              aset.add(new Copies(2));
              aset.add(new JobName("My job", null));
              /* Create a print job */
              PrinterJob pj = PrinterJob.getPrinterJob();
              pj.setPrintable(this);
              /* locate a print service that can handle the request */
              PrintService[] services =
                   PrinterJob.lookupPrintServices();
              if (services.length > 0) {
                   System.out.println("selected printer " + services[0].getName());
                   try {
                        pj.setPrintService(services[0]);
                        pj.pageDialog(aset);
                        if(pj.printDialog(aset)) {
                             pj.print(aset);
                   } catch (PrinterException pe) {
                        System.err.println(pe);
         public int print(Graphics g,PageFormat pf,int pageIndex) {
              if (pageIndex == 0) {
                   Graphics2D g2d= (Graphics2D)g;
                   g2d.translate(pf.getImageableX(), pf.getImageableY());
                   g2d.setColor(Color.black);
                   g2d.drawString("example string", 250, 250);
                   g2d.fillRect(0, 0, 200, 200);
                   return Printable.PAGE_EXISTS;                         
              } else {
                   return Printable.NO_SUCH_PAGE;
         public static void main(String arg[]) {
              Print2DPrinterJob sp = new Print2DPrinterJob();

    i have experienced the same problem as you - inability to print to a particular printer on linux. this appears to be a bug - if you look closely at what is happening, you get the following exception thrown when you try to print to any printer other than the default one (however, by default it will just recover and print to the default printer so you won't see this exception unless you force it by trying to do a print service lookup with no attributes set). I have not had any luck gettign around this. CUPS does not help either - i have installed CUPS and still see this behavior. Let me know if you have found a workaround.
    - Dan Kokotov
    javax.print.PrintException: java.io.IOException: Bad file descriptor
         at sun.print.UnixPrintJob.print(UnixPrintJob.java:485)
         at PrintTest.printJava(PrintTest.java:67)
         at PrintTest.main(PrintTest.java:16)
    Caused by: java.io.IOException: Bad file descriptor
         at java.io.FileInputStream.readBytes(Native Method)
         at java.io.FileInputStream.read(FileInputStream.java:191)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at sun.print.UnixPrintJob.print(UnixPrintJob.java:477)
         ... 2 more

  • IPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1

    iPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1
    No bug in Chrome or other third party browsers.
    When are Apple going to fix this bug? It's painful.
    more info here:
    http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerhei ght-outerheight-layout-issue

    Tell Apple not other users.
    Use http://www.apple.com/feedback/ipad.html

  • I use floating time zone with all of my iCal entries.  But then the times of the entries do not print when printing month view.  Is there a fix for this?

    I use floating time zone with all of my iCal entries.  But then the times of the entries do not print when printing month view.  Is there a fix for this?

    Sorry to have repeated this question as if I were answering it.  Just a mistake.  I'm just now learning how to use this site.

  • Printing from Lion to Linux CUPS server problem

    Hi,
    Our printing infrastructure is built to use a Linux CUPS server. This server shares about 200 printers, and all the Linux and Mac clients use it to print (with the BROWSEPOLL option set  in the client cups.conf file).
    Everything works fine with all Mac OS versions except with Lion.
    On the Lion clients, the dialog with the server seems to work : printers are detected, and we can print using command line "lpr -P <printer> <file>".
    But we can't print with any application like Safari and Firefox.
    In system.log we have :
    for Safari
    12/01/12 11:26:10,520 Safari: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)
    12/01/12 11:26:10,523 Safari: (
    0   CoreFoundation                      0x00007fff99683286 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff9528dd5e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff996830ba +[NSException raise:format:arguments:] + 106
    3   CoreFoundation                      0x00007fff99683044 +[NSException raise:format:] + 116
    4   CoreFoundation                      0x00007fff9964029b -[__NSCFDictionary setObject:forKey:] + 219
    5   PrintingPrivate                     0x000000010a54e37b -[PKBrowser(private) queueList] + 324
    6   PrintingPrivate                     0x000000010a54cc93 -[PKBrowser filteredDeviceList] + 75
    7   PrintCocoaUI                        0x000000010aa8a072 CreateDefaultFileName + 6849
    8   Foundation                          0x00007fff90d13de2 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    9   CoreFoundation                      0x00007fff9962be0a _CFXNotificationPost + 2634
    10  PrintCocoaUI                        0x000000010aa8ac6f CreateDefaultFileName + 9918
    11  PrintCocoaUI                        0x000000010aa9712e CreateDefaultFileName + 60285
    12  PrintCocoaUI                        0x000000010aa976b5 CreateDefaultFileName + 61700
    13  AppKit                              0x00007fff8f7362c3 -[NSWindowController _windowDidLoad] + 566
    14  AppKit                              0x00007fff8f72d9a3 -[NSWindowController window] + 109
    15  AppKit                              0x00007fff8fa43019 -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 606
    16  AppKit                              0x00007fff8fa3f9b9 -[NSConcretePrintOperation runOperationModalForWindow:delegate:didRunSelector:contextInfo:] + 477
    17  Safari                              0x00007fff91ec1ed5 -[BrowserDocument printFrame:showingPrintPanel:waitUntilDone:] + 498
    18  Safari                              0x00007fff91eac914 _ZN6Safari28BrowserContentViewController9printPageEb + 102
    19  AppKit                              0x00007fff8f8df52e __-[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ]_block_invoke_2 + 264
    20  AppKit                              0x00007fff8f8e70a5 -[NSDocument _commitEditingThenContinue:] + 337
    21  AppKit                              0x00007fff8f8e2e0a -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    22  AppKit                              0x00007fff8f8df39b __-[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ]_block_invoke_1 + 232
    23  AppKit                              0x00007fff8f8effb4 -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    24  AppKit                              0x00007fff8f8df2ad -[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ] + 103
    25  AppKit                              0x00007fff8f8df23f -[NSDocument printDocument:] + 70
    26  CoreFoundation                      0x00007fff99672a1d -[NSObject performSelector:withObject:] + 61
    27  AppKit                              0x00007fff8f63c710 -[NSApplication sendAction:to:from:] + 139
    28  Safari                              0x00007fff91e9d755 -[BrowserApplication sendAction:to:from:] + 80
    29  AppKit                              0x00007fff8f729bd7 -[NSMenuItem _corePerformAction] + 399
    30  AppKit                              0x00007fff8f72990e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    31  AppKit                              0x00007fff8f6a6c3a -[NSMenu performKeyEquivalent:] + 281
    32  AppKit                              0x00007fff8f6a588d -[NSApplication _handleKeyEquivalent:] + 526
    33  AppKit                              0x00007fff8f59d170 -[NSApplication sendEvent:] + 4282
    34  Safari                              0x00007fff91e9d6f8 -[BrowserApplication sendEvent:] + 822
    35  WebKit2                             0x00007fff98aa5e7f -[WKView(Internal) _resendKeyDownEvent:] + 141
    36  WebKit2                             0x00007fff98a90b26 _ZN6WebKit12WebPageProxy15didReceiveEventEjb + 2196
    37  WebKit2                             0x00007fff98a90220 _ZN7CoreIPC13handleMessageIN8Messages12WebPageProxy15DidReceiveEventEN6WebKit12 WebPageProxyEMS5_FvjbEEEvPNS_15ArgumentDecoderEPT0_T1_ + 53
    38  WebKit2                             0x00007fff98a827b3 _ZN6WebKit15WebProcessProxy17didReceiveMessageEPN7CoreIPC10ConnectionENS1_9Mess ageIDEPNS1_15ArgumentDecoderE + 161
    39  WebKit2                             0x00007fff98a826ae _ZN7CoreIPC10Connection15dispatchMessageERNS0_7MessageINS_15ArgumentDecoderEEE + 172
    40  WebKit2                             0x00007fff98a825c7 _ZN7CoreIPC10Connection16dispatchMessagesEv + 145
    41  WebKit2                             0x00007fff98a7ef03 _ZN7RunLoop11performWorkEv + 111
    42  WebKit2                             0x00007fff98a7ee74 _ZN7RunLoop11performWorkEPv + 76
    43  CoreFoundation                      0x00007fff995f1b51 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    44  CoreFoundation                      0x00007fff995f13bd __CFRunLoopDoSources0 + 253
    45  CoreFoundation                      0x00007fff996181a9 __CFRunLoopRun + 905
    46  CoreFoundation                      0x00007fff99617ae6 CFRunLoopRunSpecific + 230
    47  HIToolbox                           0x00007fff953b63d3 RunCurrentEventLoopInMode + 277
    48  HIToolbox                           0x00007fff953bd63d ReceiveNextEventCommon + 355
    49  HIToolbox                           0x00007fff953bd4ca BlockUntilNextEventMatchingListInMode + 62
    50  AppKit                              0x00007fff8f5373f1 _DPSNextEvent + 659
    51  AppKit                              0x00007fff8f536cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    52  Safari                              0x00007fff91e9d3b3 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    53  AppKit                              0x00007fff8f53362d -[NSApplication run] + 470
    54  AppKit                              0x00007fff8f7b280c NSApplicationMain + 867
    55  Safari                              0x00007fff92053a6f SafariMain + 197
    56  Safari                              0x0000000106424f24 Safari + 3876
    12/01/12 11:26:37,897 netbiosd: name servers down?
    for Firefox :
    12/01/12 11:25:53,479 firefox: Mozilla has caught an Obj-C exception [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    12/01/12 11:25:53,480 [0x0-0x184184].org.mozilla.firefox: 2012-01-12 11:25:53.478 firefox[9718:503] Mozilla has caught an Obj-C exception [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    Any idea ?
    Regards,
    Jean-Francois

    [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    Apparently the Lion version of CUPS doesn't understand how your server specifies the location of the printer. That's about all I can tell you. You might find more information in the CUPS error log on the client.

  • Concurrent requests failing due to Linux CUPS service

    Dear all,
    We have a customer running their production instance on e-business suite -11.5.10.1 with Rdbms - 10.2.0.3. It is a single-node, single-tier installation running on Redhat Linux 3 (Update-8)
    Whenever, concurrent programs are submitted with Print option, the concurrent requests keep hanging and never complete. At this time, the CUPS service uses 25% of the CPU time. If we restart the CUPS service, all requests complete with warning -
    lpr: unable to print file: server-error-service-unavailable
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. An error occurred while AOL tried
    to spawn the print process
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. An error occurred while AOL tried to spawn the
    print process.
    The only workaround, is to run the concurrent request, without print option. But, this is not an option.
    Please suggest a fix for this CUPS issue.
    Thanks

    Check Note: 359890.1 - Apps Print Requests Fail with lp: unable to print file: client-error-not-found (Or lp: unable to print file: server-error-service-unavailable)
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=359890.1

  • Printing from Linux to Windows shared printer

    I am trying to print from Linux to a shared printer on a Windows XP PC. I installed cups and foomatic, started cupsd and configured the printer (HP Deskjet 720C) in KDE control centre. When I try to print a test page I get the following message:
    Catastrophe! - KNotify
    A print error occurred. Error message received from system:
    cupsdoprint -P 'deskjet' -J 'KDE Print Test' -H 'localhost:631' -U 'root' -o ' multiple-document-handling=separate-documents-uncollated-copies orientation-requested=3' '/opt/kde/share/apps/kdeprint/testprint.ps' : execution failed with message:
    client-error-not-possible
    I have Googled like crazy but couldn't find a working solution.
    For reference:
    /etc/cups/printers.conf
    # Printer configuration file for CUPS v1.1.23
    # Written by cupsd on Wed 29 Jun 2005 09:33:20 PM BST
    <DefaultPrinter deskjet>
    Info HP DeskJet 720C
    Location
    DeviceURI smb://guest@MSHOME/ANDROMEDA/HPDeskJet
    State Idle
    Accepting Yes
    JobSheets none none
    QuotaPeriod 0
    PageLimit 0
    KLimit 0
    AllowUser root shaurz
    </Printer>
    /etc/cups/cupsd.conf (comments stripped)
    LogLevel info
    Port 631
    <Location />
    Order Deny,Allow
    Deny From All
    Allow From 127.0.0.1
    </Location>
    <Location /admin>
    AuthType Basic
    AuthClass System
    Order Deny,Allow
    Deny From All
    Allow From 127.0.0.1
    </Location>
    lpstat -t
    scheduler is running
    system default destination: deskjet
    device for deskjet: smb://MSHOME/ANDROMEDA/HPDeskJet
    deskjet accepting requests since Jan 01 00:00
    printer deskjet is idle. enabled since Jan 01 00:0

    Rather than use SMB to connect from Lion to the Windows XP printer share, a better method is to enable Print Services for UNIX on Windows XP and then use LPD on the Mac to print via the Windows share.
    To install Print Services for UNIX on Windows XP:
    Log on to the Windows server with an administrative-level account.
    Start the Add/Remove Programs tool in Control Panel.
    Click Add/Remove Windows Components.
    Click Other Network File and Print Services, and then click Details.
    Click to select the Print Services for UNIX check box, and then click OK.
    Follow the instructions on the screen to finish the installation
    If you haven't done so already, share the printer on Windows XP and make the name one word - no spaces or special characters
    With the print services enabled you can then create the printer queue on Lion.
    Open Print & Scan and click + to add a printer
    Select the IP icon and set the protocol to Line Printer Daemon - LPD
    For the Address, enter the IP address of the Windows XP computer
    For the Queue name, enter the share name set for the printer in Windows XP
    Name and Location are free text so you can set this to something meaningful
    For the Print Using menu, select the supporting printer driver. Note that like connections via SMB, the vendors driver for Lion in some cases cannot be used and an alternate like those offered by the Gutenprint suite must be used.
    Click the OK button to complete the queue creation.
    Now you are ready to test the new print queue.   

  • [PARTIALY SOLVED]Can't see SAMBA share or Printer in Linux

    Greetings all,
    I have built a headless server running Arch linux as the base OS.  I am running SAMBA and CUPS and performing all maintenance of this server via SSH.
    The SAMBA share I can see (read/write) on all the Windows 7 machines on the network as well as the Printer connected to the server.  But I can't see it when I open Thunar or PCManFM.  Nor can I access the printer.
    It's obviously something I am doing wrong but I have Googled different parameters trying to find a solution but have come up short.
    Your assistance and guidance in putting me in the right direction is most appreciated.  All my Linux machines are running Arch.
    Thanks,
    Ian
    Last edited by ichase (2012-10-28 07:19:14)

    I have looked high and low.  The printer is set up via CUPS and the printer in smb.conf is set to CUPS.  All 4 windows computers in the house now have this printer set as default and can print fine.
    But if I try to print in Linux, for example in Libreoffice, I get No default printer found.  Please choose a printer and try again.  When I click ok, the network printer does not show up for me to select.
    I have tried updating the /etc/cups/client.conf on the client computer and it is set as:
    # see 'man client.conf'
    homeserver /var/run/cups/cups.sock
    homeserver 192.168.X.XX
    From what I have read so far, this is correct.  When I go to the CUPS Web Interface it shows under Manage Printer my HP 7300 Series printer there and in idle waiting for job.  And in Windows I can print to it just fine.
    As far as I can  tell SAMBA is set up correctly (I can mount the file drive in Arch with no issues) and CUPS seems to be configured correctly as well from all that I have read.
    Any insight would be great,
    Thanks,
    Ian
    Last edited by ichase (2012-10-28 07:28:31)

  • Unable to print in linux using java 1.5

    Hi i could't able to print in linux system using java 1.5. Printer name is detecting.
    when i execute printDataTransferCompleted then printJobNoMoreEvents happening But print is not happening.
    here i attached the source.
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.event.PrintJobEvent;
    import javax.print.event.PrintJobListener;
    public class HellowLinux {
         public static void main(String args[]){
              String printText = "The Java Tutorials are practical guides for programmers" ;
              DocFlavor byteFlavour = DocFlavor.BYTE_ARRAY.TEXT_PLAIN_UTF_8;
              Doc myDoc = new SimpleDoc(printText.getBytes(), byteFlavour, null);
              PrintService[] services = PrintServiceLookup.lookupPrintServices(byteFlavour, null);
              System.out.println("No of printer detected : "+services.length );
              for(int i = 0; i<services.length; i++){
                   System.out.println("Printer Name : "+services.getName());
              if(services.length > 0){
                   DocPrintJob myJob = services[0].createPrintJob();
                   myJob.addPrintJobListener(new PrintJobMonitor());
                   try{
                        myJob.print(myDoc, null);
                        System.out.println("Printed Successfully ... ");
                   }catch(Exception e){
                        System.out.println("Error : "+e.getMessage());
         private static class PrintJobMonitor implements PrintJobListener {
              public void printDataTransferCompleted(PrintJobEvent pje) {
                   // Called to notify the client that data has been successfully
              // transferred to the print service, and the client may free
              // local resources allocated for that data.
                   System.out.println("Data transfer Completed : "+pje.hashCode()
                             +"\n"+pje.getPrintEventType());
              public void printJobCanceled(PrintJobEvent pje) {
                   // Called to notify the client that the job was canceled
              // by a user or a program.
                   System.out.println("Cancelled : "+pje.hashCode()
                        +"\n Event Type "+pje.getPrintEventType());
              public void printJobCompleted(PrintJobEvent pje) {
                   // Called to notify the client that the job completed successfully.
                   System.out.println("Completed : "+pje.hashCode()
                             +"\n Event Type "+pje.getPrintEventType());
              public void printJobFailed(PrintJobEvent pje) {
                   // Called to notify the client that the job failed to complete
              // successfully and will have to be resubmitted.
                   System.out.println("Failed : "+pje.hashCode()
                             +"\n Event Type "+pje.getPrintEventType());
              public void printJobNoMoreEvents(PrintJobEvent pje) {
                   // Called to notify the client that no more events will be delivered.
                   System.out.println("No More Events : "+pje.hashCode()
                             +"\n Event Type "+pje.getPrintEventType());
              public void printJobRequiresAttention(PrintJobEvent pje) {
                   // Called to notify the client that an error has occurred that the
              // user might be able to fix.\
                   System.out.println("Requires Attention : "+pje.hashCode()
                             +"\n Event Type "+pje.getPrintEventType());
    Edited by: 936393 on May 24, 2012 12:08 AM

    Hi ,
    Go to Help menu >> update
    it will update your application to 13.1
    then go to  Editor 's Edit menu >> Preferences and click on Reset Preference on next launch .
    after that relaunch your application..
    Refer article for the same:
    https://helpx.adobe.com/photoshop-elements/kb/elements-printer-issue-incompatible-error.ht ml

  • Printing a html document in landscape mode with css

    below is my html code
    how can i print this in landscape mode.what ever i am using now is not working
    <html><head><style type="text/css">
    @media print {
    @page {
    size: landscape;
    table.fixed {table-layout:fixed; width:100%; border-collapse: collapse; word-wrap:break-word;}TR.head{font-family: verdana; font-size: 10pt; vertical-align: top ; color: #ffffff; background-color: black; font-weight: bold; }TR.data{font-family: verdana; font-size: 8pt; vertical-align: top}</style></head><body><table width="100%" border="0" cellspacing="0" cellpadding="4"><tbody><tr><td></td><td align="center"><font size="2" style="verdana"><b>EMERGENCY ICE Installs by Manager And Production Install Date Range</b></font><br><td></td><table width="100%" border="0" cellspacing="0" cellpadding="4"><thead><tr><td width="74%" align="center"><font size="1" style="verdana"><b>From:</b>11/01/07</font><font size="1" style="verdana"><b>&nbsp&nbspTo:</b>01/08/08</font></td></tr></thead></table></td></tr></tbody></table><br></br>
    <table border="1" class="fixed"><thead><tr class="head"><td width="8%">Manager</td><td width="5%">ICE # </td><td width="10%">Plan Prod Install Date</td><td width="10%">Doc Status</td><td width="10%">Doc Title</td><td width="7%">Owner</td><td width="5%">Risk Desc</td><td width="4%">AS/400</td><td width="4%">Unix</td><td width="4%">Win Srv</td><td width="4%">Win Dsk</td><td width="4%">Vax</td><td width="5%">Target Loc</td><td width="10%">No Chg Risk Desc</td><td width="15%">Brief Chg Desc</td></tr></thead><tbody>
    <tr class="data"><td rowspan="12" width="5%">Randal Hockenberry</td><td width="8%">16926</td><td width="10%">Dec 31,2007</td><td width="10%">Pending Manager-Business Review</td><td width="10%">AUTO APPROVE</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="5%">TEST</td><td width="10%">TEST</td><td width="15%">TESTzxdcxvsrfdgdsgfdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff</td></tr>
    <tr class="data"><td width="8%">16933</td><td width="10%">Dec 28,2007</td><td width="10%">Pending Non-QS Testing</td><td width="10%">SR</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="5%">XC</td><td width="10%">DFV</td><td width="15%">CX</td></tr>
    <tr class="data"><td width="8%">16927</td><td width="10%">Dec 28,2007</td><td width="10%">Pending Risk Review</td><td width="10%">AUTO APPROVAL TEST</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="5%">AUTO</td><td width="10%">AUTO APPROVE</td><td width="15%">AUTO APPROVE</td></tr>
    <tr class="data"><td width="8%">15926</td><td width="10%">Nov 27,2007</td><td width="10%">Pending Code Review</td><td width="10%">CM Install LEVEL 3 QS will test</td><td width="7%">Gary Zhong</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="4%">Y</td><td width="5%">pitt99</td><td width="10%">testing the app</td><td width="15%">CM Install LEVEL 3 QS will test</td></tr>
    <tr class="data"><td width="8%">15712</td><td width="10%">Nov 22,2007</td><td width="10%">Rejected</td><td width="10%">Test Documentation Request</td><td width="7%">Autumn Priddy</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="5%">x</td><td width="10%">none</td><td width="15%">run-through for documentation purposes</td></tr>
    <tr class="data"><td width="8%">16029</td><td width="10%">Nov 21,2007</td><td width="10%">Rejected</td><td width="10%">Contractor</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="5%">Windows</td><td width="10%">testing</td><td width="15%">Testing</td></tr>
    <tr class="data"><td width="8%">16030</td><td width="10%">Nov 19,2007</td><td width="10%">Rejected</td><td width="10%">Contractor</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="5%">Windows</td><td width="10%">testing</td><td width="15%">Testing</td></tr>
    <tr class="data"><td width="8%">15840</td><td width="10%">Nov 10,2007</td><td width="10%">Pending Follow Up Review</td><td width="10%">SMS Install LEVEL 3</td><td width="7%">Stephen Sciullo</td><td width="5%">Low</td><td width="4%">Y</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="5%">pitt88</td><td width="10%">system testing</td><td width="15%">SMS Install LEVEL 3</td></tr>
    <tr class="data"><td width="8%">15719</td><td width="10%">Nov 08,2007</td><td width="10%">Pending Test Install</td><td width="10%">CM Install LEVEL 1 pitt3/col3</td><td width="7%">Stephen Sciullo</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="5%">pitt88</td><td width="10%">testing</td><td width="15%">testing</td></tr>
    <tr class="data"><td width="8%">14815</td><td width="10%">Nov 03,2007</td><td width="10%">Rejected</td><td width="10%">test</td><td width="7%">Stephen Sciullo</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">Y</td><td width="4%">N</td><td width="5%">pitt2</td><td width="10%">test</td><td width="15%">test</td></tr>
    <tr class="data"><td width="8%">14816</td><td width="10%">Oct 31,2007;Nov 01,2007;Nov 02,2007</td><td width="10%">Production Install Complete</td><td width="10%">Contractor</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="5%">windows</td><td width="10%">test</td><td width="15%">test</td></tr>
    <tr class="data"><td width="8%">14915</td><td width="10%">Nov 01,2007</td><td width="10%">Pending Follow Up Review</td><td width="10%">Contractor</td><td width="7%">Padma Chirumalla</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="4%">N</td><td width="5%">windows</td><td width="10%">test</td><td width="15%">Test</td></tr>
    <tr></tr>
    <tr class="data"><td rowspan="1" width="5%">Linda Humm</td><td width="8%">16034</td><td width="10%">Dec 06,2007</td><td width="10%">Pending Production Install</td><td width="10%">CM Install LEVEL 1 pitt3/col3</td><td width="7%">Randal Hockenberry</td><td width="5%">Low</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">N</td><td width="4%">Y</td><td width="5%">pitt88</td><td width="10%">testing</td><td width="15%">testing</td></tr>
    <tr></tr>
    </tbody></table><body></html>
    thanks,

    Why are you asking a CSS question in a Java/JSP/JSTL forum? I would rather use a CSS forum for that. That HTML code is unnecessary too. Just post relevant code only, such as that CSS snippet.
    Anyway, it may differ per web browser if this page rule will be picked up and it may also be a client side setting regarding printer settings. Nothing to do here.

  • solved Setting up Arch to print to remote cups printer?

    Any useful info on setting up Arch to print to remote cups printer? I did'nt succeed using the Cups Setup guide:
    http://wiki.archlinux.org/index.php/CUPS_Setup
    I have tried the localhost:631 admin interface and kprint. I get  /usr/lib/cups/backend/ipp failure and "stopped with status 22!" errors.
    I will set the cupsd.conf LogLevel to debug2 and post anything needed from those results.
    Brother hl1240 laser on a remote Suse system.
    lynch
    Last edited by lynch (2007-01-28 15:30:17)

    After a bit of searching I have managed to get remote printing to my cups server to work.
    I reference 2 documents that helped me resolve this issue.
    My searches were specific to my Brother hl1240 laser printer, Arch and cups but I think the resolution is general enough to help others who may have a different model of printer.
    http://linuxprinting.org/cups-doc.html
    4.   Install the Foomatic scripts.
    (If you are using a native CUPS Raster driver, or are using a PostScript printer with a PPD from your printer vendor, you probably do not need Foomatic and should skip this step). Download foomatic-rip and foomatic-gswrapper:
    cd /usr/bin
    wget http://www.linuxprinting.org/foomatic-rip
    wget http://www.linuxprinting.org/foomatic-gswrapper
    chmod 755 foomatic-rip foomatic-gswrapper
    ln -s /usr/bin/foomatic-rip /usr/lib/cups/filter/foomatic-rip
    The location of the CUPS filter directory may differ on other installations; look around for it. Also, be sure that your Perl interpreter is in /usr/bin (if not, edit the first line of the scripts).
    http://www.archlinux.org/pipermail/arch … 03203.html
    Here's what solved this for me. I browsed
    http://linuxprinting.org/cups-doc.html and notice the following:
    "Download foomatic-rip and foomatic-gswrapper."
    Well, Arch only seems to supply foomatic-gswrapper, not foomatic-rip. When I
    attempted to install the Arch foomatic-filters package, it complained,
    saying foomatic-gswrapper is already contained in filesystem, with no
    mention at all of foomatic-rip. The foomatic package also failed to install
    foomatic-rip.
    So I downloaded foomatic-rip from the above web site, copied it to /usr/bin,
    where foomatic-gswrapper lives. Then I followed the next set of
    instructions in the above mentioned document:
    chmod 755 foomatic-rip foomatic-gswrapper
    ln -s /usr/bin/foomatic-rip /usr/lib/cups/filter/foomatic-rip
    I was never able to use the http://localhost:631 interface to get printing to work even after:
    [1] installing foomatic-rip and foomatic-gswrapper in the proper directory
    [2] running chmod to make them executable
    [3] creating the link as in the above quote
    [4] running /etc/rc.d/cups restart
    Setting up remote printing with kprint in administrative mode works very well, though.
    This seems to be somthing that needs to be addressed in future releases ( I'm running 0.7.2) or maybe it was fixed in 0.8, though I have not seen mention of it.
    Hopefully this will help someone else with a similar problem.
    lynch

Maybe you are looking for

  • RECEIVING OPEN INTERFACE TABLE의 STRUCK RECORDS 정보 취합 SCRIPT

    제품 : MFG_PO      작성날짜 : 2005-01-27      RECEIVING OPEN INTERFACE TABLE의 STRUCK RECORDS 정보 취합 SCRIPT ================================================================= PURPOSE RCV_TRANSACTIONS_INTERFACE table에 있는 struck receipt records의 정보를 취합하여, struc

  • Camcorder Compatibility Issues

    I have a Sony DCR-HC40 camcorder and USB cord, and I want to capture video onto my new Mac. I do not believe iMovie is compatible. Is there any way I can use this camera to upload the video?

  • Reg Standby Configuration method

    Hello All, I have two database servers DB1(as primary) and DB2(as standby) DB1 is currently online and DB2 is in mount state. I am using "Oracle Server-Standard Edition 11g R2", " version: 11.2.0.1" So it is not possible to perform switchover. I am g

  • Importing flash package

    I create an action script block and try to import a flash package: import flash.net; I get an error: Severity Description Resource In Folder Location Creation Time Id 2 Definition flash:net could not be found. DLW.mxml DLW line 7 June 20, 2006 4:24:5

  • Images imported... some ruined with blank white and color banding

    I'm using Lightroom 4... i've been importing my RAW images from my external harddrive. Some show up in the catalog as ruined with a blank white section and color bands.  I've checked the actual image on the external hard drive and it is fine. I've de