I am working on a php file that connects to my game server and executes a command. The users enter their username on a HTML form that sends them and the username to a php file that connects to the server. The port is forwarded and the server is ready to receive the info, but I keep getting this error:

Warning: socket_connect() [function.socket-connect]: unable to connect [110]: Connection timed out in /home/moocraft/public_html/test/vote.php on line 8 error: could not connect to host

Here is the HTML file:

<html>
<body>

<form action="vote.php" method="post">
Minecraft Username: <input type="text" name="fname" />
<input type="submit" />
</form>

</body>
</html> 

Here is the PHP file:

<?php
 $HOST = "207.210.254.141"; //the ip of the bukkit server
 $password = "examplepassword1";
 $player = $_POST["fname"];
 //Can't touch this:
 $sock = socket_create(AF_INET, SOCK_STREAM, 0)
 or die("error: could not create socket\n");
 $succ = socket_connect($sock, $HOST, 4445) 
 or die("error: could not connect to host\n");
 //Authentification
 socket_write($sock, $command = md5($password)."<Password>", strlen($command) + 1)
 or die("error: failed to write to socket\n");
 //Begin custom code here.
 socket_write($sock, $command = "/Command/ExecuteConsoleCommand:give $player 264 5;", strlen($command) + 1) //Writing text/command we want to send to the server
 or die("error: failed to write to socket\n");
 socket_write($sock, $command = "$player voted for MOOcraft and earned 5 diamonds. Vote at moocraft.org;", strlen($command) + 1)
 or die("error: failed to write to socket\n");
 ?>

I can't figure out why I keep getting this. Any help is greatly appreciated.

link|improve this question
2  
from the command line, can you telnet 207.210.254.141 4445? This is a good easy test of whether your port forward is working. If this also cannot connect, it suggests a firewall is blocking it or the port is not forwarded correctly. – DaveRandom Dec 10 '11 at 8:48
I'm guessing firewall rule on your system is restricting you. – Tim G Dec 10 '11 at 8:49
also, if you use fsockopen() you can achieve the same thing but your code will be more portable - the sockets extension is not available everywhere. – DaveRandom Dec 10 '11 at 8:49
make sure you have the port number correct. does this work on a different server? do you have xampp/wamp/mamp on a localhost where you could test? – Tim G Dec 10 '11 at 8:51
FYI, I was able to use that telnet command from my mac to connect successfully. – Tim G Dec 10 '11 at 8:54
show 5 more comments
feedback

1 Answer

Try something simple like:

$fp = fsockopen("207.210.254.141", 4445, $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)
\n"; } else { $out = "GET / HTTP/1.1\r\n"; $out .= "Host: 207.210.254.141\r\n"; $out .= "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); }

And see what do you get, it might be due to the reason that your server is taking too long to respond

link|improve this answer
Still got the connection timed out – MOOcow102 Dec 12 '11 at 1:23
Try using some other host, like google.com and see if you can get something without error... – Sudhir Dec 12 '11 at 1:24
It took me to google with the logo gone and a bunch of nonsense on the top of the page. – MOOcow102 Dec 12 '11 at 1:27
then there must be some problem with 207.210.254.141 itself.. – Sudhir Dec 12 '11 at 1:29
What could it be? – MOOcow102 Dec 12 '11 at 1:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.