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

Automatic paypal?

Onizuka

Member
Joined
Jul 5, 2008
Messages
2,291
Reaction score
14
so i seem to have a problem with this, im not an idiot, i can set-up my own stuff without a problem, now im wondering,

are these correct:

LUA:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.202")

is .htaccess here correct?

LUA:
<files "*.*">
Allow from 84.47.125.0/19 66.211.160.0/19 216.113.160.0/19
Deny from All
</files>

also see my paypal account is set to GBP, so does that mean i have to edit here aswell?

LUA:
<input type="hidden" name="button_subtype" value="products">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="EUR">

from EUR to GBP? or will it be ok if i change my account in paypal to euro rather then pound sterling?


Regards,
The one that will explain this shit to me and help me fix it? I'll pay ;l
 
I thought GBP is not a currency anymore o.0
Didn't they switch to Euro?

Pounds are used in all of the UK, except for Ireland(as far as I know).

@OP

For PayPal, you can receive ANY currency in the world, even if your current balance is only in GBP (Your PayPal account will just add a new table of whichever foreign currency on your balance page). They do free currency conversions if you'd like to convert the received money to your desired currency.
 
You are using this twice: o.o
HTML:
<input type="hidden" name="currency_code" value="EUR">

Also, why:
PHP:
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.202")

When you can use:
PHP:
$unwanted = array('66.211.170.66', '216.113.188.202', '216.113.188.203', '216.113.188.202');

if(!in_array($ip, $unwanted))

^-^
 
Last edited:
LUA:
<files "*.*">
Allow from 84.47.125.0/19 66.211.160.0/19 216.113.160.0/19
Deny from All
</files>

Well, I don't see why your htaccess file is relevant to the problem, since that configuration is what grants others access to your localhost/phpmyadmin :p
 
does it suppose to log straight to log.file after transaction? doesnt seem to do that either ;l
so no points are being added, nor log file is being filled ;o

thanks archez, didnt notice, deleting it ;
 
so you think its because of htaccess then?

are these correct querries to?

$qry2 = "UPDATE accounts SET premium_points = '$points' WHERE accounts.name = '$custom'";
 
Stian, i think its my fault not the script. But im unsure.
I tried few scripts which worked for most, im 10000% i edited everything correctly. But still im doubting its my fault somewhere.

unless someone wants to visit me with Teamviwer xD and get that 20euro for few mins of their time if their smart enough to help me out ;l
 
Stian, i think its my fault not the script. But im unsure.
I tried few scripts which worked for most, im 10000% i edited everything correctly. But still im doubting its my fault somewhere.

unless someone wants to visit me with Teamviwer xD and get that 20euro for few mins of their time if their smart enough to help me out ;l

20 euro? MSN ME. :D
 
Back
Top