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

Dao pay system error.

Swij

Active Member
Joined
Mar 2, 2009
Messages
120
Reaction score
40
Location
Sweden, Jönköping
Ive got a few error's in my Daopay system :p, first of all i want to ask where i can download the newest Daopay system for Geisor because i don't know if mine is up to date. now to the errors.

the problem is that when im trying to use a Pin code that ive bought i'm getting this message:
Code:
Warning: fopen(https://daopay.com/svc/pincheck?appcode=50093&prodcode=2points&pin=noyn9oluto) [function.fopen]: failed to open stream: Result too large in C:\xampp\htdocs\buypoints.php on line 73
But when im entering the page im getting to a page that says "ok" only just a white page, so is it DAOPAY or a script thats wrong? portforwarding?


Line 73:
PHP:
function check_code_daopay($appcode, $prodcode, $pin)
{
// line 73 -->	$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;
 
Last edited:
@ above, What do you mean?!

And i need a link to the latest Daopay/Paypal script for geisor's acc. maker.

an what files are the Shop files more than shopsystem.php and buypoints.php

so please! REP++ to the one who actually helps me.
 
Okay! REP++ to you! but one problem :p,
I dont think i'm going to be able to configure it the right way without some tutorial or some screens of what to type where, and i would love a guide how to connect paypal with Daopay too, but that's not so important!

Ive got a great idea! Why dont you upload your working Daopal system, buypoints.php. YES I MEAN YOU! REP++ for everyone that helps.
 
Last edited:
Ive got a few error's in my Daopay system :p, first of all i want to ask where i can download the newest Daopay system for Geisor because i don't know if mine is up to date. now to the errors.

the problem is that when im trying to use a Pin code that ive bought i'm getting this message:
Code:
Warning: fopen(https://daopay.com/svc/pincheck?appcode=50093&prodcode=2points&pin=noyn9oluto) [function.fopen]: failed to open stream: Result too large in C:\xampp\htdocs\buypoints.php on line 73
But when im entering the page im getting to a page that says "ok" only just a white page, so is it DAOPAY or a script thats wrong? portforwarding?


Line 73:
PHP:
function check_code_daopay($appcode, $prodcode, $pin)
{
// line 73 -->	$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;


Open up your "php.ini" (xampp/php/php.ini)
Search for: memory_limit (Line 246)
Then replace:
Code:
memory_limit = 32M

With
Code:
memory_limit = 64M

Then restart/reload your apache server, and it should work.
 
Back
Top