Author |
|
AIWEB Groupie
Joined: 19 October 2010 Location: United States
Online Status: Offline Posts: 54
|
Posted: 19 October 2010 at 9:30pm | IP Logged
|
|
|
I have tried everything it seems.. I get this error. I know creds and everything are right.
Email comes in great - I used to get a connection error so I fixed my ports and checked SMTP Auth
option..
Can't possibly think of what it is.
Has to be a scripting error?? Fgets is a php function I know...
Help would be great - talk nerdy to me, I know my way around with PHP, Ajax and more plenty well so
let's dig this up!
I only saw one other post on this particular error and it was unresolved.
I ran the following script with success on my server as well:
<?
error_reporting(E_ALL);
ini_set('display_errors', 1);
$host = 'smtpout.secureserver.net';
$port = 80;
$timeout = 10;
$errno = 0;
$errstr = '';
echo 'connect to '.$host.':'.$port.' - ';
if (fsockopen($host, $port, $errno, $errstr, $timeout))
{
echo 'Ok';
if (strlen($errstr) > 0)
{
echo ' - '.$errstr;
}
}
else
{
if (strlen($errstr) < 1)
{
$errstr = 'Unknown error';
}
echo $errstr.' (code: '.$errno.')';
}
?>
Here is what the error repeats as:
[19/10/2010][16:37:21.404] INFORMATION:
> [POST(1)] /webmail/processing.php
> ver.0.0.0 [SERVER-IP:173.201.83.156][USER-IP:173.28.192.101]
> PHP-5.2.14, Apache
[16:37:21.406] [SMTP] Error: IsSuccess fgets error
|
Back to Top |
|
|
AIWEB Groupie
Joined: 19 October 2010 Location: United States
Online Status: Offline Posts: 54
|
Posted: 21 October 2010 at 12:44pm | IP Logged
|
|
|
Nobody? Not even some ideas?
It's like this for every email I try and use (Godaddy Hosted, Gmail, Yahoo)
|
Back to Top |
|
|