Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Donation Goal Thermometer Forum Block addon for Donation Manager Details »»
Donation Goal Thermometer Forum Block addon for Donation Manager
Version: 1.00, by SemperFideles SemperFideles is offline
Developer Last Online: Jun 2018 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 4.0.1 Rating:
Released: 01-25-2010 Last Update: Never Installs: 25
Additional Files  
No support by the author.

**This is an addon for the Donation Manager addon if installed as below.**

I've been waiting for something that will be an all-in-one donation system such as the Cyb Paypal Donate for vBulletin 4 but can't wait any longer. I really needed a donation goal monitor as it encourages people to donate who otherwise do not.

I like the features of the Donation Manager addon and decided I would search for some sort of script that would enable me to display donation progress. I found this free script: http://www.arkie.net/~scripts/thermometer/

I have implemented a basic method to display donation progress through both of these scripts. It is a manual process to update donation progress but the Cyb Donate plugin was as well.

DEMO: You can see my implementation in action at http://www.puritanboard.com/forum.php

Instructions
1. Download thermometer.php and upload that into your forum root.
2. Create a new Forum Block
a. AdminCP -> Forums & Moderators -> Forum Blocks Manager
b. Click Add Block
c. Block Title: Donate (or Support Us)
d. Active: Yes
e. Content Type: HTML
f. Content
PHP Code:
<img hspace="10" align="left" border="0" src="thermometer.php?Current=0&Goal=250&Width=100&Height=100&Font=2">
<
br><br>
<
form action="donate.php" method="post"
<
input type="submit" value="Donate" class="newcontent_textcontrol"> <br /> <br
</
form
g. BEFORE YOU SAVE, you must configure the thermometer in the Content block. All the settings are within the img attributes and you don't need to touch the thermometer.php file. Notice that img has the following src value:

thermometer.php?Current=0&Goal=100&Width=50&Height=100&Font=2
(1) Current=current donations received
(2) Goal=donation goal
(3) Width=width of the thermometer
(4) Height=height of thermometer
(5) Font=size of font from 1...whatever
(You can experiment with these settings but I found a width of 50 and Height of 100 with a font size of 2 makes my thermometer about right)
Once you save the Forum Block you can position it in your Block order. When you receive donations you simply edit the forum block and update the Current= value. It's not perfect but it's better than having no goal meter. When the user clicks on the Support Us link he is taken to the Donation System which allows him to donate.

ALTERNATIVE IMPLEMENTATION

You can set up the forum block to allow the user to select pulldown dollar amounts. I don't know how to pass the variables that the donation system uses or I would use them in my block. This block requires a bit more editing to get it working for your site.

Follow the same instructions as above but in the Content Block replace all with:
PHP Code:
<img hspace="10" align="left" border="0" src="thermometer.php?Current=6&Goal=400&Width=50&Height=100&Font=2">
<
br>
<
form action="https://www.paypal.com/cgi-bin/webscr" method="post"
<
input type="hidden" name="cmd" value="_xclick"
<
input type="hidden" name="business" value="email@doman.com">
<
input type="hidden" name="currency_code" value="USD"
<
select name="amount"
<
option value="10">$10</option
<
option value="20">$20</option
<
option value="50">$50</option
<
option value="100">$100</option
<
option value="500">$500</option
</
select
<
input type="hidden" name="no_shipping" value="1"
<
input type="hidden" name="no_note" value="1"
<
input type="hidden" name="lc" value="US"
<
input type="hidden" name="bn" value="PP-BuyNowBF"
<
input type="hidden" name="item_name" value="Forum Donation"
<
input type="hidden" name="cancel_return" value="http://www.forumdomain.com/donate.php?do=fail"
<
input type="hidden" name="return" value="http://www.forumdomain.com/donate.php?do=success"
<
input type="hidden" name="rm" value="2"> <br /><br /> 
<
input type="submit" value="Donate" class="newcontent_textcontrol"> <br /> <br
</
form
Set:
- Thermometer values as before
- email@domain.com to your paypal e-mail address
- value="USD" to a different currency if you want to accept by another currency
- option values to the amounts you want to donate and set the values between the option tags to the currency you want
- value="US" to your country
- value="Forum Donation" to what you want displayed in the paypal cart when the user donates
- forumdomain.com to your forum domain (there are two and they are the success and fail pages of the Donation System plugin)

Download Now

File Type: php thermometer.php (2.7 KB, 239 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 01-29-2010, 07:27 PM
durdan1 durdan1 is offline
 
Join Date: Aug 2009
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Marv View Post
Thanks for the mod, Rich. True, it?s not matching my forums style but life is imperfect. Even the light fifty isn?t a beauty and for sure not a lightweighted one but it?s pretty darn effective, so who cares ?

Does anyone have CYB?s old plugin ? Would love to see the code he was using in it. Guess it shouldn?t be to hard to rewrite this one for the 4.x series. Has anyone get in contact with CYB already ?
Here is the attached file for cybpals donate system version 4.8.2

If you get to work in 4.0 please give me a copy
Attached Files
File Type: xml CybPayPalDonate.xml (84.9 KB, 8 views)
Reply With Quote
  #23  
Old 01-30-2010, 12:09 AM
SemperFideles's Avatar
SemperFideles SemperFideles is offline
 
Join Date: Oct 2006
Location: Northern VA
Posts: 223
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by movslow View Post
Obvious easy mod for the forum block, but I can't get anything to load there.

It only shows where an image should be, w/nothing other than Support us underneath it.

I uploaded the thermometer.php to the forum root, and still nothing.

?

Please advise.

Thanks
:up:


/edit

I tried the 2nd code, and it shows a donate button, and the drop down box, but NO image.

??
Is thermometer.php loaded in your forum root?

Also, if you look at the page where I got the thermometer.php script it states the following:
Quote:
This script requires access to a web server that supports PHP and that has the "GD" graphic library installed.
Your web server may not have the GD graphic library installed.
Reply With Quote
  #24  
Old 01-30-2010, 12:13 AM
SemperFideles's Avatar
SemperFideles SemperFideles is offline
 
Join Date: Oct 2006
Location: Northern VA
Posts: 223
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Marv View Post
Thanks for the mod, Rich. True, it?s not matching my forums style but life is imperfect. Even the light fifty isn?t a beauty and for sure not a lightweighted one but it?s pretty darn effective, so who cares ?

Does anyone have CYB?s old plugin ? Would love to see the code he was using in it. Guess it shouldn?t be to hard to rewrite this one for the 4.x series. Has anyone get in contact with CYB already ?
You can always Modify the colors of the thermometer as others have done.

You know what's interesting? Donations are much higher than when I had the Cyb bar in the old plugin. I went to zero for almost a month when I had no donation status and then, Bingo, this thermometer started generating donations at a rate higher than when I had the Cyb plugin.

I've been working with websites for some 16 years now and I believe aesthetics are important but they aren't everything. I think there's a reason why many charities use the thermometer thing. I plan on keeping it in place. I'll probably figure out a way to modify somebody else's code just to make it autoupdate.
Reply With Quote
  #25  
Old 01-30-2010, 01:37 AM
tobe12's Avatar
tobe12 tobe12 is offline
 
Join Date: Mar 2006
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I installed it, but can see the Thermometer BLOCK anywhere on my forum
Reply With Quote
  #26  
Old 01-30-2010, 03:32 PM
Ranger375 Ranger375 is offline
 
Join Date: Jun 2007
Location: VA
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nm, fixed
Reply With Quote
  #27  
Old 01-31-2010, 07:18 PM
steven s's Avatar
steven s steven s is offline
 
Join Date: Aug 2004
Location: Greenville, SC
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Be cool to have this tied in with paid subscriptions.
Reply With Quote
  #28  
Old 02-01-2010, 01:05 PM
movslow movslow is offline
 
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SemperFideles View Post
Is thermometer.php loaded in your forum root?

Also, if you look at the page where I got the thermometer.php script it states the following:

Your web server may not have the GD graphic library installed.
This could be the case, would it be possible for you to attach the image, so we don't have to rely on our web host?

Thanks.
Reply With Quote
  #29  
Old 02-09-2010, 06:15 PM
movslow movslow is offline
 
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello?
Reply With Quote
  #30  
Old 02-09-2010, 11:28 PM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by movslow View Post
This could be the case, would it be possible for you to attach the image, so we don't have to rely on our web host?

Thanks.
Hello? There is no image, it's drawn by the php script. You can check AdminCP>Maintenance>View PHP Info and you should have a GD section showing it as enabled. If you're on a shared server you may need to contect your host.
Reply With Quote
  #31  
Old 02-12-2010, 02:29 PM
movslow movslow is offline
 
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Videx View Post
Hello? There is no image, it's drawn by the php script. You can check AdminCP>Maintenance>View PHP Info and you should have a GD section showing it as enabled. If you're on a shared server you may need to contect your host.
Copied directly from my PHP info.

Quote:
GD Support enabled
GD Version bundled (2.0.34 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.1.7
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
XBM Support enabled
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:39 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06068 seconds
  • Memory Usage 2,367KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete