Author |
Message |
jamesp15
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Dec 21, 2006
Posts: 5
|
Posted:
Sun Jun 12, 2016 10:51 pm |
|
Hi, anyone know whats happened with http://www.code-authors.com/ ? I purchased CA Treasury 1.2 in approx 2009/2010 and was looking around to see if maybe there was an update.
If its a dead project completely, anyone know of an up to date good PayPal module for RN 2.51.00 ?
Or will CA Treasury 1.2 work the new PayPal IPN changes that I received an email about last week?
I apologize if these have been answered before, I couldn't find anything on a quick search and have been "out of the loop" for a few years now.
Thanks for any info. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
kguske
Site Admin
![](modules/Forums/images/avatars/41f0b40a419280935f3a0.gif)
Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Tue Jun 14, 2016 4:52 am |
|
Code Authors is now http://script-shack.com/
Haven't heard about IPN changes, but will need to look into that. |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
jamesp15
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Jun 14, 2016 11:30 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
kguske
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Jun 26, 2016 6:50 pm |
|
Just a quick follow-up on this:
- the date is June 30, 2017, so you have a year to confirm
- there are 2 references to paypal.com in the old treasury module on which CA Treasury was built - one uses https and the other uses port 80 (i.e. http).
The payment uses https, but the posting of the payment (the listener) uses port 80.
The listener code is in modules/Donations/ipn/ipnppd.php:
Code:$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);
if (!$fp) {
// HTTP ERROR
dprt("FAILED to connect to PayPal", _ERR);
die();
}
|
Based on Only registered users can see links on this board! Get registered or login!I believe it should be:
Code:$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);
if (!$fp) {
// HTTP ERROR
dprt("FAILED to connect to PayPal", _ERR);
die();
}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
jamesp15
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Jun 27, 2016 6:28 pm |
|
Thank you, I made that change and had someone send me a test donation and it appeared normally, so I assume its working. Dont know how to test other than that.
Thanks again |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Guardian2003
Site Admin
![](modules/Forums/images/avatars/125904890252d880f79f312.png)
Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Tue Jun 28, 2016 6:08 am |
|
Thanks for bringing this to my attention!!
Although I have much less time to devote to PHP than I used to, I will certainly investigate this change to the way PayPal is using it's IPN and see if there is anything else that needs to be changed.
Thank you kguske for the fix!
Even if it isn't required, I should also add an option to send the data to PayPal via HTTPS for those that need it and have a valid SSL Certificate. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|