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

Paygol does not respond!

bybbzan

mapper
Joined
Aug 4, 2012
Messages
809
Solutions
2
Reaction score
135
Location
Sweden
Hello i got a problem with Paygol.

When the "test mode" was on, it worked fine. I recieved the points etc..
But when i turned on "Enable mode" and send SMS, i did never get any sms back with the code.
What could be wrong?! :huh:

Happy for answers.
 
I think you don't gonna get any code back. You just send the text message and press ok. Don't work?
 
If you are using the official release of Znote AAC there are some small bugs with paygol, you could try the newest paygol_ipn script from private subversion which will be released with Znote AAC 1.4:
Subversion
 
If you are using the official release of Znote AAC there are some small bugs with paygol, you could try the newest paygol_ipn script from private subversion which will be released with Znote AAC 1.4:
Subversion

Okay thanks for that script but i dont understand, where do i add my database details?
Here is the part of my old script. But there isn't in the new one.
XML:
//Replace these parameters by your database details
$dbhost     = "127.0.0.1"; //Your database domain
$dbuser     = "root"; //Database username
$dbpassword = "tester"; //Database password
$db         = "theforgottenserver"; //Database name

is it here?
XML:
	// Since only paygol.com is able to communicate with this script, we will blindly trust them until proven othervise.
	if ($service_id == $paygol['serviceID']) {
		$new_points = (int)$paygol['points'];
		
		$data = user_data($custom, 'name');
		if ($data['name']) {
 
Okay thanks for that script but i dont understand, where do i add my database details?
Here is the part of my old script. But there isn't in the new one.
XML:
//Replace these parameters by your database details
$dbhost     = "127.0.0.1"; //Your database domain
$dbuser     = "root"; //Database username
$dbpassword = "tester"; //Database password
$db         = "theforgottenserver"; //Database name

DamN don't use Root, to unsecure
 
Okay thanks for that script but i dont understand, where do i add my database details?
Here is the part of my old script. But there isn't in the new one.
XML:
//Replace these parameters by your database details
$dbhost     = "127.0.0.1"; //Your database domain
$dbuser     = "root"; //Database username
$dbpassword = "tester"; //Database password
$db         = "theforgottenserver"; //Database name

is it here?
XML:
	// Since only paygol.com is able to communicate with this script, we will blindly trust them until proven othervise.
	if ($service_id == $paygol['serviceID']) {
		$new_points = (int)$paygol['points'];
		
		$data = user_data($custom, 'name');
		if ($data['name']) {

You configure database details in config.php, not the paygol file. The paygol file will load the username and pass from config.
(At the top of the paygol_ipn.php file, it includes /engine/init.php. This file has already established a connection to the database. )
 
Back
Top