pop3.so -- can someone hook me up?

Discussion in 'PHP' started by HN Will, Nov 13, 2005.

  1. #1
    Hey all -

    http://pecl.php.net/package/POP3

    I've got this package working fine on my windows box at home -- but I need to run an app i've developed on a shared hosting site (unix) that of course doesn't have it in their ext folder.

    can someone hook me up with the pop3.so file or tell me how I could obtain it from a windows machine?

    thanks in advance,

    ~HN Will
     
    HN Will, Nov 13, 2005 IP
  2. dataman

    dataman Peon

    Messages:
    94
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can't take from a windows box your host has to configure their install with pop3 support. Contact your host, or check if IMAP is installed and change your code to use that instead. It would not be very difficult to do this. If you only have IMAP post your code and I will show how to convert to use IMAP functions as many hosts don't install the pop3 extention because it's not really needed when IMAP is configured in the make install!

    jb
     
    dataman, Nov 13, 2005 IP
  3. HN Will

    HN Will Guest

    Messages:
    111
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #3
    yeah - i first played around with php's imap functions but it wouldn't let me connect to a gmail account

    $mbox = imap_open ("{pop.gmail.com:995/pop3/ssl}INBOX", "user_id", "password");

    this should work but I wasn't able to get it to.

    however, with the pop3 ext. it worked no problem...

    any thoughts?
     
    HN Will, Nov 13, 2005 IP