• 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!

Windows Server has problem with connection to daopay.com, can't verify PIN code.

andre66

Banned User
Joined
Oct 27, 2008
Messages
295
Reaction score
0
Hello got this error on daopay

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

i use buypoints.php made by Geisor

:Warning: fopen(http://DaoPay.com/svc/PINcheck?appcode=48973&subkey=6527&pin=******) [function.fopen]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in C:\xampp\htdocs\buypoints.php on line 43

line 43 is


:$handle = fopen("http://DaoPay.com/svc/PINcheck?appcode=".$appcode."&subkey=".$prodcode."&pin=".$pin, 'r');
if ($handle)


Does this shop need some ports open? does daopay need some ports?


//Vicke
 
change line 43 to this:

Code:
    $handle = fopen("https://daopay.com/svc/pincheck?appcode=".$appcode."&prodcode=".$prodcode."&pin=".$pin, 'r');
 
Back
Top