Unable to print after migration - printer proxy crashes

I Recently migrated to an iMac and every time I try to print or open the print queue in System Preferences, the Printer Proxy quits unexpectedly.
Anyone have any solutions?
thanks!

I suggest to run the Reset printing system function.
*How to Reset the Printing System*
1. Open System Preferences > Print & Fax
2. Move your mouse over the Printers list
3. Hold down the Control button and click the mouse (or right click if supported).
4. Click "Reset printing system ..."
5. Restart your Mac
This will remove your printer queue/s but not your printers drivers so you can add your printer queue/s again without having to install the driver.
Note that it is also possible to reset the printing system via Terminal via the following commmands.
sudo cp /etc/cups/cupsd.conf /etc/cups/cupsd.conf.old
sudo cp /etc/cups/cupsd.conf.default /etc/cups/cupsd.conf

Similar Messages

  • P3005 error message PCL XL error IllegalMediaSource extra sheet printed after every print job

    We have a networked P3005 with a stepped back PCL5e driver working for three Word 2003 people and one Word 2007 person. Out of the blue the Word 2007 person began getting an extra sheet of paper after every print job with the error message PCL XL error  Warning: IllegalMediaSource. We had gotten a version of this error before, which is why I stepped back the driver to PCL5e.
    Anyone have any thoughts? Please??

    I have not had any problems since I read a post from someone to turn the printer off unplug the power cord from it and wait a little bit.  Plugged it back in, turned it on and it has been working.   I am using Vista 32 bit.  I'm not sure this is what you are wanting on the driver.  I found this  HPC14106 .GPD    3.25.2010
    Thanks

  • PP Breakdown Notification Print After Viewing Print Preview

    Hi All,
             I am creating Breakdown Notification from IW21 and want to  take its printout  from  IW22 After looking its Preview .But  when we go  for  Print preview the Print  Button is Deactivated .When I go  for Print in the Pop-up I can select the Print ,Then i can take the printout i.e before seeing the Preview.
    So  hope  I am clear in Question , I want the Print should  activated in the Preview Screen..
    Someone suggest  of how  to  about it .
    Regards,
    Sriram

    Hi ,
    I am having SAP_ALL Authorization,So that would not be the problem ..
    Can u suggest some other solution .............
    Regards,
    Sriram

  • Unable to print after migration assistant use MacBook to iMac

    I recently used Migration assistant to move my MacBook to my Imac and now cannot print to my HP printer

    Have you gone to system preferences > Printers- can you see the printer ? . If selected check the various settings etc if all ok then delete the printer and just re-install the software this should fix problem.

  • Problem with printing after migrating from 3.5 to 4.1

    Hello everyone,
    I'm currently working on an application that was recently migrated (by someone else) from Flex 3.5 to Flex 4.1 and I discovered the printing doesn't work properly anymore. So I tried to find out what the problem was and after many tries, I came to the conclusion that the problem was within the following line:
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    (Of course "myPrintView" is not the real name used in the app but that's not important)
    I searched on the Internet and this line is supposed to work in 4.1, isn't it? However, the printed version cuts my PrintAdvancedDataGrid approximately in half. I tried to change the width property from myPrintView but the grid is still cut at the same place, its cells are just distorted.
    FYI, you can find a part of the code right here:
    var printJob:FlexPrintJob = new FlexPrintJob();
                        if (printJob.start()) {
         //A lot of code to build the print view
    myPrintView.width=1280;
    printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
    printJob.send();
    myPanel.removeChild(myPrintView);
    Any help would be appreciated.
    Regards,
    Gudril

    While looking for a solution on the Internet I found some people having troubles because of the structure of their AdvancedDataGrid. My problem doesn't come from any example I've seen but maybe it's still linked to that, so here's an AdvancedDataGrid that's being printed in my app:
                                                    <mx:PrintAdvancedDataGrid dataProvider="{dataRayon}" sortExpertMode="true" id="dataGridRayon" width="100%" itemClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" itemDoubleClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" creationComplete="resizeGridRayon();" >
                                                      <mx:columns>
                                                                <mx:AdvancedDataGridColumn id="rownumRayon"  width="25"  sortable="false" labelFunction="getRowNumRayon" fontWeight="bold"/>
                                                                <mx:AdvancedDataGridColumn id="rayonCoRgrp" textAlign="center" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'CODE')}" dataField="co_rgrp_produits" />
                                                                <mx:AdvancedDataGridColumn textAlign="left" width="240" headerText="{resourceManager.getString('rentabilitePanel', 'SOUS_SECTEURS')}" dataField="libelle" id="hTDataGridRayon" />
                                                                <mx:AdvancedDataGridColumn id="rayonMeVenteHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MONTANT_VENTE_HT')}" dataField="meVenteHt" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'meVenteHt');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAvtDem" textAlign="right" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_AVT_DEM')}" dataField="margeAvtDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAvtDem" textAlign="right" width="80" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_AVT_DEM')}" dataField="margeAvtDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDemP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonDemarqueHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'DEMARQUE_HT')}" dataField="demarque" formatter="{currencyFormatterFloat1Dec}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarque');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPDemarqueHt" textAlign="right" width="85" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_DEMARQUE_HT')}" dataField="demarqueP"  formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarqueP');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonMargeAprDem" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_APR_DEM')}" dataField="margeAprDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDem');}}"  />
                                                                <mx:AdvancedDataGridColumn id="rayonPMargeAprDem" textAlign="right" width="115" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_APR_DEM')}" dataField="margeAprDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDemP');}}"  />
                                                      </mx:columns>
                                            </mx:PrintAdvancedDataGrid>
    I also realised I wasn't very clear on the outcome of my doPrint() function. When I said the grid was cut in half, I was talking about half the columns not showing on the printed version, not half the rows. Actually even a column being cut in half. I hope these precisions made my problem a bit clearer and somebody will be able to help me in any way (even just hints).
    Thanks for your help.
    Regards,
    Gudril

  • Printing after Migration from Windows to Linux

    We have just migrated 11.5.2 from Windows to Linux. I am not sure how to setup printers. In windows we simply had a UNC pointing to our Windows Printer Server and the Printers Queue. This was in the Printer Column and the Type was HPLJ4SI in the Type column under Install > Printer > Register....like this:
    \\MYCOPRT03\PTS2245
    Not sure what to put in linux. Currently we are getting this error:
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 7457024
    Number of copies : 1
    Printer : \\MYCOPRT03\PTS2245
    /bin/sh: print: command not found
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 127
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 127.
    Action: Review your concurrent request log file for more detailed information.

    Chris,
    It appears that these links are not savable.You need to refer to the docs in those threads for the steps you have to follow to setup a printer on Linux/Unix.
    How to Setup Printer for Oracle Applications 10.7 - 11.5.x Quick Reference [ID 123140.1]
    How to Test an Initialization String Outside of Oracle Applications [ID 106186.1]
    How to setup Printer Arguments Within Oracle Applications [ID 73804.1]
    Oracle Applications Character Printing [ID 112172.1]
    lp: The printer or class was not found.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1As applmgr, source the application env file and issue "which lp" and make sure it is accessible by the OS user. If the command is available, then it is something with your printer definition -- Issue "system-config-printer" from the command prompt to launch the Printer Configuration Tool and configure your printer at the OS level.
    Thanks,
    Hussein

  • Unable To Sync After Migrating From Win XP(32 bit) to Win 7(64bit)

    I received a new PC, dual core platform, for XMAS.  However, I received a Com 1 port failure when performing a Hot Synch to upload my PD(,M500) data to Palm Desktop on the new PC.  Palm tech support said there is no USB driver available for the 64 bit OS.  Does anyone have a 3rd party USB driver, or any other suggestions to allow me to do a Hot Synch on my new PC.
    Thx,
    Ed
    Post relates to: Palm m500

    Originally Posted by mystico2
    Hello, i just migrated from windows xp 32 bit because my hd crashed, and installed a new 1 tb hd, with win 7 64 bit, i installed my sb audigy 2 zs sound card, and everything works great, videos, music etc, i have my 5.1 working fine, but if i use flightsim fs2004, the only game i use, the sound doesnt work, it does strange thinks like sound inside the cockpit but no outside and viceversa in some planes, ..it only works fine in my 2 channel default old sound card, i downloaded the drivers that in creative page say are for win 7, but the same happened...
    any help?
    Try to use Windows XP SP2/3 compatibility mode first, see if it works for you. And use Alchemy for the Audigy 2 ZS, FS2004 is making use of Directsound after all. Read the guide for using Alchemy here and here. Download Creative Alchemy here.
    Hope it works for you!

  • Reports attachement pdf printing after report printing

    Oracle : 9.2.0.6
    forms 6.0.8 reports
    os : linux :
    I have a peculear requirement for the inhouse application.
    I generate a standard Purchase order report with normal requirements using d2k reports. This report is being printed as soon as the transaction commits and goes to the printer.
    The Purchase order comes in 2 pages dependsing on the items and terms and conditions.
    I have a standard Pdf doc comp_prof.pdf (which changes regular intervals conists of various comp. info and not related any database activity).
    Currently this information is being printed manually after the Purchaae order is being printed.
    I tried to incorporated in after report trigger. I was not succesful.
    Pl. help what are the various options I have to solve this.
    If I convert a PO to mail this doc also should go.

    the pdf need to print is not from oracle d2k report. That is pdf is a particular location. The pdf is not getting generated form oracle or any d2k component.
    It is a standard any pdf doc consists of 3 page information.

  • Boxes are not printing after taking print out

    Dear All,
    i have developed a script ,which contains some rows and columns.To display rows and columns i have used BOX command.In print preview all boxes are coming properly,but if i take Print out(Even in PDF view also) some boxes are not printing.What would be the problem here?
    with regards
    Naresh

    Hi friend,
    There must be some problem in printer settings
    or
    Try reducing the size of the box and see because of the size also printer may avoid the boxes.
    Just try these both i think either one of the both must be a problem.
    Still did not get the desired output please revert back to me. I will help you.
    Thanks,
    Sri Hari

  • ITunes Unable to Run After Migration to New PC Using Laplink PCMover

    A few days ago, I used Laplink PCMover to migrate my programs from my old Dell to my new one (both running Windows XP Pro).
    Unfortunately, PCMover does not correctly move iTunes (but is was very successful at moving everything else).
    So I uninstalled iTunes on the new computer and deleted all my music files (I can transfer them later using my external hard drive). Then I re-downloaded iTunes from the website, installed it, and it STILL won't run. I repeated the process just to make sure, and it still won't run. The standard error box pops up: "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience."
    I suspect there is some license issue or maybe a registration issue. Or something! It's so frustrating.
    My iPod has never been attached to the new computer.
    I contacted PCMover, who said to undo the migration, uninstall iTunes on old computer, and then run the mirgration again (which takes hours and which restores new computer to "its original state" which, after four days, means I may lose a lot of new material).
    Would appreciate any help you can give me.
    Thanks!
    Felicia

    You're dealing with a lot of registry issues and the like, more than likely. It's never a good idea to transfer installed programs from one computer to another. Those programs do more harm than good, in my opinion. I'd backup anything new you've done and resinstall Windows. It may be a pain, but add your programs manually. It's more healthy.

  • Canon IRC 3200--cannot print after adding printer to Mac 10.5.4

    I have searched and read all the relevant topics but still I have problem printing to the irc3200. I have a Mac (Leopard) with Parallels (running Windows XP.) I installed PCL5e on the Window side and can print with no problem. On the Mac side, I initially used the "Appletalk" to install and can print, but as some of you know, using the Appletalk limits the "print menu" that you can see on the Mac. So I deleted the Appletalk printers, installed the Canon PS 1.81 driver and added the printer with queue name LP. I added the printer successfully, was able to see the "Special features" tab, but every time I print, it will say "Printer in use. Waiting for Print job to finish" and the job will just sit in queue forever. I then added the printer again with queue name "Direct" but the same message occurs when I try to print.
    I would very much appreciate any advice. Thank you.

    If you used the More Printers > Canon IP (PS) option to add the printer queue, then this will use LPR/LPD protocol. With the error you are getting, you may find that the LPD service has been disabled on the copier. Note that Windows will default to Port 9100 (RAW) for its protocol, so that explains why that would work.
    You can open the Remote UI page for the iRC3220 by typing its ip address into your web browser. With the home page open, select the Additional Functions tab. You may be prompted for the iRC3200 system administrator ID and password. Enter this if you know it or contact your IT if you don't.
    When the Additional Functions options appear, select Custom Settings. On the right hand pane, under Network Settings select LPD Settings. Ensure 'Use LPD' is enabled. If it isn't, check it then OK the change. You will have to restart the machine for the service to start working.
    The other thing to check is that the imagePASS print controller option is not fitted to the iRC3200. This is a white rectangular metal box that would be hanging on the back of the copier. If you have this, you will not see all the options I mentioned above. Instead you will see the home page for the imagePASS (probably the C1). If you have the imagePASS, then you cannot use the Canon PS driver. You will need to use the PS driver for the imagePASS-C1.
    HTH
    PaHu

  • Error opening printer after one print.

    I just installed Elements 12. I have been using Elements for at least 10 years. When I printed my first picture every thing went as planned, but when I tried to print the second picture I got the following, "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened the document". If I cancel Elements 12, and restart the program I can print just one picture, and then I get the same message. I have seen this question on before, but without answers. The error says you should select a printer, but how do you do that?

    when Photoshop starts acting up it's always a good idea to reset your preferences
    http://forums.adobe.com/thread/375776?tstart=0

  • Unable to send after migration

    I have successfully migrated over 100 mailboxes from Ex2007 to Ex2013 with no issues.  I have one mailbox giving me a tonne of grief.  After the migration from 2007 to 2013 the wizard did report the migration completed successfully. 
    However, when the user opens the inbox using her Outlook 2007 client she is able to compose and send emails.  Any recipients of her emails are not able to reply to them.  Same goes with any emails this user receives, she is not able to reply to them.

    In the EAC under the Migration option I chose the option to "Move to a different database".  The typical NEXT, NEXT, NEXT, FINISH using the GUI.  The migration completed and I received an email saying "Migration batch has completed successfully".
    When the user replies to a message in Outlook, the Outlook client comes up with a popup message that says "Microsoft Office Outlook.  The operation failed."
    When someone replies to a message that was sent to them by this user, they receive a NDR as follows:
    EX2013.my.domain.ca
    Remote Server returned '554 5.2.0 STOREDRV.Deliver.Exception:StoragePermanentException.MapiExceptionMaxObjsExceeded; Failed to process message due to a permanent exception with message Cannot set search criteria in SearchFolder. Try using fewer keywords at
    the same time, reducing the number of users in the From, To, Cc, and Bcc fields, and reducing the number of mailboxes that are searched at the same time. 16.55847:99000000, 17.43559:00000000E0000000000000000000000000000000, 20.52176:000F07832200103100000000,
    20.50032:000F07839217000000000000, 255.23226:000F0783, 255.27962:30000000, 255.17082:E7040000, 0.27745:80030400, 4.21921:E7040000, 255.27962:FA000000, 255.1494:80030400, 4.65308:E7040000, 1.63016:30000000, 4.39640:E7040000, 5.10786:0000000031352E30302E303737352E3031303A4252413131353545583033000000000000,
    255.1750:35354558, 0.26849:05060480, 255.21817:E7040000, 0.30353:05060480, 4.19089:E7040000, 0.18065:05060480, 4.26257:E7040000 [Stage: OnPromotedEvent][Agent: Conversations Processing Agent]'

  • IChat AV: Unable to chat after migrating to new computer

    Hi all,
    I used Carbon Copy Cloner to migrate my entire drive to a new computer while my wife uses my Powerbook on a job out of town. Everything seems to be working fine--except that while we can chat with other folks, we cannot chat with each other. We really want this to work, so that our four year old daughter can see her mom. Can anyone suggest why this is happening?
    We have both trashed all four iChat prefs and recreated our AIM accounts. I have even created a new MobileMe account. Our computers recognize each other, we can invite each other chat, we can accept the invitation, but then we always get the "communication error" message.
    Again, as I say, we both can chat with others, so this does not seem to be a port or iSight problem. I would guess it's something deeper in the OS that prevents the computers from talking to each other because they think they are each other. I couldn't find anything to change in Accounts in System Prefs. But what do I know?
    Any advice?
    Thanks.

    Ray,
    A huge thank you! Immediate success!
    Frankly, also a big thumbs down to the Apple engineers who never considered this issue or posted a helpful hint about it. Could it be that hard to consider this situation? Perhaps so. Still, what a simple fix--yet one I would never have thought of. Why should "sharing" issues prevent iChat functioning? How would I know, being kept in the dark by Apple? There is, I'm sure, a clear answer if Apple would treat us like adults. But since they want to avoid that (it's like politics), we're dependent on the kindness of strangers. Thank you, Ray, for being my kind stranger today. Watching my wife and daughter laugh together on iChat was an experience beyond the power of my words to convey.
    Bowing,
    Franz

  • How do I use air print, after updating to 7.0 on iPad am unable to print. Pretty fed up with apples tricks

    Unable to print to hp printer AirPrint after update to 7.0. 7.1

    AirPrint Setup and Troubleshooting
    http://www.apple.com/support/ipad/assistant/airprint/
    How to print from your new iPad using AirPrint
    http://www.imore.com/print-ipad-airprint
    AirPrint Basics
    http://support.apple.com/kb/ht4356
    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

Maybe you are looking for