• 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, When check pincode!

Maybe show us line 48?

Didn't saw, but here it is:

function check_code_daopay($appcode, $prodcode, $pin)
{
$handle = fopen("https://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;
}




I'm VERY thankfull if someone helps me, and will rep+ you.

/Waller
 
Didn't saw, but here it is:

function check_code_daopay($appcode, $prodcode, $pin)
{
$handle = fopen("https://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;
}




I'm VERY thankfull if someone helps me, and will rep+ you.

/Waller


Sorry for double post, But this is line 48.
$handle = fopen("https://daopay.com/svc/pincheck?appcode=".$appcode."&prodcode=".$prodcode ."&pin=".$pin, 'r');

Very very thankfull if someone helps me!
 
Well, the error message is right. You run out of memory to hold the resources that you need to make a file buffer out of it. I would suggest to increase the limit in php.ini and restart your web server.
 
Well, the error message is right. You run out of memory to hold the resources that you need to make a file buffer out of it. I would suggest to increase the limit in php.ini and restart your web server.

Finally someone that awnser my posts ;p
Well, thanks. I will try this:p
 
Back
Top