Lightroom 3.6 Problems by press Printing buttom

Everytime i try to use the print funktion my Program shuts down. Thre days ago everything went fine. I do not understand, what happend.

Wenn das hier das deutsche Forum ist, dann die Antworten bitte gerne auch auf Deutsch.
Seit drei Tagen schmiert Lightroom ab, wenn ich auf die Druckfunktion gehe. Bis dahin lief immer alles problemlos.
Wäre über Hilfe echt dankbar.

Similar Messages

  • Epson Leopard Lightroom 1.3 - UK Europe Drives Print Problems

    From reading these forums the print problems (poor color when using profiles) that everyone is having with Leopard, Epson Printers and Lightroom 1.3 is related to print driver issues. While there have been no updates on the Epson US site there have been driver updates on the UK/Europe Epson site.
    Has anyone tested these updated drives referenced as version 6.12 and do they resolve the issues. In particular I am interested in the R1800 drivers.

    Ivan J:
    I downloaded the 6.12 driver for the Epson R1800 from the Epson UK site. From my testing so far, I see essentially the same color prints from the driver itself or from using the Epson-supplied icc profile. All with Intel Mac on OS 10.5.1 and LR 1.3.1. So far so good. Still no sign of the new driver on Epson America. Hope this helps.

  • Problems with 'Order Prints' from Aperture 2.1.3 Mystery borders

    *Some background:*
    I've been using Aperture for about 3 months now, importing most of my iPhoto library into the program. I have only recently started shooting in RAW format, most of my photos image files are in JPG format. In the past, I've had no problems with obtaining prints from within iPhoto or to a limited extent Aperture. So, far as I know my program is up-to-date. I have 2 plugins installed: Aperture2twitter and *flickr export Lite* both of which work acceptably.
    *The problem:* I ordered 317 4×6 prints from my aperture library.
    Every photo has a 1/4″ border on both sides of the image, i.e. the printed image is only 4×5 1/2″. I have never ordered this quantity before, but I don’t believe that was the problem, it appears that the processing machine was misaligned and no one reviewed the prints prior to shipping.
    I tried again, on 4 different images ... all JPG files with 3 out of 4 were OK, but one exhibited the "border" issue.
    I haven't a clue what is going on here. Apple implied +(via email)+ that I would have to individually crop every photo to ensure proper aspect ratio. This makes no sense to me at all, as I have never had this kinda problem before.
    Could the plugin(s) be interfering with the s/w? Is there a trick to having photos printed from within Aperture that was not present in iPhoto?
    Any thoughts on what the problem is would be greatly appreciated.
    Thanks
    -john

    I believe that I've solved this problem, with the help of the folks at Apple who handle Aperture tech support using the Aperture support ID that came with the product.
    So the short answer is: Aperture print services REALLY DO REQUIRE the image to be cropped (constrained as they say) prior to the data being sent to Apple Print services.
    Here is the link that describes cropping http://support.apple.com/kb/HT1993?viewlocale=en_US
    The process as described is cumbersome, but the support tech pointed out that in Aperture, crops are 'non-destrutive' and can be undone simply by removing the check mark on the Adjustments tab of the image you crop. *This means that you do not have to make a duplicate image for cropping.*
    So, here is the process that I arrived at to ensure that my "order prints" job turned out:
    1. create an album of all the photos you want to submit for printing.
    2. for each image call up the Crop HUD by pressing 'c' on the keyboard.
    3.select the aspect ratio that you want for your photo. Make sure that it does NOT SAY Master Aspect Ratio, or Main Display Aspect Ratio.
    4. Crop the photo
    on the adjustments tab you can see the X and Y data and Height / Width information which can be undone.
    5. Submit your print request to Apple for all the cropped photos.
    When the prints arrive, you can compare the prints with the submitted photos. They should all be good. You can then delete the album (since it really is not a physical thing) or keep it for reference.
    It all seemed a bit arcane to me, as I never had to worry about this in iPhoto. It must be that iPhoto sends different data than Aperture. I have just received 200 + prints back from Apple Print Services with about 98% success rate. I just have to adjust my thinking and my process when dealing with Aperture.

  • Problem with java print

    Hi, I'm have problems with java print (g2d). For example i want to print a String "ABC**************************DEF" on paper size 80mm width (invoice paper). I can print all that string with paper A4 size, but with paper size 80mm i have problem with that String, the result is "C*****************D" lost AB and EF. I think i had problem with paper size, pls help me. Thank you so much.
    My code is below:
    package app.util;
    To change this template, choose Tools | Templates
    and open the template in the editor.
    @author HUU NGHIA
    // Printing Sample code
    // This code demonstrates the Java 2 print mechanism
    import com.connection.Product;
    import java.awt.;
    import java.awt.print.;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.Vector;
    // Define a class that is called per page that needs printing. It implements
    // the one and only method in the Printable interface : print. Note that
    // this is quite separate from the PrinterJob class print() method.
    // This method does not actually do any printing. All it does is write text
    // and/or graphics onto the passed page (graphics context). The calling
    // printer job object will then pass this page to the printer.
    public class PrinterController {
    public static void print(Vector<Product> products) {
    // Create an object that will hold all print parameters, such as
    // page size, printer resolution. In addition, it manages the print
    // process (job).
    PrinterJob job = PrinterJob.getPrinterJob();
    // It is first called to tell it what object will print each page.
    job.setPrintable(new PrintObject(products));
    // Then it is called to display the standard print options dialog.
    if (job.printDialog()) {
    // If the user has pressed OK (printDialog returns true), then go
    // ahead with the printing. This is started by the simple call to
    // the job print() method. When it runs, it calls the page print
    // object for page index 0. Then page index 1, 2, and so on
    // until NO_SUCH_PAGE is returned.
    try {
    job.print();
    } catch (PrinterException e) {
    e.printStackTrace();
    class PrintObject implements Printable {
    Vector<Product> products;
    public PrintObject(Vector<Product> products) {
    this.products = products;
    public int print(Graphics g, PageFormat f, int pageIndex) {
    Graphics2D g2 = (Graphics2D) g; // Allow use of Java 2 graphics on
    // the print pages :
    System.out.println("f.getImageableX(): " f.getImageableX());
    // A simple circle to go on the second page (index = 1).
    switch (pageIndex) {
    case 0:
    printInvoiceTemplate(g2, products);
    return PAGE_EXISTS;
    // case 1 : g2.setColor(Color.red); // Page 2 : print a circle
    // g2.draw(circle);
    // return PAGE_EXISTS;
    default:
    return NO_SUCH_PAGE; // No other pages
    public String getDate(){
    Date d = new Date();
    SimpleDateFormat sp = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss");
    return sp.format(d);
    private void printInvoiceTemplate(Graphics2D g2, Vector<Product> products) {
    //System.out.println("#######" cardInfo.getTranType());
    int alignY = 40;
    int alignXCenter = 60;
    int enterSpace = 15;
    int xProductName = 10;
    int xUnit = 85;
    int xAmt = 110;
    int xTotal = 155;
    int yEndData = 0;
    int totalAll = 0;
    g2.setColor(Color.black); // Page 1 : print a rectangle
    g2.setFont(new Font("Verdana", 0, 8));
    g2.drawString("ABC", alignXCenter, alignY);
    g2.drawString("123WWW", alignXCenter, alignY enterSpace *1);
    g2.drawString("Phone: (08)62891633", alignXCenter, alignY enterSpace*2);
    g2.setFont(new Font("Verdana", 1, 12));
    g2.drawString("Invoice", alignXCenter - 10, alignY enterSpace*4);
    products = new Vector<Product>();
    for (int i = 0; i < 10; i+) {
    Product product = new Product();
    product.setProductName("ZESTORETIC TAB 20MG B/28" i);
    product.setUnit("v"+i);
    product.setAmt(5+i);
    product.setPrice(50000+i);
    products.add(product);
    for (int i = 0; i < products.size(); i+) {
    System.err.println(i);
    int total = products.get(i).getAmt()*products.get(i).getPrice();
    g2.drawString(i+1+"."products.get(i).getProductName(), xProductName+2, alignY enterSpace(8+(i*2)));
    g2.drawString(products.get(i).getUnit(), xUnit+5, alignY enterSpace*(9(i*2)));
    g2.drawString(products.get(i).getAmt()"x"+AppUtils.formatPrice(products.get(i).getPrice())"", xAmt+5, alignY enterSpace*(9(i*2)));
    g2.drawString(AppUtils.formatPrice(total), xTotal+15, alignY enterSpace*(9(i*2)));
    yEndData = 9+(i*2);
    totalAll = totalAll total;
    System.out.println(yEndData);
    g2.drawLine(xProductName, alignY enterSpace*(yEndData 1), 210, alignY enterSpace*(yEndData 1));
    g2.drawString(AppUtils.formatPrice(totalAll)" VND", xAmt, alignY enterSpace*(yEndData 2));
    g2.drawString("Thank you", alignXCenter, alignY enterSpace*(yEndData 4));
    g2.drawString("***", alignXCenter 30, alignY enterSpace*(yEndData + 5));
    public static void main(String[] args) {
    PrinterController.print(null);
    }

    When you posted you didn't use code tags, as a result the forum software has interpreted some of your characters in your program as screen formatting codes and has corrupted your post--the most easily observable change is the bolded characters in you post. Please repost your code using code tags so people will be helping with uncorrupted code.

  • I cannot print any websites; every time I press "print" it goes to "save the file as [xps]" instead. What's up?

    I cannot print any websites; every time I press "print" it goes to "save the file as [xps]" instead. What's up? I can print in Word without problem.

    Bless you, bless you, bless you. After months of living with this annoying problem and not being able to print out emails or websites it is, in a stroke, totally solved. Thank you! It works. It's a wonder and you're a winner!
    Paul

  • Problem: Illustrator CS6 - print PostScript (fuzziness and blurring edges of vector objects)

    Hello,
    Earlier to print to the printer Develop Ineo+ 451 used the program Illustrator CS3. In connection with the transition to Windows 7 (64bit), was bought by a new version of Illustrator CS6 64bit. Unfortunately, when printing from Illustrator CS6 (price lists, business cards, labels) on a PostScript printer were detected problems, which were not in previous versions of Illustrator CS3.
    A comparison of the print quality of the two programs Adobe Illustrator CS3 and Adobe Illustrator CS6, made on a PostScript
    The software used on the computers:
    1st PC: Windows XP SP2 (32bit), Adobe Illustrator CS3 (32bit), the driver Generic 50C-2SeriesPS v3.0.16.0 (32bit).
    2nd PC: Windows 7 SP1 (64bit), Adobe Illustrator CS6 (64bit), the driver Generic 50C-2SeriesPS v3.0.16.0 (64bit).
    Printer: Develop Ineo+ 451 (PostScript).
    Drivers are available for download on the site www.chansi.ru
    link http://download6.konicaminolta.eu/develop/public/&&BDV&RU&sw&&&&&0&&&0&&0&&0
    (to choose Product Ineo + 452, for download tested version of the printer driver).
    Because after using the new version of the driver, the print quality was not satisfactory, then for the correctness of the comparison experiment, already used driver version 50C-2SeriesPS v3.0.16.0 has been selected.
    When you print from the program Adobe Illustrator CS6, a printer PostScript, you can see fuzziness and blurring edges of vector objects, small text becomes fuzzy and difficult to read. If you print from a program Adobe Illustrator CS3 (using the same version of the driver), there are not such problems and the print quality is quite satisfactory.
    The settings in the dialog box "Print" of Adobe Illustrator and the print settings in the dialog boxes of the PostScript printer driver of Develop Ineo+ 451, were chosen exactly the same for both versions of the programs Adobe Illustrator CS3 and Adobe Illustrator CS6 on both operating systems!!!
    (1) - http://hostingkartinok.com/show-image.php?id=ce3339ac2057e91a77a77b93ba129db2
    (2) - http://hostingkartinok.com/show-image.php?id=0be6ec6a3e9d214b107525aedc59b7cb
    P.s. Sorry for my English, use http://translate.google.ru/ and the help of friends

    What's the explanation for the following sequence?
    1. Paste as Smart Object, at moment after pasting and before clicking the commit icon (no transform was made) in options bar. The object is rendered pixel-perfect.
    2. After the commit. The object is poorly rendered with gray pixels which should be white.
    3. Press Cmd+T for transform mode. The object is rendered pixel-perfect again.
    4. After canceling transform mode, the object is poorly rendered again.

  • Printing problem - no such printer installed

    Dear sirs,
    today I write to report another issue with printing. It sometimes happen, completely random, that after a print with a printer (no matter which printer) if I select another printer and press "Printer preferences" from your "amazing print dialog"(TM), an alert appear with the message "no such printer" or "no such printer installed" (I use a localized version of PS5 so I don't know the exact message in English, but I'm sure you can understand).
    The solution is to shut down PS5, open it again, open the file again, open the print dialog again, select the printer again, select Printer Preferences again, and it finally works (ok, there is still the number of copies issue, so I have to do the whole process one more time to print correctly).
    Please check this too.
    Don't you have a tool to make debug file to allow you to check what is happening?

    Windows 7 has a built in Problem Step Recorder. You can use that (if you have Windows 7).
    Wait a second you wrote you have Photoshop 5 (PS5)? That is way old software. What Operating System are you trying to run that on?

  • Hi everyone ! Question about a magazine in Pages for Printing in press printing

    Hello all Pages users !,
    I am really strugling with trying to learn, comprehend and use InDesign CS5 for a future free give-away  60 or 62 pages magazine.
    I do understand and manage quite well apple 's PAGES for normal regular brochures and flyers use.
    I truly need some advices regarding my project, as while being at ease with the use of Pages, there are some specific points I need
    to make sure will work out when finally sending a pre-press and final PDF to my printer's house.
    1/ How to set the necessary margins, bleed, trim, gutter and middle flat squre binding spin ?
    2/ Will there be problems if I import pre-vectorized images/texts with transparent background (i.e. in PNG format)
    3/ Should I only import CMYK photos from my photoshop instead of RGB ?
    4/ Is there a specific setting for all the facing pages (let/right) and numbering them ?
    5/ Once done, can I export the final PDF file to any Abode reliable PDF handler to secure and ensure all settings, colors and trim areas
    will be perfect for press printing, and what would you guys kindly recommend ?
    I know these are various and complicated questions and issues, but before venturing into PAges for my magazine set up, layout and
    complete work, I would preferably ensure that it is possible to get a correct nice color magazine done in Pages instead of venturing
    in the Highly professional very complicated inDesign software .
    Thaks a milion in advance for all your advices, tipds and experience !
    Awaiting your feddback guys !
    Gratitude to all souls of good will for this help outcry ! ;-)
    magazinedesign

    The person as always best able to answer your questions is the printer who will be printing your magazine.
    They may be an exception but I doubt they will be happy with you doing it in Pages.
    Pages is designed for output to your desktop printer. There are a string of issues to do with preparing a print job for commercial printing that Pages is either ill-equiped or plain just unable to manage.
    If you say you are struggling with Indesign which is designed to manage all aspects of commercial printing, what makes you think that choosing a program that isn't will improve matters?
    1. Pages does not have crops, bleeds or slugs. You can however manually construct these yourself with sufficient work.
    2. Pages has no tools to help you manage your output, ensure that black only text/objects are black only, that resolution is high enough, that its unique objects such as frames pass through the printer's RIP correctly.
    3. By default Pages produces exceptionally low resolution transparency (only 72dpi) for shadows, reflections, 3d graphs, frames and transparency overlaying bitmaps in exported pdfs.
    4. Ask your printer whether he can fix trapping in his RIP because Pages doesn't.
    5. You can DL and install certain print workflows that will correct some of these but will still not get correct pdf-X3 that printers require.
    6. You can not bypass output through Apple's problematic print engine, even though fruhulda's link thinks he has.
    7. OSX can not make spot color objects, although spot color already in pdf objects brought into Pages should (not guarranteed) be honored.
    8. I don't know what you mean by pre-vectorized images because png is rgb bitmap only and does not contain vectors nor text. I think you might mean pre-rasterised, not a good idea.
    9. You will assume command of the Good Ship Pages and all who sail in her, the printer will probably hand all responsibility for output to you. You get to pay no matter what happens. Good luck.
    In summary, if you are uncomfortable with and don't know how to handle pre-press settings and requirements, I suggest you do not, and instead hand the job over to a professional to produce and manage for you.
    Finding out that you do not have what it takes to print commercially, can be a very expensive and salutory experience. Printers will find it hard to say no to you despite their apprehension, but then it will be your baby.
    Peter

  • When I press print preview, a screen that is not related to what I want to print opens up. Any sugestions? ny

    If I want to print something, I open up the File name on the tool bar and press print preview. Instead of showing me the print subject, it goes to a Pogo site page. I can never get to the print preview. When I use Internet Explorer it works fine. It used to work o.k. before. It seems (but I'm not sure) that when I downloaded the latest version of Firefox is when I started having this problem. Any suggestions would be appreciated. Thanks

    Thanks, the-edmeister. I disabled the CANON IMAGE GATEWAY plugin like you suggested but unfortunately, I still have the same problem. Thanks for trying.

  • I cannot print pages displayed by firefox, the printing just hangs when I go to File--- Print and press print.

    If I want to print a page displayed by Firefox, I do the usual, I go to file, choose Print and press Print on the print window. Then the printer just hang, nothing happens.
    No problem with MSN, Word, WordPerfect, Yahoo, etc
    Thanks for your help.

    There's no "pages" of information, it's one long page of preferences.
    '''print.printer''' will be listed multiple times, there are like 3 dozen or more preferences for each printer. If you have more than one printer there will be groups of prefs for each printer.
    You can try resetting only '''print.print_printer''' and then restart Firefox, and see if that solves your problem. But chances are that you may need to reset every pref for that printer.
    Also make sure that you don't have multiples of the same prefs for that printer. It is very possible that you may find duplicates like this or similar. <br />
    '''print.printer_HP Officejet 6500_Series(2).print_evenpages'''
    (2) or (3) in a pref means you have multiple prefs for the same printer ''(usually caused by installing the print drivers multiple times without uninstalling the old drivers first)'', and that can cause problems with Firefox; the "printer" driver you select probably ain't gonna be the one that is really "installed". If you see something like that, you will definitely need to reset every pref for that printer; the duplicates will be gone after the restart and won't return after you use your printer the first time after the reset.

  • Problem with HP printer hplip is not starting

    My daemons line
    DAEMONS=(syslog-ng portmap dbus hal network netfs hplip cups clamav alsa acpid !crond  kdm)
    I have installed it using pacman. If I run pacman -S  hplip I get a message saying it is already there.

    Okay, after a search I come up with the preferred printer installation method using the hp-setup command line tool. As this is supposed to be the 'HP' way to setup the printer and use hp-toolbox I decided to go this route. Naturally, the output is not promising:
    # hp-setup
    HP Linux Imaging and Printing System (ver. 0.9.8)
    Printer/Fax Setup Utility ver. 0.7
    Copyright (c) 2003-5 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    [ERROR]: No devices found.
    [ERROR]: Error occured during interactive mode. Exiting.
    Now, why the heck would it not find the device when it is already set up via CUPS and working properly in the desktop environment? The latest hplip version is 0.9.10, but I somehow doubt using the 0.9.8 would cause this type of problem as the printer I use is not a recent piece of machinery.

  • Problem with HP Printer Utility and Mac OSX 10.5.4

    I have a problem with HP printer Utility. When a standard user adds a new paper profile HP Printer Utility asks to type an administrator's name and password to allow HP printer Utility to make changes. Is it possible to avoid this? Otherwise I have to give admin rights to every user because they have to be able to add new papers. HP printer Utility sharing and permisssions are set to read and write to everyone.
    HP designjet Z3200
    MacOSX 10.5.4 (Mac pro intel)
    HP printer utility 3.6.0.

    Just found an email HP Support sent to me back in January 2008, about this issue
    "Hello Hunter,
    Thank you for contacting HP Total Care.
    There currently is not proper driver for 10.5, so it is surprising that the printer is printing correctly on your Mac from any application.
    Your issue cannot be resolved until the 10.5 driver is developed and released.
    To sign up for an update as soon as it is available ...click on the link below:
    HP's subscriber's choice is a free service where you can select to receive timely email notifications ranging from software and driver updates to creative ways to do more with your HP products.
    http://h71036.www7.hp.com/hho/html/3618-0-0-225-121.html
    If you need further assistance, please reply to this message and we will be happy to assist you further.
    You may receive an e-mail survey regarding your e-mail support experience. We would appreciate your feedback.
    For information on keeping your HP and Compaq products up and running, please visit our Web site
    at:
    http://www.hp.com/go/totalcare
    Sincerely,
    Dave
    HP Total Care"
    I just sent them an email today on any updates regarding a release date on the Leopard driver for P1005, i'll post any info i receive.

  • Lightroom 5.3 problems, downloading through Creative Cloud.

    Lightroom 5.3 problems, downloading through Creative Cloud.  Error 1624
    ERROR: Install MSI payload failed with error: 1624 - Error applying transforms. Verify that the specified transform paths are valid.
    MSI Error message:
    ERROR: Third party payload installer Adobe_Lightroom_x64.msi failed with exit code: 1624

    this is from emma at https://blogs.adobe.com/lightroomjournal/2013/12/lightroom-5-3-now-available.html
    I had this same error and managed to get around it by running the .msi file that the CC app downloaded to a temp folder on my own. Steps were:
    1. Find the location Adobe_Lightroom_X64.msi (in a a temp folder)
    2. Run it and install (serial number was already pre-filled out)
    3. Restart the CC desktop app
    It then appeared as installed under ‘Your Apps’ and works as usual.

  • T.code FBL5N: a problem with the print of the output list

    Hi All,
    with reference to the t.code FBL5N, I have  a problem with the print of the output list of the report.
    When I execute the print, I obtain one customer for each page printed.
    I wonder if is possible to obtain more customers for each page printed.
    Could anyone help me?
    Thanks
    Gandalf
    Edited by: Umberto Gandalf on Dec 21, 2008 10:36 PM

    Hi,
    Though personally i havent tried this option, check the same
    Go to Menu: Settings >> Switch List
    This will make the value displayed in ALV format and then try taking print outs.
    Regards,
    Sridevi

  • Your computer restarted because of a problem. Press a key or wait a few seconds to continue starting up

    Hello,
    Yesterday my macbook pro was working fine and i left it before sleeping working and it's go into slepping mode after battery discharged.
    today morning i turned it on and i got this message after many times of automatic restart :
    " Your computer restarted because of a problem. Press a key or wait a few seconds to continue starting up "
    i have searched for the problem and the way to solve it i found many articles and helpful solutions but never changed !
    and that's what's happened exactly:
    1. I booted into safe mode for only one time and i can't boot again and i don't know why?
    2. After botting in safe mode i deleted all non-app store apps and, then restart
    3. Still rebooting and the message appear.
    4. reseting PRAM
    5. Repairing and verifying permissions and disk. = some errors in itunes/resources/.... serval times of repairing and nothing effect on errors.
    6. Hardware test = no troubles found.
    7. Reinstall OS X mountain lion = i got a message that my apple id is not purchased mountain lion because i bought my mac earlier 2012 with leopard and i have upgraded may be from another Apple id i can't remember.
    No backups to restore, and i have a wealth of my work databases i can't return it back
    Please help

    Morning from QA,
    my macbook pro now working and i got this report and sent it to apple.
    Interval Since Last Panic Report:  1362 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    E6D04971-1F3E-80D5-1BC9-1B89279EBEA3
    Sat Oct  5 21:58:28 2013
    panic(cpu 0 caller 0xffffff80034b8945): Kernel trap at 0xffffff7f83fb104c, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff80b2f2a000, CR3: 0x000000000bb29018, CR4: 0x00000000000606e0
    RAX: 0x0000000000000500, RBX: 0xffffff80b2f28c00, RCX: 0x0000000000bfbfbf, RDX: 0xffffff7f83fb98d0
    RSP: 0xffffff8081b12900, RBP: 0xffffff8081b13af0, RSI: 0x0000000000000020, RDI: 0xffffff80b2f28c00
    R8:  0x0000000000000fee, R9:  0x0000000000010000, R10: 0x0000000000000000, R11: 0x000000007fffffff
    R12: 0x0000000000000fee, R13: 0x0000000000000800, R14: 0x0000000000000000, R15: 0x0000000000000020
    RFL: 0x0000000000010206, RIP: 0xffffff7f83fb104c, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff80b2f2a000, Error code: 0x0000000000000002, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8081b125a0 : 0xffffff800341d636
    0xffffff8081b12610 : 0xffffff80034b8945
    0xffffff8081b127e0 : 0xffffff80034cebfd
    0xffffff8081b12800 : 0xffffff7f83fb104c
    0xffffff8081b13af0 : 0xffffff7f83fa7d51
    0xffffff8081b13b50 : 0xffffff7f83fb1503
    0xffffff8081b13b70 : 0xffffff7f83fac770
    0xffffff8081b13b90 : 0xffffff7f83fb1bba
    0xffffff8081b13bc0 : 0xffffff8003870b13
    0xffffff8081b13c20 : 0xffffff800386e74f
    0xffffff8081b13d70 : 0xffffff8003498c21
    0xffffff8081b13e80 : 0xffffff8003420b4d
    0xffffff8081b13eb0 : 0xffffff8003410448
    0xffffff8081b13f00 : 0xffffff800341961b
    0xffffff8081b13f70 : 0xffffff80034a6546
    0xffffff8081b13fb0 : 0xffffff80034cf473
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f83f9e000->0xffffff7f83fd5fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[2FAEA49C-EA4C-39C6-9203-FC022277A43C]@0xffffff 7f83a75000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x0000000003200000
    Kernel text base: 0xffffff8003400000
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 61714428675
    last loaded kext at 61660768085: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0xffffff7f84d07000, size 36864)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.2.14
    org.virtualbox.kext.VBoxNetFlt          4.2.14
    org.virtualbox.kext.VBoxUSB          4.2.14
    org.virtualbox.kext.VBoxDrv          4.2.14
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f2
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.13.12
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.iokit.IOBluetoothUSBDFU          4.1.7f2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleHDAHardwareConfigDriver          2.4.7fc4
    com.apple.driver.AppleHDA          2.4.7fc4
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleMikeyDriver          2.4.7fc4
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelHD3000Graphics          8.1.6
    com.apple.driver.AppleIntelSNBGraphicsFB          8.1.6
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyEventDriver          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.driver.AppleUSBHub          635.4.0
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.iokit.AppleBCM5701Ethernet          3.6.2b4
    com.apple.driver.AppleSDXC          1.4.3
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleUSBUHCI          621.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f2
    com.apple.driver.DspFuncLib          2.4.7fc4
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.IOPlatformPluginFamily          5.4.1d13
    com.apple.driver.AppleThunderboltEDMSink          1.2.0
    com.apple.driver.AppleThunderboltDPOutAdapter          2.5.0
    com.apple.driver.AppleHDAController          2.4.7fc4
    com.apple.iokit.IOHDAFamily          2.4.7fc4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f2
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleThunderboltDPInAdapter          2.5.0
    com.apple.driver.AppleThunderboltDPAdapterFamily          2.5.0
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.3.2
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.driver.AppleThunderboltNHI          1.9.2
    com.apple.iokit.IOThunderboltFamily          2.7.7
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBFamily          635.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 13 devices, 3 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST9500325ASG, 500.11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 3
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0253, 0xfa120000 / 4
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 2

Maybe you are looking for

  • Gl balance balances in developed report

    Hi, I am developing a report which is having one parameters which requires GL account balance - opening as well as closing for the report period. I searched through forum in which i got tables where again i need internal tables to get the data requir

  • Recovery from a SCOM alert - ORCH or task - best practice?

    Hi - wonder if anybody in the "real world" can give me any guidance on this? I look after SCOM and have traditionally been tasked with creating recovery scripts for certain custom alerts. I am also involved in the ORCH sphere but not totally responsi

  • In Line CASE Statement OR Function

    Hi Gurus, What approach do you typically take in queries where you need to run CASE/DECODE type logic on a query? Obviously for small logic sets DECODE or CASE is fine in the query, but when I have to run a lot of logic for a column output I tend to

  • MeetingPlace Express emailing password

    Hi We are currently using version 2.1.1.2 MeetingPlace Express and have noticed that when the meeting notification email is sent out it doesn't give the meeting password, instead it just says Required. The email template has : <td colspan="1"><b>$not

  • EFI on Macbook Air

    Hey gang, I'm trying to get an Arch install up and running on my 2012 Macbook Air. When I boot my install medium (whether it be archboot or the latest official image) I can't get /sys/firmware/efi to show up after I modprobe efivars. Installing on my