php fsockopen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:51:39Z http://stackoverflow.com/feeds/question/365608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/365608/php-fsockopen 3 php fsockopen daniels 2008-12-13T19:37:16Z 2008-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>&lt;?php $fp = fsockopen("smtp.gmail.com", 25, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)&lt;br /&gt;\n"; } else { echo fgets($fp, 1024); fclose($fp); } ?&gt; </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#365619 2 Answer by maxnk for php fsockopen maxnk 2008-12-13T19:50:05Z 2008-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#366308 1 Answer by ieure for php fsockopen ieure 2008-12-14T08:32:07Z 2008-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#367385 2 Answer by Zoredache for php fsockopen Zoredache 2008-12-15T03:08:01Z 2008-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#367776 1 Answer by Ronald Conco for php fsockopen Ronald Conco 2008-12-15T08:35:20Z 2008-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>