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 |
#822
|
|||
|
|||
Hello
We have a problem on my forum with date, i see d-m-y, how to fix? Regards |
#823
|
|||
|
|||
Same here!
|
#824
|
|||
|
|||
And another question from a n00b programmer: I am using a different Style and I don't see the donate button in my default style, only in the Test style which happens to be the renamed default style. How can I fix this? Donation page does also not show up under the quick links.
Thanks! |
#825
|
||||
|
||||
Is there a way to confirm the actual amount of the donations? I mean after the fees.
For example a 5 USD donation only gives you 4,5 USD. If I try to edit the amount to 4,5 USD, it changes to 4 USD... ~~Edit~~ Changing "amount" type to DECIMAL(6,2) added a .00 decimal to the amounts on the donation list, but if I try changing that to .50 via the plugin's "edit" option, it gets reset back to .00 If I edit the amount in the database itself, there's no problem with the decimals... What am I missing? ~~Edit2~~ Okay, I solved it. Turns out I also had to go to "ACP>Plugins & Products>Plugin Manager>Product : VSa - PayPal Donate>VSa - PayPal Donate - Ext" and change both instances of: Code:
'amount' => TYPE_UINT, Code:
'amount' => TYPE_DECIMAL, |
Благодарность от: | ||
midnz |
#826
|
||||
|
||||
This modification does not handle the donations as actual "donations" - they are billed as regular "payment".
Here's how you can change that: Edit the xml (before installation) or go to ACP>Plugins & Products>Plugin Manager>Product : VSa - PayPal Donate>VSa - PayPal Donate - Ext (if you already have it installed) and: 1. Locate: Code:
$vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick'; Code:
$vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations'; PayPal doesn't allow creating subscription links for donations. There are two ways of dealing with that: 1. We can remove the "amount" from the donation link which will allow people to manually add said amount on the PayPal's donation page. If you open PayPal's donation page without a set amount, you will be able to select "Make This Recurring (Monthly)"*, which will run until the Donator clicks unsubscribe in his PayPal account. *Seems only possible when viewing PayPal with US, GB or AU locale selected. Unfortunately, I can't readjust the modification to make this option work perfectly, but here is the bare minimum: 1.1. Locate: Code:
$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]; Code:
$vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations'; Code:
$vsapp_ppurl .= '&tax=0'; $vsapp_ppurl .= '&shipping=0'; $vsapp_ppurl .= '&no_shipping=1'; Code:
$vsapp_ppurl .= '&lc=US'; //Either US, GB or AU will work. Code:
each month (check the box on PayPal) 2. Use the original payment system for subscriptions. Lemme explain how the subscription variables work so that you know how to best edit them for yourself: a3 - the amount p3 - duration of the subscription t3 - unit of the duration - D, W, M, Y (Days, Weeks, Months, Years) src - whether the payment is supposed to be recurring (0 - no, 1 - yes) str - how many times should the payment recur (1-52) sra - if the recurring payment fails, should PayPal try two more times before cancelling the subscription (0 - no, 1 - yes) no_note - whether to ask for a note for the recurring payment (1 - no <-- always choose that for subscriptions) So, if you locate: Code:
$vsapp_ppurl .= '&p3='.$vsapp_get_amount[1]; Code:
$vsapp_ppurl .= '&p3=1'; ~~ It's probably possible to edit the mod to use a custom length of the subscription too, but I don't have a business PayPal account so I can't test that. (Payment Subscriptions are only available for business accounts). |
#827
|
|||
|
|||
I have been using Donate successfully for a while but about 6 months ago it stopped working. People can make a donation but it does not appear in my paypal account. Do you have any suggestions?
The paypal account is correct. |
#828
|
|||
|
|||
Hi iv have not long started using this app tho had it installed for a while and have noticed when people donate all goes threw but it does not show up on the View Donations page any advice?
I also made the $vsapp_ppurl = 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations'; change |
#829
|
|||
|
|||
Importing Product, Please Wait...
[:] Transferring your previous Donations to a new version... Fatal error: Call to a member function fetch_array() on a non-object in /home/abcdd/public_html/core/includes/adminfunctions_product.php(881) : eval()'d code on line 10 |
#830
|
|||
|
|||
everything is ok, but the date is wrong, suggestions?
EDIT: fixed, replaced all formats d m y to %d%m%y in the file xml .... |
#831
|
|||
|
|||
Quote:
i changed ... everything good but i want to use month custom day ... but only this option not working. working en language but i'm changing language but not working... |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|