You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cool code. good work. not using ssl. any tips?
i upgraded to php 5.6
thank you
code is
include 'Imap.php';
$host = "localhost";
$user= "user";
$pass= "pass";
$port= "143";
$folder = "INBOX";
use \JJG\Imap as Imap;
$mailbox = new Imap($host, $user, $pass, $port, $folder);
$mailbox->getMailboxInfo();`
Fatal error: Class 'JJG\Exception' not found in Imap.php on line 64
also tried
$ssl = "false"; and $ssl = false;
$mailbox = new Imap($host, $user, $pass, $port, $ssl, $folder);
The text was updated successfully, but these errors were encountered:
This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution!
Please read this blog post to see the reasons why I mark issues as stale.
cool code. good work. not using ssl. any tips?
i upgraded to php 5.6
thank you
code is
include 'Imap.php';
$host = "localhost";
$user= "user";
$pass= "pass";
$port= "143";
$folder = "INBOX";
use \JJG\Imap as Imap;
$mailbox = new Imap($host, $user, $pass, $port, $folder);
$mailbox->getMailboxInfo();`
Fatal error: Class 'JJG\Exception' not found in Imap.php on line 64
also tried
$ssl = "false"; and $ssl = false;
$mailbox = new Imap($host, $user, $pass, $port, $ssl, $folder);
The text was updated successfully, but these errors were encountered: