• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Help] Gesior Shop issue

Michael Orsino

Premium User
Premium User
Support Team
Joined
Nov 15, 2007
Messages
865
Solutions
10
Reaction score
446
Location
Western Australia
I followed the tutorials etc, as far as I can tell it is all set up correctly. I have also read through the faq/solutions below.
http://otland.net/f137/faq-daopay-solutions-29245/

I get the following error

Errors occured:
* Server has problem with connection to daopay.com, can't verify PIN code.

Warning: fopen(https://daopay.com/svc/pincheck?appcode=50907&prodcode=1&pin=fdsf4) [function.fopen]: failed to open stream: Result too large in C:\Documents and Settings\Luke\Desktop\xampplite\htdocs\buypoints.php on line 58

Any help is greatly appreciated
-Michael

Code:
function check_code_daopay($appcode, $prodcode, $pin)
{
	[B]$handle = fopen("https://daopay.com/svc/pincheck?appcode=".$appcode."&prodcode=".$prodcode."&pin=".$pin, 'r');[/B]  
	if ($handle)
	{
	    $status = fgets($handle, 128);
		fclose($handle);
		if($status[0] == 'o' && $status[1] == 'k')
			$return = 1;
		else
			$return = 2;
	}
	else
		$return = 3;
	return $return;
}
Line 58 is bold.
 
Code:
function check_code_daopay($appcode, $prodcode, $pin)
{
	$handle = fopen("http://daopay.com/svc/pincheck?appcode=".$appcode."&prodcode=".$prodcode."&pin=".$pin, "r");  
	if ($handle)
	{
	    $status = fgets($handle, 128);
		fclose($handle);
		if($status[0] == 'o' && $status[1] == 'k')
			$return = 1;
		else
			$return = 2;
	}
	else
		$return = 3;
	return $return;
}
 
Back
Top