php fsockopen - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:51:39Zhttp://stackoverflow.com/feeds/question/365608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/365608/php-fsockopen3php fsockopendaniels2008-12-13T19:37:16Z2008-12-15T08:35:20Z
<p>I have a simple php script on a server that's using fsockopen to connect to a server.</p>
<pre><code><?php
$fp = fsockopen("smtp.gmail.com", 25, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
echo fgets($fp, 1024);
fclose($fp);
}
?>
</code></pre>
<p>The problem is the the script times out and fails to connect. If i change the port from 25 to 80 for example it works without problems on any host. So the problem seems to be only the port 25 no matter what host i use, i tried a lot of them and all work for port 80 and others but for 25 fails.<br />
Connections are not blocked form firewall as if i telnet from shell it successfully connects to any port on any host.<br />
Any idea what could be the problem as it's really weird? </p>
<p>LE: If i run the same php script from the shell, php scriptname.php it works so only when i run it by http it fails. I have apache with SuPHP so the problem is around here somewhere</p>
http://stackoverflow.com/questions/365608/php-fsockopen/365619#3656192Answer by maxnk for php fsockopenmaxnk2008-12-13T19:50:05Z2008-12-13T19:50:05Z<p>Interesting...
Some firewalls can block specific program's connections to specific ports.
Please check it again, try to stop firewall completely. Also try to stop any anti-spyware.</p>
http://stackoverflow.com/questions/365608/php-fsockopen/366308#3663081Answer by ieure for php fsockopenieure2008-12-14T08:32:07Z2008-12-14T08:32:07Z<p>I've run into some strange issues with PHP's socket handling, too. It ended up being a problem with the system it was running on. Have you tried running your code on a different machine?</p>
http://stackoverflow.com/questions/365608/php-fsockopen/367385#3673852Answer by Zoredache for php fsockopenZoredache2008-12-15T03:08:01Z2008-12-15T03:08:01Z<p>Like <em>maxnk</em> mentioned firewalling is the most likely issue, either on the server, or by your ISP. Port 25 is frequently firewalled as a method to prevent spam.</p>
<p>Just as a quick test, since you mentioned gmail, you might want to try connecting to port 587 instead. Gmail listens for smpt on this alternate port in addition to port 25 to help users bypass overly restrictive firewalls.</p>
http://stackoverflow.com/questions/365608/php-fsockopen/367776#3677761Answer by Ronald Conco for php fsockopenRonald Conco2008-12-15T08:35:20Z2008-12-15T08:35:20Z<p>Hi , I think the connection problem is with your machine. I just copied your code into a script on my machine(linux suse) and ran it with php -f test_script. I got the following message</p>
<blockquote>
<p>220 mx.google.com ESMTP j8sm1814228gvb.0</p>
</blockquote>