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

People don't get points via paypal

the password is not used by anyone. There is no point in hiding it. Kiltera went down a long time ago :p
 
There is two ips in the ip list ending with .202. Replace ONE of them with .204.
 
There is two ips in the ip list ending with .202. Replace ONE of them with .204.

Code:
<?
$mysql_host = 'localhost'; //Leave at localhost
$mysql_user = 'root'; //DB User
$mysql_pass = '----'; //DB Pass
$mysql_db = '---'; //DB Name

$custom = stripslashes(ucwords(strtolower(trim($_REQUEST['custom']))));
$receiver_email = $_REQUEST['receiver_email'];
$payment_status = $_REQUEST['payment_status'];
// connect db

$db = mysql_connect($mysql_host, $mysql_user, $mysql_pass);
mysql_select_db($mysql_db, $db);
if ($payment_status == "Completed" & $receiver_email == "[email protected]") {

$query = "SELECT premium_points FROM accounts WHERE accounts.name = '$custom'";

$result = mysql_query($query);

$prem = mysql_fetch_array($result);

$points = $prem['premium_points'] + 24;
// $points = mysql_query($prem)
$qry2 = "UPDATE accounts SET premium_points = '$points' WHERE accounts.name = '$custom'";

$result2 = mysql_query($qry2);
}
else
 { 
 echo("Error.");
 }
?>

Can you please help me ? I'll transfer 10 EURO if its work :S


Edit: When i go to my website's IPn its a blank page
example.com/ipn/ipn.php
 
Last edited:
Use Stian's: tech1.org/paypal.tar

Change this line in ipn.php:
PHP:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.202") {

To:

PHP:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.204") {
 
Use Stian's: tech1.org/paypal.tar

Change this line in ipn.php:
PHP:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.202") {

To:

PHP:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.204") {

Where's that located? Can't find anything.
 
Back
Top