dezkit Posted December 5, 2009 Share Posted December 5, 2009 i am trying to connect to a gameserver with this code: <?php $open = fsockopen("74.63.192.29", 27015, $errno, $errstr, 30); if($open){ echo "online"; }else{ echo "offline"; } ?> but i keep getting a connection refused error, but when i connect to a website like google it is perfectly fine <?php $open = fsockopen("www.google.com", 80, $errno, $errstr, 30); if($open){ echo "online"; }else{ echo "offline"; } ?> i have spoke to my webhosting company and they said that they did open the port 27015 for me. please help me, thank you. Link to comment https://forums.phpfreaks.com/topic/184105-cant-connect-to-any-gameservers/ Share on other sites More sharing options...
Alex Posted December 5, 2009 Share Posted December 5, 2009 That's because the port isn't open. To check to see if it's actually online to eliminate your code as the problem use a port checker Link to comment https://forums.phpfreaks.com/topic/184105-cant-connect-to-any-gameservers/#findComment-971987 Share on other sites More sharing options...
dezkit Posted December 5, 2009 Author Share Posted December 5, 2009 thank you for the reply, but i have two questions: there are websites that can connect to the gameserver i am trying to connect to, such as http://gametiger.net/search?address=74.63.192.29%3A27015&game=all and how can i succesfuly open port 27015 on my gameserver, do i have to contact the company? Link to comment https://forums.phpfreaks.com/topic/184105-cant-connect-to-any-gameservers/#findComment-971989 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.