Alex
Alex
@mtrajano Proof Of Concept with shitty code :D https://github.com/sanasol/laravel-swagger/pull/1 Problems 1. How to get any model with filled data 2. Have no idea how to fill any resource with full...
This is very PoC, so it wont work anywhere except my environment. I tried replace `@model` with resource until found that need both for make it work somehow. So with...
Only usage of donate complete page is here: https://github.com/rathena/FluxCP/blob/4ea0eef562d824e5032ae9c31c7bc3c854e0e869/modules/main/preprocess.php#L63-L68 Not sure is actually ever triggered or not. But anyway seems useless, there is no any actions or logic on that...
Probably your webserver(nginx/apache) doesn't provide correct IP address to php. > Received notification from unknown () This should not be **unknown** in any real case. You can check it with...
Try check nginx access.log. Rows with access to notify page. Maybe some paypal's IP that doesnt resolved correctly by gethostbyaddr().
apache access log then default paths /var/log/apache/access.log /var/log/apache2/access.log /etc/httpd/logs/access_log
`cat /var/log/apache2/access.log | grep 'notify'` Check this, should show paypal requests.
cat /var/log/apache2/access_log | grep 'notify'
https://github.com/rathena/FluxCP/blob/master/lib/Flux/PaymentNotifyRequest.php#L139 You can replace this line `if (in_array($received_from, $allowed_hosts) && $this->verify()) {` with `if ($this->verify()) {` To disable IP check, it will be verified anyway and known hacks fixed. So...
I dont see any changes related to IP addr between 7.1-7.4