I get an error as well - but not quite the same thing. Instead, if I pick POP3 and put anything or nothing in the other fields, I get this error:
------
Fatal error: Call to undefined function: imap_open() in /xxxx/xxxx/xxxx/email.php on line 601
-----
Line 601 is:
if ($opt=="POP3") $mbox = imap_open("{".$host.":110/pop3}".urldecode($folder), $user, $pass);
If I choose IMAP, it comes up with the same error for 602:
elseif ($opt=="IMAP") $mbox = imap_open("{".$host."}".$folder, $user, $pass);
Thanks for any help.
|