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

AAC Paypal problem

beliar34

Member
Joined
Feb 28, 2012
Messages
307
Solutions
7
Reaction score
11
Hello, my paypal stopped working 0.o strange, do you know something about changes in paypal system ?
error :
Code:
This recipient does not accept payments denominated in USD. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.
i accept all currencies, paypal stopped working this morning.
 
Last edited by a moderator:
Hello, my paypal stopped working 0.o strange, do you know something about changes in paypal system ?
error :
Code:
This recipient does not accept payments denominated in USD. Please contact the seller and ask him to update his payment receiving preferences to accept this currency.
i accept all currencies, paypal stopped working this morning.

Testro T3 The penis has three chambers, two large ones at the top, these are the erectile tissues known as the Corpora Cavernosa, and one smaller chamber at the bottom for physiological purposes of urination and ejaculation known as Corpus Spongisum. By far the most reliable of all these procedures, using a similar technique in orthopedic surgery means that users can expect to see results within 7 days of the application of the penis traction device to their penis. Finding men willing to discuss their actual use of penis enlargement creams is a little difficult, in my experience. The system has been tested numerous times and there have been no side effects recorded.
Testro T3: Does It Really Works? Read Reviews Before Order Trial!

refresh

Give this a try; Recipient does not accept [currency] error
Might be another setting you used, otherwise contact the support.
 
i already accept all curriences :p
i contacted support via phone they told me to mail them with my scripts, 2 weeks ago i mailed them and still no answer ...
 
i already accept all curriences :p
i contacted support via phone they told me to mail them with my scripts, 2 weeks ago i mailed them and still no answer ...

Can you post the scripts you sent?
I would contact them again, if this was a known issue with any major OT script (Znote, Gesior - AAC etc) we would have alot more threads.
 
Bleach Warriors Online - PayPal < you can test this bug here
Code:
<?php
if ($_REQUEST['debug']) {
ini_set("display_errors", True);
error_reporting(E_ALL);
}
$mysql_host = 'localhost'; //Leave at localhost 
$mysql_user = 'XXXXXXX'; //DB User  - for paypal support - i deleted these for my data protection 
$mysql_pass = 'XXXX'; //DB Pass  - for paypal support - i deleted these for my data protection 
$mysql_db = 'XXXXXXX'; //DB Name - for paypal support - i deleted these for my data protection 
$file = 'paypal.log'; //Paypal Log Name will be placed in the same location as your ipn.php file
$payer_email = $_REQUEST['payer_email'];
$ip = $_SERVER['REMOTE_ADDR'];
$ips = array('173.0.81.1','173.0.81.33','66.211.170.66');
if(!in_array($ip, $ips)) {
    print "Scammer.. Your IP has been logged and forwarded to the server owner.";
$hak = fopen("scammer.log", "a");
fwrite($hak, "$ip \r\n");
fclose($hak);
die(0);
}
$time = date("F j, Y, g:i a");
$paylist = array("5.00" => 200, "10.00" => 450, "20.00" => 1000, "40.00" => 2200);

// connect db 

$db = mysql_connect($mysql_host, $mysql_user, $mysql_pass);

$custom = stripslashes(ucwords(strtolower(trim($_REQUEST['custom'])))); 
$receiver_email = $_REQUEST['receiver_email']; 
$payment_status = $_REQUEST['payment_status']; 
$mc_gross = $_REQUEST['mc_gross'];
$mc_currency = $_REQUEST['mc_currency'];
mysql_select_db($mysql_db, $db); 
if ($_REQUEST['debug']){
print $payment_status . '\n';
print (isset($paylist[$mc_gross])) ? 1 : 0 . '\n';
print $receiver_email . '\n';
print $custom . '\n';
}
if ($payment_status == "Completed" && $receiver_email == "[email protected]" && isset($paylist[$mc_gross]) && $mc_currency == "PLN") {  
$somecode = "'$time' '$custom' '$payer_email' '$mc_gross' '$ip'\r\n";

$qry2 = "UPDATE accounts SET premium_points = premium_points + {$paylist[$mc_gross]} WHERE name = '$custom'"; 
// Log Paypal Transaction
$hak = fopen($file, "a");
fwrite($hak, $somecode);
fclose($hak);

$result2 = mysql_query($qry2); 
} 
else 
{  
echo("Error."); 
} 
?>
Code:
<?PHP
$content = file_get_contents("paypal.htm");
if($content != FALSE)
    $main_content .= $content;
else
    $main_content .= 'Can not load file <b>paypal.htm</b> or file is empty.';
?>

Code:
<b>Infernal Dawn donation system.</b><br><br>
U will receive points (read: gift) as a thank you, u can spend these points in our online shop system:<ul><li> 5 PLN 200 points</li><li> 10 PLN for 450 points</li><li> 20 PLN for 1000 points</li><li>40 PLN for 2200 points!</li><br>

<b>Here are the steps you need to make:</b> <br>
1. A PayPal account with a required balance [5, 10, 20 or 40 PLN] or a creditcard. <br>
2. Fill in your account number. <br>
3. Click on the Buy Now button or your creditcard brand. <br>
4. Make a transaction. <br>
5. After the transaction 200, 450, 1000 or 2200 points will be automatically added to your account. <br>
6. Go to Item shop and use your points <br> <br> <br> </b>

<span style="color:red">Incase u entered a wrong account name, or u didnt receive the donation points, contact us on the forums. Include ur Paypal Email in the board post.</span>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="lc" value="PL">
<input type="hidden" name="item_name" value="Donation Points">
<b>Account name/login:</b> <input type="text"  name="custom" value="">

<select name="amount">
  <option value="5.00">5 PLN</option>
  <option value="10.0">10 PLN</option>
  <option value="20.0">20 PLN</option>
  <option value="40.0">40 PLN</option>
</select>
<input type="hidden" name="button_subtype" value="products">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="notify_url" value="http://bleachwo.zapto.org/ipn/ipn.php">
<input type="hidden" name="return" value="http://bleachwo.zapto.org">
<input type="hidden" name="rm" value="0">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">

<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">

</form>
<br>
<br>
<center><font size="4"><b>By pressing the donate button you automaticly agree to these terms.</b></font>
<br>
<br>
<br><TEXTAREA ROWS="18" WRAP="physical" COLS="80" READONLY="true" font-family="verdana">
1. Definition of donating
You agree that you are using it of your own free will and independent of any expectation of any item in return. Your payment is not a payment, and not an exchange for a good or service. It is currently the policy to reward those who donate with certain in-game items. However, these items are not being purchased or bought in any way; they are merely a gift given by us, the server staff. We do not sell any good or service, and relies on payments to offset administration and server fees; therefore any item you may receive from us will be considered a gift and not a tangible good or an exchange of any kind.

2. Payment Rewards
You understand that if the item you receive as a donation is lost, broken, unusable, or unwanted, you will not be entitled to a refund. Your payment is not an exchange for any reward, so all gifts are completely non-refundable.  We reserves the right to pursue any legal or collection action necessary to recover damages in the event of a forced charge-back. We reserves the right to not give you the items back if there was an rollback in the server which caused u an lost of ur items/points. And we reserves the right reset the server and delete all the items whenever we want.

3. Right to Change Prices
We reserves the right to change, with or without notice, the gifts given to those who donate to the server. In the event that you have donated for an item and such a change occurs, you will not be refunded anything.

4. Indemnification
You agree to indemnify and harmless the staff, owners, hosts, advertisers, officers, directors, employees, partners, and all other parties related to this servers staff, By agreeing to these terms, you agree not to present any lawsuit or other legal challenge against the server staff for any reason, whether related to using this service or not.

5. Disclaimer of warranties
You understand and agree that your use of this website and any services or content provided is made available and provided to you at your own risk. It is provided to you as-is and we expressly disclaim all warranties of any kind, expressed or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. We make no warranty, implied or express, that any part of the service will be uninterrupted, error-free, virus-free, timely, secure, accurate, reliable, of any quality, nor that any content is safe in any manner for download. You understand and agree that neither us nor any participant in the service provides professional advice of any kind and thus use of such advice or any other information is solely at your own risk and without our liability of any kind. Some jurisdictions may not allow disclaimers of implied warranties and the above disclaimer may not apply to you only as it relates to implied warranties.

6. Limitation of liability
You expressly understand and agree that we shall not be liable for any direct, indirect, special, incidental, consequential or exemplary damages, including but not limited to, damages for loss of profits, goodwill, use, data or other intangible loss (even if we have been advised of the possibility of such damages), resulting from or arising out of (I) The use of or the inability to use the service, (II) The cost to obtain substitute goods and/or services resulting from any transaction entered into on trough the service, (III) Unauthorized access to or alternation of your data transmissions, (IV) Statements or conduct of any third party on the service, or (V) any other matter relating to the service. Note that by accepting the terms in the document, you are also waiving your right, to take any action, legal or otherwise, against anyone or anything related to the staff, management, administrators, members, owners, Legendaria/Ethania Hosting or any other hosts of this server. You furthermore acknowledge that if any part of this document is found to be invalid or unenforceable in any way, any parts not found to be invalid or unenforceable will be considered fully valid and binding.
</TEXTAREA><br>

@WibbenZ here you are, ipn,php and html
 
Bleach Warriors Online - PayPal < you can test this bug here
Code:
<?php
if ($_REQUEST['debug']) {
ini_set("display_errors", True);
error_reporting(E_ALL);
}
$mysql_host = 'localhost'; //Leave at localhost
$mysql_user = 'XXXXXXX'; //DB User  - for paypal support - i deleted these for my data protection
$mysql_pass = 'XXXX'; //DB Pass  - for paypal support - i deleted these for my data protection
$mysql_db = 'XXXXXXX'; //DB Name - for paypal support - i deleted these for my data protection
$file = 'paypal.log'; //Paypal Log Name will be placed in the same location as your ipn.php file
$payer_email = $_REQUEST['payer_email'];
$ip = $_SERVER['REMOTE_ADDR'];
$ips = array('173.0.81.1','173.0.81.33','66.211.170.66');
if(!in_array($ip, $ips)) {
    print "Scammer.. Your IP has been logged and forwarded to the server owner.";
$hak = fopen("scammer.log", "a");
fwrite($hak, "$ip \r\n");
fclose($hak);
die(0);
}
$time = date("F j, Y, g:i a");
$paylist = array("5.00" => 200, "10.00" => 450, "20.00" => 1000, "40.00" => 2200);

// connect db

$db = mysql_connect($mysql_host, $mysql_user, $mysql_pass);

$custom = stripslashes(ucwords(strtolower(trim($_REQUEST['custom']))));
$receiver_email = $_REQUEST['receiver_email'];
$payment_status = $_REQUEST['payment_status'];
$mc_gross = $_REQUEST['mc_gross'];
$mc_currency = $_REQUEST['mc_currency'];
mysql_select_db($mysql_db, $db);
if ($_REQUEST['debug']){
print $payment_status . '\n';
print (isset($paylist[$mc_gross])) ? 1 : 0 . '\n';
print $receiver_email . '\n';
print $custom . '\n';
}
if ($payment_status == "Completed" && $receiver_email == "[email protected]" && isset($paylist[$mc_gross]) && $mc_currency == "PLN") { 
$somecode = "'$time' '$custom' '$payer_email' '$mc_gross' '$ip'\r\n";

$qry2 = "UPDATE accounts SET premium_points = premium_points + {$paylist[$mc_gross]} WHERE name = '$custom'";
// Log Paypal Transaction
$hak = fopen($file, "a");
fwrite($hak, $somecode);
fclose($hak);

$result2 = mysql_query($qry2);
}
else
{ 
echo("Error.");
}
?>
Code:
<?PHP
$content = file_get_contents("paypal.htm");
if($content != FALSE)
    $main_content .= $content;
else
    $main_content .= 'Can not load file <b>paypal.htm</b> or file is empty.';
?>

Code:
<b>Infernal Dawn donation system.</b><br><br>
U will receive points (read: gift) as a thank you, u can spend these points in our online shop system:<ul><li> 5 PLN 200 points</li><li> 10 PLN for 450 points</li><li> 20 PLN for 1000 points</li><li>40 PLN for 2200 points!</li><br>

<b>Here are the steps you need to make:</b> <br>
1. A PayPal account with a required balance [5, 10, 20 or 40 PLN] or a creditcard. <br>
2. Fill in your account number. <br>
3. Click on the Buy Now button or your creditcard brand. <br>
4. Make a transaction. <br>
5. After the transaction 200, 450, 1000 or 2200 points will be automatically added to your account. <br>
6. Go to Item shop and use your points <br> <br> <br> </b>

<span style="color:red">Incase u entered a wrong account name, or u didnt receive the donation points, contact us on the forums. Include ur Paypal Email in the board post.</span>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="lc" value="PL">
<input type="hidden" name="item_name" value="Donation Points">
<b>Account name/login:</b> <input type="text"  name="custom" value="">

<select name="amount">
  <option value="5.00">5 PLN</option>
  <option value="10.0">10 PLN</option>
  <option value="20.0">20 PLN</option>
  <option value="40.0">40 PLN</option>
</select>
<input type="hidden" name="button_subtype" value="products">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="notify_url" value="http://bleachwo.zapto.org/ipn/ipn.php">
<input type="hidden" name="return" value="http://bleachwo.zapto.org">
<input type="hidden" name="rm" value="0">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">

<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">

</form>
<br>
<br>
<center><font size="4"><b>By pressing the donate button you automaticly agree to these terms.</b></font>
<br>
<br>
<br><TEXTAREA ROWS="18" WRAP="physical" COLS="80" READONLY="true" font-family="verdana">
1. Definition of donating
You agree that you are using it of your own free will and independent of any expectation of any item in return. Your payment is not a payment, and not an exchange for a good or service. It is currently the policy to reward those who donate with certain in-game items. However, these items are not being purchased or bought in any way; they are merely a gift given by us, the server staff. We do not sell any good or service, and relies on payments to offset administration and server fees; therefore any item you may receive from us will be considered a gift and not a tangible good or an exchange of any kind.

2. Payment Rewards
You understand that if the item you receive as a donation is lost, broken, unusable, or unwanted, you will not be entitled to a refund. Your payment is not an exchange for any reward, so all gifts are completely non-refundable.  We reserves the right to pursue any legal or collection action necessary to recover damages in the event of a forced charge-back. We reserves the right to not give you the items back if there was an rollback in the server which caused u an lost of ur items/points. And we reserves the right reset the server and delete all the items whenever we want.

3. Right to Change Prices
We reserves the right to change, with or without notice, the gifts given to those who donate to the server. In the event that you have donated for an item and such a change occurs, you will not be refunded anything.

4. Indemnification
You agree to indemnify and harmless the staff, owners, hosts, advertisers, officers, directors, employees, partners, and all other parties related to this servers staff, By agreeing to these terms, you agree not to present any lawsuit or other legal challenge against the server staff for any reason, whether related to using this service or not.

5. Disclaimer of warranties
You understand and agree that your use of this website and any services or content provided is made available and provided to you at your own risk. It is provided to you as-is and we expressly disclaim all warranties of any kind, expressed or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. We make no warranty, implied or express, that any part of the service will be uninterrupted, error-free, virus-free, timely, secure, accurate, reliable, of any quality, nor that any content is safe in any manner for download. You understand and agree that neither us nor any participant in the service provides professional advice of any kind and thus use of such advice or any other information is solely at your own risk and without our liability of any kind. Some jurisdictions may not allow disclaimers of implied warranties and the above disclaimer may not apply to you only as it relates to implied warranties.

6. Limitation of liability
You expressly understand and agree that we shall not be liable for any direct, indirect, special, incidental, consequential or exemplary damages, including but not limited to, damages for loss of profits, goodwill, use, data or other intangible loss (even if we have been advised of the possibility of such damages), resulting from or arising out of (I) The use of or the inability to use the service, (II) The cost to obtain substitute goods and/or services resulting from any transaction entered into on trough the service, (III) Unauthorized access to or alternation of your data transmissions, (IV) Statements or conduct of any third party on the service, or (V) any other matter relating to the service. Note that by accepting the terms in the document, you are also waiving your right, to take any action, legal or otherwise, against anyone or anything related to the staff, management, administrators, members, owners, Legendaria/Ethania Hosting or any other hosts of this server. You furthermore acknowledge that if any part of this document is found to be invalid or unenforceable in any way, any parts not found to be invalid or unenforceable will be considered fully valid and binding.
</TEXTAREA><br>

@WibbenZ here you are, ipn,php and html

Are you using Gesior 2012? In that case try the scripts that it comes with, might be a bug in your custom? paypal script.
GitHub - gesior/Gesior2012 at TFS-1.0

If you have the same problem with that script it's a problem with your account = only paypal can help you.
 
Are you using Gesior 2012? In that case try the scripts that it comes with, might be a bug in your custom? paypal script.
GitHub - gesior/Gesior2012 at TFS-1.0

If you have the same problem with that script it's a problem with your account = only paypal can help you.

I use old gesior becouse of anime server and many custom scripts i dont want to move to new gesior :)
i tried my script on new maked account still same problem :(
 
Bleach Warriors Online - PayPal < you can test this bug here
Code:
<?php
if ($_REQUEST['debug']) {
ini_set("display_errors", True);
error_reporting(E_ALL);
}
$mysql_host = 'localhost'; //Leave at localhost
$mysql_user = 'XXXXXXX'; //DB User  - for paypal support - i deleted these for my data protection
$mysql_pass = 'XXXX'; //DB Pass  - for paypal support - i deleted these for my data protection
$mysql_db = 'XXXXXXX'; //DB Name - for paypal support - i deleted these for my data protection
$file = 'paypal.log'; //Paypal Log Name will be placed in the same location as your ipn.php file
$payer_email = $_REQUEST['payer_email'];
$ip = $_SERVER['REMOTE_ADDR'];
$ips = array('173.0.81.1','173.0.81.33','66.211.170.66');
if(!in_array($ip, $ips)) {
    print "Scammer.. Your IP has been logged and forwarded to the server owner.";
$hak = fopen("scammer.log", "a");
fwrite($hak, "$ip \r\n");
fclose($hak);
die(0);
}
$time = date("F j, Y, g:i a");
$paylist = array("5.00" => 200, "10.00" => 450, "20.00" => 1000, "40.00" => 2200);

// connect db

$db = mysql_connect($mysql_host, $mysql_user, $mysql_pass);

$custom = stripslashes(ucwords(strtolower(trim($_REQUEST['custom']))));
$receiver_email = $_REQUEST['receiver_email'];
$payment_status = $_REQUEST['payment_status'];
$mc_gross = $_REQUEST['mc_gross'];
$mc_currency = $_REQUEST['mc_currency'];
mysql_select_db($mysql_db, $db);
if ($_REQUEST['debug']){
print $payment_status . '\n';
print (isset($paylist[$mc_gross])) ? 1 : 0 . '\n';
print $receiver_email . '\n';
print $custom . '\n';
}
if ($payment_status == "Completed" && $receiver_email == "[email protected]" && isset($paylist[$mc_gross]) && $mc_currency == "PLN") { 
$somecode = "'$time' '$custom' '$payer_email' '$mc_gross' '$ip'\r\n";

$qry2 = "UPDATE accounts SET premium_points = premium_points + {$paylist[$mc_gross]} WHERE name = '$custom'";
// Log Paypal Transaction
$hak = fopen($file, "a");
fwrite($hak, $somecode);
fclose($hak);

$result2 = mysql_query($qry2);
}
else
{ 
echo("Error.");
}
?>
Code:
<?PHP
$content = file_get_contents("paypal.htm");
if($content != FALSE)
    $main_content .= $content;
else
    $main_content .= 'Can not load file <b>paypal.htm</b> or file is empty.';
?>

Code:
<b>Infernal Dawn donation system.</b><br><br>
U will receive points (read: gift) as a thank you, u can spend these points in our online shop system:<ul><li> 5 PLN 200 points</li><li> 10 PLN for 450 points</li><li> 20 PLN for 1000 points</li><li>40 PLN for 2200 points!</li><br>

<b>Here are the steps you need to make:</b> <br>
1. A PayPal account with a required balance [5, 10, 20 or 40 PLN] or a creditcard. <br>
2. Fill in your account number. <br>
3. Click on the Buy Now button or your creditcard brand. <br>
4. Make a transaction. <br>
5. After the transaction 200, 450, 1000 or 2200 points will be automatically added to your account. <br>
6. Go to Item shop and use your points <br> <br> <br> </b>

<span style="color:red">Incase u entered a wrong account name, or u didnt receive the donation points, contact us on the forums. Include ur Paypal Email in the board post.</span>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="[email protected]">
<input type="hidden" name="lc" value="PL">
<input type="hidden" name="item_name" value="Donation Points">
<b>Account name/login:</b> <input type="text"  name="custom" value="">

<select name="amount">
  <option value="5.00">5 PLN</option>
  <option value="10.0">10 PLN</option>
  <option value="20.0">20 PLN</option>
  <option value="40.0">40 PLN</option>
</select>
<input type="hidden" name="button_subtype" value="products">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="currency_code" value="PLN">
<input type="hidden" name="notify_url" value="http://bleachwo.zapto.org/ipn/ipn.php">
<input type="hidden" name="return" value="http://bleachwo.zapto.org">
<input type="hidden" name="rm" value="0">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">

<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">

</form>
<br>
<br>
<center><font size="4"><b>By pressing the donate button you automaticly agree to these terms.</b></font>
<br>
<br>
<br><TEXTAREA ROWS="18" WRAP="physical" COLS="80" READONLY="true" font-family="verdana">
1. Definition of donating
You agree that you are using it of your own free will and independent of any expectation of any item in return. Your payment is not a payment, and not an exchange for a good or service. It is currently the policy to reward those who donate with certain in-game items. However, these items are not being purchased or bought in any way; they are merely a gift given by us, the server staff. We do not sell any good or service, and relies on payments to offset administration and server fees; therefore any item you may receive from us will be considered a gift and not a tangible good or an exchange of any kind.

2. Payment Rewards
You understand that if the item you receive as a donation is lost, broken, unusable, or unwanted, you will not be entitled to a refund. Your payment is not an exchange for any reward, so all gifts are completely non-refundable.  We reserves the right to pursue any legal or collection action necessary to recover damages in the event of a forced charge-back. We reserves the right to not give you the items back if there was an rollback in the server which caused u an lost of ur items/points. And we reserves the right reset the server and delete all the items whenever we want.

3. Right to Change Prices
We reserves the right to change, with or without notice, the gifts given to those who donate to the server. In the event that you have donated for an item and such a change occurs, you will not be refunded anything.

4. Indemnification
You agree to indemnify and harmless the staff, owners, hosts, advertisers, officers, directors, employees, partners, and all other parties related to this servers staff, By agreeing to these terms, you agree not to present any lawsuit or other legal challenge against the server staff for any reason, whether related to using this service or not.

5. Disclaimer of warranties
You understand and agree that your use of this website and any services or content provided is made available and provided to you at your own risk. It is provided to you as-is and we expressly disclaim all warranties of any kind, expressed or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. We make no warranty, implied or express, that any part of the service will be uninterrupted, error-free, virus-free, timely, secure, accurate, reliable, of any quality, nor that any content is safe in any manner for download. You understand and agree that neither us nor any participant in the service provides professional advice of any kind and thus use of such advice or any other information is solely at your own risk and without our liability of any kind. Some jurisdictions may not allow disclaimers of implied warranties and the above disclaimer may not apply to you only as it relates to implied warranties.

6. Limitation of liability
You expressly understand and agree that we shall not be liable for any direct, indirect, special, incidental, consequential or exemplary damages, including but not limited to, damages for loss of profits, goodwill, use, data or other intangible loss (even if we have been advised of the possibility of such damages), resulting from or arising out of (I) The use of or the inability to use the service, (II) The cost to obtain substitute goods and/or services resulting from any transaction entered into on trough the service, (III) Unauthorized access to or alternation of your data transmissions, (IV) Statements or conduct of any third party on the service, or (V) any other matter relating to the service. Note that by accepting the terms in the document, you are also waiving your right, to take any action, legal or otherwise, against anyone or anything related to the staff, management, administrators, members, owners, Legendaria/Ethania Hosting or any other hosts of this server. You furthermore acknowledge that if any part of this document is found to be invalid or unenforceable in any way, any parts not found to be invalid or unenforceable will be considered fully valid and binding.
</TEXTAREA><br>

@WibbenZ here you are, ipn,php and html

I dont know why you get that error, however, after seeing your code you should update it, update your PHP version (you are clearly running an outdated version) for security fixes and better performance, and update your IPN code since you are using deprecated methods (mysql). Now I wonder how PayPal will react to that legacy piece of code
 
I use old gesior becouse of anime server and many custom scripts i dont want to move to new gesior :)
i tried my script on new maked account still same problem :(

In that case update to either Gesior 2012 or Znote w/e you prefer.
The older Gesiors have alot of security issues, so no point in even trying to fix it IMO.

Also don't use the old script on the new AAC, you wanna test the new script that we know works on your AAC.
We don't know if it's your account or the script.
 
@WibbenZ its a fu****king joke !
after more than MONTH they answer that i was not replying any futher information about my problem so they tought my problem is solved and they close the ticket !

WTFFFFFFFFFFFFF
 
That or try to email / call them, you might have more luck there.

That was first that i do, i called the polish "call-center" but they dont fix advanced problems just things with forgotten password etc and they send me to global paypal (english language) support xd
 
Back
Top