$10 paypal for whoever can help me with my printers (2300DL, 2400W)

I'd like one printer to work. In my house I have both a KM2300DL, and a 2400W. I know they do not work out of the box for the mac.
I've done all sorts of research and nothing has worked, one of the workarounds requires PPC macs. Here we have both a 13" Macbook, and a 20" iMac.
I do have a Linksys wireless router.
All help is appreciated.

I can help you with the 2400W at least to a certain extent. For the 2400W you will need to first download and install the Foomatic-RIP and ESP Ghostscript packages from the linuxprinting.org site.
The next step is the actual drivers. I have drivers for this printer compiled for the PPC Mac on my site. You can download them here. These have been reported to work, ableit slowly, on Intel based Macs.
I also have a Universal Binary (native Intel and native PPC) beta set of drivers for the printer. They have not been tested at all. I don't gurantee they will work but you sound like a good candidate for testing them. You can download the Universal Binary beta drivers here.
Please let us know what works for you. If you try the Universal Binary set of drivers and have problems, you can contact me directly at "walterwego at macosx dot com". We can do some troubleshooting. I do want to get the Universal Binary drivers working, but I do need testers as I don't have either the 2300W or the 2400W to fully test the drivers. Hey, that would be a good trade-off for the $10 Paypal account which I wouldn't accept in any event.
EDIT: I just saw your reply about both printers being hooked up to a Windows box. If you want to test the Universal Binary drivers, I would appreciate it if you could first test them with a direct connection between the 2400W and your computer. That is the only way to do a proper test.
Matt
Mac Mini G4; B&W G3/300    
Message was edited by: Matt Broughton

Similar Messages

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • It just doesn't work and help is needed, hence why I'm on a Forum? Brownie points for whoever can help on this one...

    So. As always, it's about iTunes - as Apple is the most inconvenient corporation ever founded. Anyway! I've had this problem for about 6 months and haven't bothered to ask anyone. I've restored the computer numerous times and tried to fix the issue with help from other nonsensical forums. The problem is that 'apple mobile device service' is eating up a large amount of CPU, and therefore tends to make the computer run like a log. I have uninstalled it before but then iTunes won't recognize my iPod - funnily enough. As well as this, iTunes won't connect to the store? However, it doesn't say it's not, it just doesn't load. It states that it is 'accessing iTunes store', but it's not. I'm running all of this on a windows 7 Acer extensa 5235 - just in case that helps. It probably won't, but you guys are clever, right? I mean, I could probably ask you to peel an orange for me, and you'd do it without even physically touching it. Just with the power of your omnipotent minds. Anyway yeah, if anyone can help on this one, would be much appreciated.

    Wow what a rambling mess and complete waste of time.
    Did you try a search of the forums for similar issues?  Doing so would have revealed multiple similar issues with valid troubleshooting, saved you time, and saved those that have read that crap from being subject to your rambling psychosis.
    FYI, in the future, get to the point and cut the crap when asking for help.
    Oh, completely uninstall iTunes and reinstall the current version of iTunes.

  • Playback delay issue. Free beers for whoever can help me!

    Please help me keep my sanity!!
    I have a recorded track that i grabbed from itunes and put it into garage band (The track is a guitar track that I previously recorded)
    I then recorded a vocal track - this worked fine but i wasnt happy with the track so i deleted it
    I re-did the track and this time there was a time delay. each time i add a track or redo a track the delay gets worse
    In short regardless of whether I delete the old tracks or not, the vocal track is in time whilst being recorded and when played back, it has a delay of about1/4 of a second.
    I'm using an Apple Mac, OSX version 10.6.7, 3.06Ghz Intel i3 with 4GB  RAM.
    Recording vocals through a Sure SM58 USB.
    what can i do to stop this?

    Wow what a rambling mess and complete waste of time.
    Did you try a search of the forums for similar issues?  Doing so would have revealed multiple similar issues with valid troubleshooting, saved you time, and saved those that have read that crap from being subject to your rambling psychosis.
    FYI, in the future, get to the point and cut the crap when asking for help.
    Oh, completely uninstall iTunes and reinstall the current version of iTunes.

  • I just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    i just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    Support articles for things like this would be here:
    http://www.apple.com/support/bootcamp

  • As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgra

    I RECIVED AN EMAIL FROM ADOBE AS  :  As good will gesture, we can help you with the upgrade for PSE 13. We would request you to place the order for Adobe Photoshop Elements 13 as an upgrade and then we will provide you the full version serial number for the same product against the new upgrade order"  IS THIS UPGRADE FREE AND WHAT SHOULD I DO, HOW CAN I HAVE THIS UPGRADE?

    Compare with on-line stores. The full version is often cheaper than Adobe's upgrade price.
    See this example from Amazon, but check pricing in your own region.
    http://www.amazon.com/gp/product/B00N4OLCRO/ref=s9_simh_gw_p65_d4_i2?pf_rd_m=ATVPDKIKX0DER &pf_rd_s=desktop-1&pf_rd_r=0F1GED9546928YP3PHC0&pf_rd_t=36701&pf_rd_p=1970559082&pf_rd_i=d esktop

  • Hello, I have this problem on updating applications on my iPhone 4s 5.1.1 i dont know if you can help me with. when ever i want to update an application on apple store i get a different user name then mine(slamdance@cracked.by) this user name is not mine

    Hello,
    I have this problem on updating applications on my iPhone 4s 5.1.1 (jail broken) i dont know if you can help me with.
    when ever i want to update an application on apple store i get a different user name then mine([email protected]) this user name is not mine but its always there only on updating my app's.
    thanking you in advance for your kind help.

    Under the Terms of Use of this forum it is prohibited to discuss jail breaking. By jail breaking your iPhone you void any warranty you may have and forfeit any support from this forum.

  • I want to install xp on my MacBook Pro with i5 processor, but that creates the partition and restart the computer just stays in the following message: The Setup is inspecting your hardware configuration of your computer, someone can help me with this ?

    I want to install xp on my MacBook Pro with i5 processor, but that creates the partition and restart the computer just stays in the following message: The Setup is inspecting your hardware configuration of your computer, someone can help me with this ?

    The answer has not changed since your last post here https://discussions.apple.com/thread/3230576?tstart=0
    There are no XP or Vista drivers for the new Apple computer hardware. Apple stopped XP and Vista support. http://support.apple.com/kb/HT4410.

  • I have 2 problems I hope someone can help me with.

    As the title says, I problems I hope someone can help me with as I don't know who else to ask for this.
    1. I tried to pre-order Dying Light for the Xbox One and during checkout the system cancelled my order saying that the store stock had been spoken for. However, I went in once the game released to the same store and was able to purchase the game no problem so in effect I just missed out on my $10 pre-order certificate.I wanted to pre-order but it wouldn't let me - I have never seen this error before.
    2. I took advantage of the $39.99 12+1 month Xbox Live Gold gift card you had on sale yesterday. Only the Halo one was abailable at my local store so I ordered 2 of those for pickup. I got home and used the cards and it was only for 12 months not 12+1 as it still says on the website here:
    http://www.bestbuy.com/site/searchpage.jsp?st=3878002,+8972116&_dyncharset=UTF-8&id=pcat17071&type=p...
    Is there a way to get the extra month advertized?
    Thank you!
    Solved!
    Go to Solution.

    Hello also_nadrag,
    Thanks for writing in, and thanks too for being a My Best Buy member.  We appreciate your loyalty.  I'll be happy to talk to you about your recent online experiences.
    From the sound of things you may have waited too long to attempt a pre-order for in-store pickup for Dying Light.  As the order was not able to be processed, I'm afraid we will not be issuing the $10 certificate.
    The product description on the Xbox Live Halo card is incorrect in labeling this item as including 1 extra month.  As the image online and packaging indicates, this card has an extra bonus for Halo: The Master Chief Collection.  We have reported the description error and I hope it is corrected soon.  I am sorry for any confusion this may have caused.
    Please visit us any time with questions or concerns.
    Sincerely,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • My iPhone stolen and I download find my iPhone on it also I can sea it online but I can't locate it so please help me .. What should I do . I heard apple support can activate the GBS and send it to my e_mail . So I hope they can help me with that ...

    My iPhone stolen and I download find my iPhone on it also I can sea it online but I can't locate it so please help me .. What should I do . I heard apple support can activate the GBS and send it to my e_mail . So I hope they can help me with that ...
    Best wishes ..
    <Email Edited by Host>

    These are user-to-user forums, I've asked the hosts to remove your email address from your post.
    Apple and/or iTunes support can't locate it for you, only you can potentially locate it via http://icloud.com on a computer or Find My iPhone / Find My iPad on another device - but that will only work if it's connected to a network and the device hasn't already been wiped and/or Find My iPhone disabled on it.
    If it was stolen then you should report it to the police. You should also change your iTunes account password, your email account passwords, and any passwords that you'd stored on websites/emails/notes etc.

  • Hi, i can't see anymore the subtitle when i watching a movie on my iPad, somebody can help me with that ?

    hi, i can't see anymore the subtitle when i watching a movie on my iPad, somebody can help me with that ?

    As has been discussed on these forums thousands of times, Adobe does not make a flash player for iphone/ipad/ipod and likely never will.
    You can do a forum search and find countless posts on this.

  • Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    They probably can do such s thing if they choose to do so.
    Let them know that you would like this:
    http://www.apple.com/feedback
    Not sure this is a very useful thing.  It would run down the battery.  All a thief has to do is remove them SIM and restore the iphone to stop it from being tracked.

  • I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    I need to download ferefox 9.0 but I cannot find it anywhere. Who can help me with this?

    Please note that running out of date versions of Firefox is not recommended, as you will open yourself up to known security issues, alongside bugs and other issues. Is there a specific problem you are having with Firefox that I can help you with?
    You can download Firefox 9 at [http://ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/ ftp://ftp.mozilla.org/pub/firefox/releases/9.0.1/win32/en-US/]

  • Hi. Since I installed the Maverick I can't open anymore the Calendar App as also the App Store. Anyone can help me with that?

    Hi. Since I installed the Maverick I can't open anymore the Calendar App as also the App Store. Anyone can help me with that?
    Thank you in advance

    I have this same problem on my iMac since installing Mavericks. The emails download, I can see who they are from and when they came, but nothing shows up in the message pane. I can see emails I got before I installed Mavericks, although about half of them did disappear. Sure would like to find a fix--perhaps the 10.9.1 update will do it?

  • HT4759 I can't update IOS 4.3 to the new IOS 5. Or download the latest verison of I Tunes, on my IPad 2. Because I don't have a computer,but i heard Apple suport can help me with setting it up.

    I can't update IOS 4.3 to the new IOS 5. Or download the latest verison of I Tunes, on my IPad 2. Because I don't have a computer,but i heard Apple suport can help me with setting it up.

    Scroll down and see the "Update Your Device Using iTunes" section here:
    HT4623
    There is no "update icon" in iOS versions earlier than iOS 5.
    The update is very large (over 1.2 gigabytes).  You need a good internet connection to download it to your computer.  Maybe you'll need to take a trip to a city to get a good enough connection.

Maybe you are looking for

  • How do I transfer huge library of non-iTunes songs from Mac to PC?

    Hello, I have a Macbook with about 5,000 songs on it, all of which are burned from actual hard copies of CDs that I own. Rather than re-burning each CD to my new Windows computer, I would like to see if there's a way to transfer all these songs from

  • No Nano - does not show up in ITunes or MY Computer

    I'm new to the IPOD and have had the Nano 1 week of which I spent 6 days trying to figure out why it wouldn't show up in ITunes. Solution - Eliminated extra drive assignments. I had used all the drive letter assignments from E: up to T: and had to re

  • Call  sms utility with a message text

    I am trying to call sms utility of iPhone . I am passing the phone number as a parameter.It works fine. Alongwith phone number I am trying to pass a text message.The intention is to open the sms window alongwith a phone number and a message.I am not

  • Problems moving from 8.0.4 JDBC to 8i JDBC

    Hi all, we have an application that runs against an 8.0.4 database connecting over the 8.0.4 thin jdbc driver. We ar moving it to 8i and as a 'first cut' I exported the data from 8.0.4 and imported it to 8i without any problems. All the tables and th

  • Can't buy just one month subscription...

    Hello, I'm trying to buy one month subscription to Poland landline but I can't, instead it gives me three month subscription that I don't really need... Anyone know how to make it just for one month? I tried another countries and it shows one month s