The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
VSa - PayPal Donate Details »» | |||||||||||||||||||||||||||||||||||||||||
Info:
-Advanced PayPal Donate system for vBulletin. Features: -Allow users to donate suggested or custom amounts, or both -Set minimum amount accepted -Set currency -Block usergroups from using Donate system -Donation listing -Subscriptions (for Business/Premier PayPal Accounts) -Donation bar -Confirmed/Unconfirm/Delete donations -Move or add confirmed donors to your VIP/Donor usergroup -Donate stats (total donations, total amount, number of confirmed/unconfirmed donations) -Block usergroups from viewing Donations or statistics details -Add/Edit donations -PM reports View screenshots for more details... Installation: -Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product] To set options: -Go to: AdminCP > vBulletin Options > VSa - PayPal Donate Versions: v1.0 - Oct 13. 2005. -First Release v4.8.2 - Dec 29. 2008. -Latest vB 3.x version v5.0 - Feb 21. 2010. -Updated for vBulletin 4 -Fixed known bugs v5.0.1 - May 22. 2012. -Quick fix for vBulletin 4.2 compatibility v5.0.2 - Jun 09. 2012. -Compatible with vB 4.2.1 -Fixed several style issues -Fixed some permission bugs v5.0.3 - Jun 10. 2012. -Added back option to change Donate link color Download Now
Screenshots
Show Your Support
|
16 благодарности(ей) от: | ||
BCP Hung, Disco_Dave, john7911, josner, Judith2, mapleleaffans, Munkholm, Nacho Vidal, nchoate97, RichieBoy67, Rubio, sixpackspeak, Skaut, SyRiAn BoY, tareqbd, xxEarluxx |
Comments |
#842
|
||||
|
||||
Worked for me just fine in vb4.2.3
|
#843
|
||||
|
||||
Been using this a long time. It was installed by a professional as I was new to vb.
Question. I am the only one who can accept donation. I have looked every where to add others or even other user groups. I'm guess it's a simple fix but I have no idea and no one else seems to have posted this problem. Thanks in advance. |
#844
|
||||
|
||||
Quote:
|
#845
|
||||
|
||||
Quote:
When some one donates, it's not set to auto accept and auto update on the donations list. Once I have confirmed payment I then approve there donation on the web site and the donation list is updated. No other partner on our Web site can accept the donation on the web site apart from me. |
#846
|
||||
|
||||
If that is what you want, the only option is the pro version of the DBTech one, this mod has never auto confirmed donations.
|
#847
|
|||
|
|||
hi. how can i add this addon manually.?
i want to add manual to templates... PHP Code:
and i want to insert to navbar but i want to show only registered users etc... because of i must add manually... there isn't any option to users... thanks for your helps.. i will disable autoinsert on vbulletin settings... after that i will add manually. i added {vb:raw vsapaypal_donbar} but not worked.. |
#848
|
||||
|
||||
I don't have an /inc/plugins/ directory. I have an includes but does not contain the plugins dir.
Yes I have looked around the software and the directory is no where. |
#849
|
||||
|
||||
Does anyone know how to make this work when the forum is turned off?
I'm sick of perpetually begging my members to give money so need to do something drastic. |
#850
|
|||
|
|||
I know I am late, yet I have only now moved my vB 3.8.9 forum straight to vB 4.2.5.
I have been using the similar Donate hack on vB3, so it made sense to install this one. It looks similar, but there are some differences and I found a pretty big bug - surprising nobody talks about it in 57 pages of comments. I did find a workaround for the bug as I will explain. First of all, I compared the differences in what is sent to PayPal between the old and new version. This mod adds the following to the url string sent to PayPal: &sra=1&src=1&srt=1 Seems harmless enough, until you try to submit a donation for one month. This results in the following error on PayPal: "The link you have used to enter the PayPal system is invalid. Please review the link and try again." As I knew that only three parameters had been added, I tested each of them until I found the problem: srt=1 PayPal defines that parameter as follows: "Specify an integer with a minimum value of 2 and a maximum value of 52." Sure enough, as soon as I set srt=2, it worked. As I did not want recurring subscriptions, I made some changes to the .xml file to get it to work as it did in the vB3 version. I also decided to set the locale to US as otherwise, my mainly US subscribers were being presented with a German PayPal page. Find the following in VSa_PPDon.xml Code:
if(strstr($vbulletin->GPC['amount'],'|')) { $vsapp_get_amount = explode('|', $vbulletin->GPC['amount']); $vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick-subscriptions'; $vsapp_ppurl .= '&a3='.$vsapp_get_amount[0]; $vsapp_ppurl .= '&p3='.$vsapp_get_amount[1]; $vsapp_ppurl .= '&t3=M'; $vsapp_ppurl .= '&no_note=1'; $vsapp_ppurl .= '&sra=1'; $vsapp_ppurl .= '&src=1'; $vsapp_ppurl .= '&srt='.$vsapp_get_amount[1]; } else { $vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick'; $vsapp_ppurl .= '&amount='.$vbulletin->GPC['amount']; } Code:
if(strstr($vbulletin->GPC['amount'],'|')) { $vsapp_get_amount = explode('|', $vbulletin->GPC['amount']); $vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick-subscriptions'; $vsapp_ppurl .= '&a3='.$vsapp_get_amount[0]; $vsapp_ppurl .= '&p3='.$vsapp_get_amount[1]; $vsapp_ppurl .= '&t3=M'; $vsapp_ppurl .= '&no_note=1'; $vsapp_ppurl .= '&lc=US'; } else { $vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick'; $vsapp_ppurl .= '&amount='.$vbulletin->GPC['amount']; $vsapp_ppurl .= '&lc=US'; } I find this works better for me and avoids the error for one month subscriptions. I also found that PayPal will show an error for any subscriptions longer than 24 months, so avoid that. What I would really like, is an option to have this mod make use of the original vBulletin PayPal subscription system. Then a two month subscription could actually add the donor to the specified VIP group for those two months and then automatically remove the subscription to that usergroup, when the subscription expires. I do that manually, but it would be great if that possibility could be added to this mod. Is perhaps Valter, or someone else, up to the challenge? I have attached my modified .xml file, in case anyone here finds it useful. |
#851
|
|||
|
|||
Problem: Donations not appearing on view Donations list (admin)
I have been using the popular similar mod "Cyb - PayPal Donate" for years without problems - I am very familiar with that mod and therefore it was natural to upgrade to this one with vb 4.2.5. Since I wrote the previous post, my forum actually went back online and people have started donating. It was only then that I discovered this issue, that several people have mentioned here, yet I have seen no answers. As this mod obviously is working for some people, I now desperately need to find an answer to the following issue: vBulletin 4.2.5 PHP: 5.6.33 MySQL Version: 5.7.20-0ubuntu0.16.04.1 Using slightly modified version of this mod 5.0.3 (see previous post). The modifications only change what is sent to PayPal and fix the span issue, nothing database related. When a user uses the mod to make a donation, they get to the PayPal page normally and a PM is sent to them, but their donation is not added to the database. I have checked vsa_ppdonate directly and no entry is added at all. Consequently, I am unable to confirm the donation at all on the View Donations page. If I use: "Add Donor Manually", the user is added to the database and shown on the list and automatically confirmed. No months are given, but I can correct that with the Edit button. I even installed a fresh version of the forum and just installed this mod. The same problem occurred. So Vader, please look into this and resolve it. I can provide you with full access to my test forum to help diagnose this. Plenty of others have complained about the same issue. So let us get to the bottom of this problem and fix it. Test Forum: https://www.rifeforum.com/forum-425/ Feel free to join and test this. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|