hitman81 Posted January 8, 2010 Posted January 8, 2010 There is a problem with IMAP PHP EXTENSION. If i try to execute a simple script with imap_open() function, i obtain Warning: imap_open() [function.imap-open]: Couldn't open stream {imap.aol.com:993/imap/ssl}INBOX in /home/hitman/public_html/index.php on line 2 can't connect: Can't connect to open.gopen.imap.aol.com,993: Connection timed out i think that surely it's a problem of server configuration. I hope that server administrator can solve this problem soon. P.S. I'm talking about a FREE HelioHosting
hitman81 Posted January 10, 2010 Author Posted January 10, 2010 Ehy...someone can explane me this problem? Why none Helios Administrator can explane me this situation? Are you all sleeping?
Byron Posted January 10, 2010 Posted January 10, 2010 This support request is being escalated to our root admin.
Ashoat Posted January 10, 2010 Posted January 10, 2010 It's looking like AOL is blocking our servers, which isn't surprising because they have blacklisted us.
hitman81 Posted January 10, 2010 Author Posted January 10, 2010 It's looking like AOL is blocking our servers, which isn't surprising because they have blacklisted us. I tried also with a gmail account... same problem :-(
Ashoat Posted January 10, 2010 Posted January 10, 2010 Did you enable IMAP on your Gmail account? Also, make sure you're addressing the right port and using the right authentication - Gmail is very picky.
hitman81 Posted January 11, 2010 Author Posted January 11, 2010 Did you enable IMAP on your Gmail account? Also, make sure you're addressing the right port and using the right authentication - Gmail is very picky. Sure, i'm not a newbie. Are you a server administrator? Did you try to use imap php extension ? The problem is on helios server configuration.
Ashoat Posted January 11, 2010 Posted January 11, 2010 Post your PHP code snippet that you use to connect to Gmail.
hitman81 Posted January 11, 2010 Author Posted January 11, 2010 Post your PHP code snippet that you use to connect to Gmail. Here the code, is very very simple: <?php $mbox = imap_open ('{imap.aol.com:993/imap/ssl}INBOX', 'user', 'pass' ) or die("can't connect: " . imap_last_error()); print_r($mbox); ?> or (for gmail account) <?php $mbox = imap_open ('{imap.gmail.com:993/imap/ssl}INBOX', 'user', 'pass' ) or die("can't connect: " . imap_last_error()); print_r($mbox); ?>
hitman81 Posted January 12, 2010 Author Posted January 12, 2010 Okay, try again now. Perfect man ! YOU ARE THE BEST Good job
Recommended Posts