Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
May 5, 20195 yr @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, 20195 yr by JohnnyUSA2k3
May 5, 20195 yr Author On 4/19/2019 at 3:47 PM, 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/26/2019 at 2:42 PM, 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 1: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, 20195 yr by Mike John
May 6, 20195 yr 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.
May 7, 20195 yr On 5/5/2019 at 8: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)
May 17, 20195 yr Author On 5/7/2019 at 10:05 AM, 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.
May 17, 20195 yr 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. On 5/17/2019 at 6:25 PM, 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.
May 18, 20195 yr 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.
July 8, 20195 yr 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.
July 8, 20195 yr 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, 20195 yr by Cory Fuller
July 18, 20195 yr is there no way to close donation goals after the times up and not after the goal has been reached ?
July 19, 20195 yr 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?
August 23, 20195 yr Author On 7/8/2019 at 2:48 PM, 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 12: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 1: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.
August 27, 20195 yr On 8/23/2019 at 2: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 ...
September 11, 20195 yr @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.
October 3, 20195 yr Author On 8/27/2019 at 12: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 4:09 AM, 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.
November 14, 20195 yr Author The donations app has been updated with a dozen new bug fixes and minor feature improvements.
December 24, 20195 yr 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.
January 1, 20205 yr Author On 12/24/2019 at 10:10 PM, 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.
January 1, 20205 yr On 1/1/2020 at 12:54 AM, 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.
January 3, 20205 yr 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.
January 7, 20205 yr Author On 1/3/2020 at 6:10 AM, 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.
February 1, 20205 yr Problem with displaying sums of money above 999. Unfortunately the author of the plugin has little interest in the problem.
February 4, 20205 yr Author On 2/1/2020 at 9:59 AM, 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.