The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
PayPal Donations For vBulletin 3.5.0 Details »» | ||||||||||||||||||||||||||
Sorry Guys...I have disappeared from vB coding completely for the time being...RL is paying me $35/hour to ignore it lol. Hope you understand why I haven't been around... Paypal Donations For vBulletin 3.5 Version 2.02b Hack Provided and coded by )O( Cloudrunner )O( of The Noble Pagan. Release version: 2.02b Release Date: 03 July 2005 Change Log Paypal Donations 2.02
Special Thanks Special Thanks goes to the following people, without their support, this would never have happened: dsboyce8624 guvner SLeeeper And all of the Alpha Testers that helped out with this Hack! I couldn't have done it without you all, Thank you! )O( Cloudrunner )O( What Paypal Donations Is: Paypal Donations is a complete system that controls donations and how they are received via backend interfacing between your vBulletin server and Paypal's payment gateway server. The beauty of this marriage of servers is quite simply automation of the donation process as well as security of the transactions for both you, the administrator, and your users. With the Paypal donations system installed on your forums, you will be able to bring in that much needed income to not only keep your forums alive, but also to help defer costs of doing so to the users of your site without having to bug everyone and beg for money.This seamless integration of Paypal as your backend payment processor not only provides your user with a well known and safe payment processor, but you are saved the hassle of opening a merchant account with your banking institution as well as saves you time in the process as it takes only a few short minutes to sign up with Paypal if you are not already an account holder there. System Requirements OS: vBulletin 3.5 (if you are running this already, then your server has the required installation, GD libraries are required, as well as CURL capabilities for this system to work) Things To Do Before Installation Direct File Edits To vB Resident Files: 1 (needed to group templates in AdminCP)File Uploads: 34 (Of which 18 will be deleted after installation, leaving a total of 16 Files on your server) Direct Database Queries: None, the installer does these for you Direct Plugin Installation: None, the installer does these for you Direct Template Modification: None, the installer installs all new templates, and modifies the resident templates as needed The uninstaller will remove all modifications (to include the templates) should you decide to remove the system from your server. How To Install / Upgrade Paypal Donations Installation and Upgrading are as easy as a human like me could make it. Simply upload all the files from the archive to your server keeping the folder hierarchy intact and then point your browser to the installation file. On most servers it will be one of the following:
If you ever decide to remove the system, just upload the install files and folder again and run the installer and choose uninstall. The uninstaller will remove any and all modifications that it did to your files, database, and templates automatically as well. Its as easy as you can get! Time to install: less than five minutes depending on your upload speed. Steps To Perform After Installation
License Quote:
Final words You will need to add a link somewhere in your navigation system for vBulletin pointing your users to the donations page (if you installed the vBadvanced Module then you have a link on the home page, but you might want to add one in the nav bar as well), as well as setting up your paypal account to give IPN responses to you, you can do this in your Paypal Profile under Instant Payment Notification. To play in PayPal's Sandbox you will need to be registered with their developer network and setup a few sandbox accounts to play with the sandbox properly. I have throughly tested the sandbox functionality, and it is working until they decide to change coding standards again. I sincerely hope that you enjoy this hack, Please feel free to send feedback to tnp@noblepagan.com ! Thank you!)O( Cloudrunner )O( P.s. Should you feel the need to donate to me in thanks, I will not stop you , in fact I will say thank you and that your support is greatly appreciated. If you do donate to me for this hack, I will give the recognition here as well as on The Noble Pagan. You can find my donations page here (also works as a demo site should you feel the need to check it out): The Noble Pagan Donation Page Supporters / CoAuthors Show Your Support
|
Comments |
#792
|
||||
|
||||
forget it I refreshed the ACP numerous times and nothing so I closed it and restarted it and voila, it was there.
|
#793
|
||||
|
||||
I have a paypal donations link on my home page. I can I connect that to this hack so people get credit for their donations if they use the link on my main page. And when I say main page, I mean my page that is not vbulletin. anyone?
|
#794
|
|||
|
|||
I'm getting the following error:
Database error in vBulletin 3.5.1: Invalid SQL: INSERT INTO pmc_donation_paypalipn ( What would cause this? Also I don't seem to have any link or images that people can click on to donate money. Did I miss something during the install? |
#795
|
|||
|
|||
Quote:
Where did you find this? |
#796
|
|||
|
|||
Miss,
I'm finally getting around to installing this on my production site, and remembered that you had a way of editing the install script so it doesn't delete the existing data. In your solution you said to edit the product xml file. I looked all over and cannot find an xml file for installing this system. Is it in the hack zip? Thanks! |
#797
|
||||
|
||||
Quote:
delete Code:
<codes> <code version="2.0.2"> <installcode><![CDATA[$db->hide_errors(); $db->query_write("CREATE TABLE ".TABLE_PREFIX."donation_buttons ( id int(255) NOT NULL auto_increment, goalid int(255) NOT NULL default '0', amount decimal(10,2) default NULL, item_name varchar(127) NOT NULL default '', cn varchar(40) NOT NULL default 'Additional Instructions', cpp_header_image varchar(255) default NULL, cpp_headerback_color varchar(255) default NULL, cpp_headerborder_color varchar(255) default NULL, cbt varchar(255) NOT NULL default 'Continue Transaction', active int(1) NOT NULL default '1', description text NOT NULL, PRIMARY KEY (id) ) TYPE=MyISAM; "); $db->query_write("CREATE TABLE ".TABLE_PREFIX."donation_currency_exchange ( server varchar(255) NOT NULL default 'xe', base varchar(255) NOT NULL default 'USD', USD varchar(255) NOT NULL default '', AUD varchar(255) NOT NULL default '', CAD varchar(255) NOT NULL default '', EUR varchar(255) NOT NULL default '', GBP varchar(255) NOT NULL default '', JPY varchar(255) NOT NULL default '' ) TYPE=MyISAM "); $db->query_write("INSERT INTO ".TABLE_PREFIX."donation_currency_exchange (`USD`, `AUD`, `CAD`, `EUR`, `GBP`, `JPY`) VALUES ('1', '1', '1', '1', '1', '1')"); $db->query_write("CREATE TABLE ".TABLE_PREFIX."donation_donors ( id int(100) NOT NULL auto_increment, userid int(255) NOT NULL default '0', ip varchar(255) NOT NULL default '', total decimal(10,2) NOT NULL default '0.00', PRIMARY KEY (id) ) TYPE=MyISAM; "); $db->query_write("CREATE TABLE ".TABLE_PREFIX."donation_goals ( id int(255) NOT NULL auto_increment, title varchar(255) NOT NULL default '', description text NOT NULL, amount decimal(10,2) NOT NULL default '0.00', total_donated decimal(10,2) NOT NULL default '0.00', active tinyint(1) NOT NULL default '1', PRIMARY KEY (id) ) TYPE=MyISAM; "); $db->query_write("CREATE TABLE ".TABLE_PREFIX."donation_paypalipn ( txn_id varchar(255) NOT NULL default '', userid int(255) default NULL, test_ipn tinyint(1) default NULL, notify_version decimal(10,1) default NULL, verify_sign varchar(255) default NULL, first_name varchar(255) default NULL, last_name varchar(255) default NULL, payer_business_name varchar(255) default NULL, address_name varchar(255) default NULL, address_street varchar(255) default NULL, address_city varchar(255) default NULL, address_state varchar(255) default NULL, address_zip varchar(255) default NULL, address_country varchar(255) default NULL, address_status varchar(255) default NULL, payer_email varchar(255) default NULL, payer_id varchar(255) default NULL, payer_status varchar(255) default NULL, business varchar(255) default NULL, receiver_email varchar(255) default NULL, receiver_id varchar(255) default NULL, item_name varchar(255) default NULL, ip_address varchar(255) default NULL, quantity int(255) default NULL, invoice varchar(255) default NULL, memo varchar(255) default NULL, tax decimal(10,2) default NULL, option_name1 varchar(255) default NULL, option_selection1 varchar(255) default NULL, option_name2 varchar(255) default NULL, option_selection2 varchar(255) default NULL, payment_date varchar(255) default NULL, parent_txn_id varchar(255) default NULL, txn_type varchar(255) default NULL, payment_type varchar(255) default NULL, payment_status varchar(255) default NULL, pending_reason varchar(255) default NULL, reason_code varchar(255) default NULL, mc_gross decimal(10,2) default NULL, mc_fee decimal(10,2) default NULL, mc_currency char(3) default NULL, mc_handling decimal(10,2) default NULL, mc_shipping decimal(10,2) default NULL, settle_amount decimal(10,2) default NULL, settle_currency char(3) default NULL, exchange_rate decimal(10,4) default NULL, case_id varchar(255) default NULL, case_type varchar(255) default NULL, case_creation_date varchar(255) default NULL, valid tinyint(1) NOT NULL default '0', PRIMARY KEY (txn_id) ) TYPE=MyISAM; "); $db->query_write("ALTER TABLE ".TABLE_PREFIX."user ADD donor TINYINT(1) DEFAULT '0' NOT NULL"); $db->query_write("ALTER TABLE ".TABLE_PREFIX."user ADD showdonor TINYINT(1) DEFAULT '1' NOT NULL"); $db->query_write("INSERT INTO " . TABLE_PREFIX . "cron (`cronid`, `nextrun`, `weekday`, `day`, `hour`, `minute`, `filename`, `loglevel`, `title`) VALUES ('', '', '-1', '-1', '0', '15', './includes/cron/donation_currency_exchange.php', '1', 'Donations Currency Exchange Quotes')"); $db->show_errors();]]></installcode> </code> </codes> |
#798
|
|||
|
|||
MissKalunji,
I checked the file that is listed here and it does not contain an xml installer. I am downloading straight from this site. Has the install package changed? The version is Paypal Donations 2.02. Thanks! |
#799
|
|||
|
|||
I have added this script to my site, i have a premier account however when i click on donate, there is no donate button to allow me to make any payments.
also there is no paypal column in admincp. i cannot see what is wrong i have followed the instructions to the full. running vb 3.5.3 and vbadvanced v2.1.0 can anyone help? |
#800
|
|||
|
|||
Fixed. edited cpnav_paypal_donations.xml to show:
<?xml version="1.0" encoding="ISO-8859-1"?><navgroups product="vbulletin"> then installed script. |
#801
|
||||
|
||||
yep and add a goal and button for ppl to donate
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|