• 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 Znote AAC paypal payments is not being stored in database

S

Shadow_

Guest
Hello,
once i have changed my domain to a new one from carcooizx.zapto.org to asgard-ot.com and making the website secured with SSL certificate when somebody donates using paypal he doesn't recieve his points since the transactions are not added in znote_paypal but iam receiving the money normally anybody have idea what i did wrong ?
Note : everything else is working normally you can create accounts and players and guild so all of this is data stored in database except znote_paypal am using tfs 1.3 and ubuntu server 16.04 if any body have idea it would be appreciated.
Thank you,
 
Solution
S
Okay for anybody may need this i have solved my problem on my own,
( In case you changed from http to https )first make sure you are using HTTPS instead of HTTP here :

Code:
        'success' => "https://".$_SERVER['HTTP_HOST']."/success.php",
        'failed' => "https://".$_SERVER['HTTP_HOST']."/failed.php",
        'ipn' => "https://".$_SERVER['HTTP_HOST']."/ipn.php",
then open paypal and make sure you have added your link correctly in paypal IPN and in your config.php
Okay for anybody may need this i have solved my problem on my own,
( In case you changed from http to https )first make sure you are using HTTPS instead of HTTP here :

Code:
        'success' => "https://".$_SERVER['HTTP_HOST']."/success.php",
        'failed' => "https://".$_SERVER['HTTP_HOST']."/failed.php",
        'ipn' => "https://".$_SERVER['HTTP_HOST']."/ipn.php",
then open paypal and make sure you have added your link correctly in paypal IPN and in your config.php
 
Last edited by a moderator:
Solution
Back
Top