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
Some emails are successfully processed and the array is populated as expected, but most are failing. With error reporting turned on I get the following output (original file path has been removed):
PHP Fatal error: Cannot use string offset as an array in ....../bounce_driver.class.php on line 595
I'm not knowledgeable enough to debug/fix this. Any ideas?
Thanks,
Colin
The text was updated successfully, but these errors were encountered:
If you are using same version as me then line 595 should be:
$stat = $ret['code'][0];
/*It seems to happen with certain invalid email address. I had fixed this by adding following code before line 595*/if (!is_array($ret)) {
return$ret;
}
Some emails are successfully processed and the array is populated as expected, but most are failing. With error reporting turned on I get the following output (original file path has been removed):
PHP Fatal error: Cannot use string offset as an array in ....../bounce_driver.class.php on line 595
I'm not knowledgeable enough to debug/fix this. Any ideas?
Thanks,
Colin
The text was updated successfully, but these errors were encountered: