Invision Community 5: A video walkthrough creating a custom theme and homepage By Matt Thursday at 04:02 PM
JohnnyUSA2k3 Posted May 5, 2019 Posted May 5, 2019 (edited) @jcsnider, @Emediate 1. Do you guys gave Guests access to the Donation app? 2. Are you using the paypal merchand code or just the paypal e-mail setup on the PayPal Gateway settings. 3. If you try to access the link generated in the PayPal Gateway, what message it gives you? 4. What hosting are you using? I’m using Siteground. 5. Last one, when the problems started, you got any IPN errors in logs? Thanks in advance. ps: i think @Mike John is fine, seen him posting something yesterday on his forums. Edited May 5, 2019 by JohnnyUSA2k3
Michael.J Posted May 5, 2019 Author Posted May 5, 2019 (edited) On 4/20/2019 at 1:47 AM, Julien Costes said: Hello, when I want to edit some widgets, I have this error: Have you upgraded to the latest version that includes "IPB 4.4 compatibility"? That should of fixed this issue. On 4/27/2019 at 12:42 AM, Sp4x said: Is this Gateway compatible with your Plugin? Or do you use your own Gateway implementation? No sorry the gateway itself is not included and Commerce integration isn't currently possible. I am working on a solution for more gateway support but it's still some months away. On 5/3/2019 at 11:29 PM, JohnnyUSA2k3 said: Donations sent by PayPal dont register on forum members. I get the money in my paypal account but nothing registers on the website. I have IPN activated and it actually registers the transactions according to the IPN History Log. Could you please PM me payment logs (acp > donations tab > payment logs) or admin cp login details to check? I want to confirm a few of these reports and then put together a quick patch for this. Edit: Ignore that, I see you've already supplied further details. If you happen to have ftp login details for your ipb files, PM me and I can pass a test patch for you to try. Edit2: Just wanted to apologies for everyone for the delay, I'm currently in the middle of a big move and only catching up with support now. Edited May 5, 2019 by Mike John JohnnyUSA2k3, Sp4x, Joey_M and 2 others 1 4
kazad63 Posted May 6, 2019 Posted May 6, 2019 Hello, as I have in a support ticket. Just disable the ipn paypal to no longer have a guest. it seems to work for the moment.
Luke Daley Posted May 7, 2019 Posted May 7, 2019 On 5/5/2019 at 9:05 PM, Mike John said: Have you upgraded to the latest version that includes "IPB 4.4 compatibility"? That should of fixed this issue. No sorry the gateway itself is not included and Commerce integration isn't currently possible. I am working on a solution for more gateway support but it's still some months away. Could you please PM me payment logs (acp > donations tab > payment logs) or admin cp login details to check? I want to confirm a few of these reports and then put together a quick patch for this. Edit: Ignore that, I see you've already supplied further details. If you happen to have ftp login details for your ipb files, PM me and I can pass a test patch for you to try. Edit2: Just wanted to apologies for everyone for the delay, I'm currently in the middle of a big move and only catching up with support now. thanks for the update, we're going through a move too! so we know the stress! we also have the same issue with the donation gateway not recording (i also PMd logs last week) Michael.J 1
Michael.J Posted May 17, 2019 Author Posted May 17, 2019 On 5/7/2019 at 8:05 PM, Luke Daley said: thanks for the update, we're going through a move too! so we know the stress! we also have the same issue with the donation gateway not recording (i also PMd logs last week) If anyone else is having this problem, please PM for the latest patch. I just wanted to do a bit more testing to absolutely confirm it's fixed the issue before releasing a new update probably next week some time. Luke Daley 1
For the King Posted May 17, 2019 Posted May 17, 2019 Hey just purchased this app (was using your free one for awhile). An issue I am running into is that the app doesnt update the donor in the donor list. I am having to do this manually. Just now, Cory Fuller said: Hey just purchased this app (was using your free one for awhile). An issue I am running into is that the app doesnt update the donor in the donor list. I am having to do this manually. I Lied. Im sorry. Just took a few minutes to update. Michael.J 1
Mesharsky | H2K Posted May 18, 2019 Posted May 18, 2019 If anyone have problem with curriences in top donors / profile. The problem only exist if you have 2 curriences, for example EURO AND PLN(POLISH ZŁOTY). 1 euro = 4.27 PLN If someone donates 10 EURO, in top donors weekly it says only 10 pln instead of 40.value. And to your profile is added only 10 pln as well. Here is a fix for that. Path to file applications/donate/widgets/donateTopDonors.php Find this foreach ( \IPS\Db::i()->select( array( 'member_id', 'amount' ), 'donate_users', $where ) as $donation ) { if ( !isset( $topDonors[ $donation['member_id'] ] ) ) { $topDonors[ $donation['member_id'] ] = $donation['amount']; } else { $topDonors[ $donation['member_id'] ] += $donation['amount']; } } Change it to this foreach ( \IPS\Db::i()->select( array( 'member_id', 'amount', 'rate' ), 'donate_users', $where ) as $donation ) { $donation['amount'] *= $donation['rate']; if ( !isset( $topDonors[ $donation['member_id'] ] ) ) { $topDonors[ $donation['member_id'] ] = $donation['amount']; } else { $topDonors[ $donation['member_id'] ] += $donation['amount']; } } Those changes you need to apply in profile code and everywhere. To make to work propery. I want to mention the goal update is working fine, just top donors and $ added to your profile is not working good. Michael.J 1
roman77 Posted July 8, 2019 Posted July 8, 2019 Hello.. I have a little problem since 2 days for some reason the plugin stopped show donations.... and also don't show nothing on the admin area. Its like do a direct donation to the paypal address without using the forum.
For the King Posted July 8, 2019 Posted July 8, 2019 (edited) Not sure where or why it started but my goal is showing the wrong amounts. Infact it seems to give a random number every few days but no one has donated this month. edit* right after posting I had an idea to recreate the goal from scratch. This fixed it but not sure why it happened in the first place. Edited July 8, 2019 by Cory Fuller
Donald Wilkins Posted July 18, 2019 Posted July 18, 2019 is there no way to close donation goals after the times up and not after the goal has been reached ?
For the King Posted July 19, 2019 Posted July 19, 2019 Im having an issue where donations wont show up in the goal box or donors. It all started when last month the goal wouldn't end and started giving random numbers. I deleted the goal and started fresh. Ive spent a few hours making sure the settings where right but its still not showing any updates. Any advice on what to look for or fix?
Michael.J Posted August 23, 2019 Author Posted August 23, 2019 On 7/9/2019 at 12:48 AM, Rikhard Roman said: Hello.. I have a little problem since 2 days for some reason the plugin stopped show donations.... and also don't show nothing on the admin area. Its like do a direct donation to the paypal address without using the forum. Can you please upgrade to the latest versions released recently. They should patch some of the issues between the ipn and donations recording. On 7/18/2019 at 10:02 PM, Donald Wilkins said: is there no way to close donation goals after the times up and not after the goal has been reached ? Not currently. On 7/19/2019 at 11:29 PM, Cory Fuller said: Im having an issue where donations wont show up in the goal box or donors. It all started when last month the goal wouldn't end and started giving random numbers. I deleted the goal and started fresh. Ive spent a few hours making sure the settings where right but its still not showing any updates. Any advice on what to look for or fix? Can you first try the latest upgrade. If that doesn't help, I'll need admin login details to check over your settings and troubleshoot this further.
roman77 Posted August 27, 2019 Posted August 27, 2019 On 8/23/2019 at 4:11 AM, Mike John said: Can you please upgrade to the latest versions released recently. They should patch some of the issues between the ipn and donations recording. Not currently. Can you first try the latest upgrade. If that doesn't help, I'll need admin login details to check over your settings and troubleshoot this further. We have a chat on your site "devfuse", and waiting answer since august 16 ...
jcsnider Posted September 11, 2019 Posted September 11, 2019 @Mike John Any chance you might consider a small tweak where you can set the promote primary timeframe to 0 days (to skip primary group promotion). I'm looking for a way to make all donations extend the addition of a secondary group only. As of right now, setting the promote primary time to 0 days results in a validation block.
Michael.J Posted October 3, 2019 Author Posted October 3, 2019 On 8/27/2019 at 10:53 PM, Rikhard Roman said: We have a chat on your site "devfuse", and waiting answer since august 16 ... I should have a reply up there now. On 9/11/2019 at 2:09 PM, jcsnider said: Any chance you might consider a small tweak where you can set the promote primary timeframe to 0 days (to skip primary group promotion). I'm looking for a way to make all donations extend the addition of a secondary group only. Do you have ftp access to your ipb files? If so, I can provide a patch to get around this until the next update.
Michael.J Posted November 14, 2019 Author Posted November 14, 2019 The donations app has been updated with a dozen new bug fixes and minor feature improvements. crmarks 1
Joey_M Posted December 24, 2019 Posted December 24, 2019 On 2/26/2016 at 1:19 AM, Mike John said: There are 2 tabs, one for "Donations" and the other for "Goals". Do both have date sets? None in ACP > Donations tab > Gateways > Paymentwall? Should be at the very bottom with fields for api, key, widget. Stripe is probably the leading candidate for the next gateway. Another request from me, yet I have recently started using Stripe with IP.Commerce. Please, please will you add it so we can accept card donations.
Michael.J Posted January 1, 2020 Author Posted January 1, 2020 On 12/25/2019 at 9:10 AM, Joey_M said: Another request from me, yet I have recently started using Stripe with IP.Commerce. It will be added, I just wasn't able to get to it in 2019. I don't want to provide another estimate as I haven't been able to keep my previous commitments. Joey_M 1
Joey_M Posted January 1, 2020 Posted January 1, 2020 13 hours ago, Mike John said: It will be added, I just wasn't able to get to it in 2019. I don't want to provide another estimate as I haven't been able to keep my previous commitments. I’m sure everyone understands, you have a lot of resources and other things on your hands - I’m happy to wait. Its just nice to know that it will be added. Michael.J 1
Ember Stone Posted January 3, 2020 Posted January 3, 2020 Hi Is it possible to something like this. Lets say someone donate using offline donation and it goes to review. Then system or admin automatically pm that user with donation info like how to donate and where to donate.
Michael.J Posted January 7, 2020 Author Posted January 7, 2020 On 1/3/2020 at 5:10 PM, Ember Stone said: Lets say someone donate using offline donation and it goes to review. Then system or admin automatically pm that user with donation info like how to donate and where to donate. Offline donations already require approval before appearing in the Donations app. There isn't a separate PM for offline donations though, you would need to use the existing one that is sent for all donations if enabled. If you have any more questions, let me know.
oxg88 Posted February 1, 2020 Posted February 1, 2020 Problem with displaying sums of money above 999. Unfortunately the author of the plugin has little interest in the problem.
oxg88 Posted February 3, 2020 Posted February 3, 2020 On 2/1/2020 at 6:47 PM, DawPi said: What is your language locale set? 🙂 Polish
Michael.J Posted February 4, 2020 Author Posted February 4, 2020 On 2/1/2020 at 8:59 PM, oxg88 said: Unfortunately the author of the plugin has little interest in the problem. It's harder to troubleshoot this without ftp access. I'm still working on this though and if anyone else with the problem does want to provide ftp access, please let me know.
Recommended Posts