Hi, thanks for your time.
On Win 2k IIS 5.0
Php 4.04 using cgi method (is isapi more reliable? Should I upgrade php and use it)
I try to use a web based email program, but the featuers we need are for IMAP only. I tested if imap is loaded using get_loaded_extensions but I can't get imap to work it seems. So I used a test script to see if imap is even working with php:
Below is script to test imap_open:
$username = "xxxx";
$password = "xxxx";
$mailserver = "{mail01.xxx.com:143}/imap";
$link = imap_open("{$mailserver}INBOX",$username,$password);
Below is the error:
Warning: Couldn't open stream {{mail01.bouncenomore.com:143}/imap}INBOX in D:\Webservices\bouncenomore.com\webmail\imap.php on line 8
How do I fix this? How can imap show among the loaded extensions, yet go in the toilet when I need it? lol
Thanks