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

Solved Donation problem (Paygol)

killing

Member
Joined
Feb 23, 2012
Messages
815
Reaction score
11
Location
BIH
Hello all
I decided today to set up Paygol and i have done it.
Im registered on Paygol.
I have followd Steps from here
Paygol automatic sms payments in Tibia
And my PROBLEMMMMMM is this :$
Please take a look at this
https://i.imgur.com/YM7Lv0u.png
I have put on paypal this
10 Points - €1
20 - €5
25 - €6
30 - €10
40 - €15
50 - €23
100 - €40
1000 - €80
On layout other story
5 EUR~ for 25 points
Im using Znote AAC
Thanks For Reading!
Rep++ Who Helps!:p:cool:;):D
 
Last edited:
I really dont know how to solve this to be honest but a tip people wont buy forexample - 20 - 25 - 30 - 40 - 50, Points Since you can donate 10 times on the first one to get 100 points You should fix that best regards Senz
 
I really dont know how to solve this to be honest but a tip people wont buy forexample - 20 - 25 - 30 - 40 - 50, Points Since you can donate 10 times on the first one to get 100 points You should fix that best regards Senz

i know that was just a TEST!
to see if it well works but it didn't so i ask for help on Support board

This is How i would like it to be
cOdIjEB.png

But its not working so
if anyone can help me REP++
 
You just need to import the new paygol form you made on the paygol website.

PHP:
<form name="pg_frm" method="post" action="http://www.paygol.com/micropayment/paynow" >
	<input type="hidden" name="pg_serviceid" value="<?php echo $paygol['serviceID']; ?>">
	<input type="hidden" name="pg_currency" value="<?php echo $paygol['currency']; ?>">
	<input type="hidden" name="pg_name" value="<?php echo $paygol['name']; ?>">
	<input type="hidden" name="pg_custom" value="<?php echo $session_user_id; ?>">
	<input type="hidden" name="pg_price" value="<?php echo $paygol['price']; ?>">
	<input type="hidden" name="pg_return_url" value="<?php echo $paygol['returnURL']; ?>">
	<input type="hidden" name="pg_cancel_url" value="<?php echo $paygol['cancelURL']; ?>">
	<input type="hidden" name="pg_notify" value="<?php echo $paygol['ipnURL']; ?>">
	<input type="image" name="pg_button" src="http://www.paygol.com/micropayment/img/buttons/150/black_en_pbm.png" border="0" alt="Make payments with PayGol: the easiest way!" title="Make payments with PayGol: the easiest way!" >
</form>

And use the one you created, changing the values of course.
 
You just need to import the new paygol form you made on the paygol website.

PHP:
<form name="pg_frm" method="post" action="http://www.paygol.com/micropayment/paynow" >
	<input type="hidden" name="pg_serviceid" value="<?php echo $paygol['serviceID']; ?>">
	<input type="hidden" name="pg_currency" value="<?php echo $paygol['currency']; ?>">
	<input type="hidden" name="pg_name" value="<?php echo $paygol['name']; ?>">
	<input type="hidden" name="pg_custom" value="<?php echo $session_user_id; ?>">
	<input type="hidden" name="pg_price" value="<?php echo $paygol['price']; ?>">
	<input type="hidden" name="pg_return_url" value="<?php echo $paygol['returnURL']; ?>">
	<input type="hidden" name="pg_cancel_url" value="<?php echo $paygol['cancelURL']; ?>">
	<input type="hidden" name="pg_notify" value="<?php echo $paygol['ipnURL']; ?>">
	<input type="image" name="pg_button" src="http://www.paygol.com/micropayment/img/buttons/150/black_en_pbm.png" border="0" alt="Make payments with PayGol: the easiest way!" title="Make payments with PayGol: the easiest way!" >
</form>

And use the one you created, changing the values of course.

Please answer on my Mail
Raggaer.
 
If you have not already solved it youst delete this line in buypoints.php
PHP:
<p><?php echo $paygol['price'] ." ". $paygol['currency'] ."~ for ". $paygol['points'] ." points:"; ?></p>
 
Back
Top