Changes between Version 2 and Version 3 of PayPalDonations
- Timestamp:
- Jun 1, 2007, 9:36:47 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PayPalDonations
v2 v3 2 2 3 3 BOINC offers a donation system based on [http://www.paypal.com PayPal]. It is disabled by default; to enable it, add the following code to your `project/project.inc` file: 4 5 define("PAYPAL_ADDRESS", "paypal@example.com");[[BR]] 6 7 4 {{{ 5 define("PAYPAL_ADDRESS", "paypal@example.com"); 6 define("DONATION_CURRENCY", "EUR"); 7 }}} 8 8 '''PAYPAL_ADDRESS''':: 9 9 Email address, associated with !PayPal account that will receive money … … 17 17 It should be clearly stated where donation money is going to be used; therefore, a function named `donations_intro()` should be defined in `project/project.inc` file. It should use PHP ''echo()'' command to display generic information about donations. 18 18 19 Once the donation system has been enabled, a link to BASE_URL/donations.php should be added to project front page. In addition, BOINC forum software expects a file `project/donations.inc` to be present, containing settings for donation link display. An [ http://boinc.berkeley.edu/trac/browser/trunk/boinc/html/project.sample/donations.inc example file is provided] in the project.sample directory.19 Once the donation system has been enabled, a link to BASE_URL/donations.php should be added to project front page. In addition, BOINC forum software expects a file `project/donations.inc` to be present, containing settings for donation link display. An [source:trunk/boinc/html/project.sample/donations.inc example file is provided] in the project.sample directory.