Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
Commbull (Community Bulletin) 5.1b Details »»
Commbull (Community Bulletin) 5.1b
Version: 5.1a, by grandeur_69 grandeur_69 is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.8.4 Rating:
Released: 12-16-2009 Last Update: 02-03-2011 Installs: 208
DB Changes Uses Plugins Template Edits
Re-useable Code Additional Files Translations  
No support by the author.

Community Bulletin:

This mod grabs all the latest information in your forum (posts, threads, events, birthdays, etc) and puts them into a newsletter to be sent to all your members that subscribe.

This mod has been around a long time and gone through many versions. It has been a paid version for a number of years with great success, but it's time to pass on the reigns.

[edit Feb 03, 2011]
Attempted fix for sending to users that are part of multiple user groups

[installation]
- upload some files
- upload the product.xml
- make 1 mod to the usercp options template
- FULL DETAILS in the README.txt

[note] many people ask why all the images, etc don't show up in the HTML version of what is in your forum. This is because most mail clients strip out the CSS and vbulletin is 99% CSS. I have created an HTML version that is nice and clean, but is forum independent. If you know what you are doing, you can edit this HTML file and build your own newsletter.

Download Now

File Type: zip html_newsletter_images.zip (3.9 KB, 935 views)
File Type: zip commbull.zip (52.1 KB, 686 views)

Screenshots

File Type: jpg commbull_edit.jpg (27.2 KB, 0 views)
File Type: jpg commbull_email_html.jpg (29.7 KB, 0 views)
File Type: jpg commbull_email_txt.jpg (19.7 KB, 0 views)
File Type: jpg commbull_html.jpg (24.0 KB, 0 views)
File Type: jpg commbull_sending.jpg (19.4 KB, 0 views)
File Type: jpg commbull_txt.jpg (24.4 KB, 0 views)
File Type: gif masthead_green_tab.gif (1.2 KB, 0 views)
File Type: gif masthead_green_tab_selected.gif (767 Bytes, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
M Shaker

Comments
  #182  
Old 08-21-2010, 01:59 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

From phpMyAdmin or from vBulletin AdminCP | Maintenance | Execute SQL Query, typemin and execute the following:

Code:
ALTER TABLE user DROP receivebulletin
Then reinstall.
Reply With Quote
  #183  
Old 08-21-2010, 02:10 PM
grandeur_69 grandeur_69 is offline
 
Join Date: Feb 2003
Location: Kelowna, BC, Canada
Posts: 166
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by masterme View Post
Unfortunally I do not get it to work. Installed fine and am able to do all the settings. But no matter what I do, I do not receive any newsletter.

I have tried smtp and tried without. Tested if the username and pw were correct, check.
Also checked with my co-admin with an gmail adres, did not receive it too.

I have my own server and manage it myself, so those settings (max send per hour, safe mode etc) are ok.

Any more ideas what could be the cause of the trouble?
commbull simply uses vbulletin's mail sending function, so the problem is not likely to be from commbull itself.

check 2 things:
- the vbulletin mailqueue table to see if they are being added there
- server maillog to see how they are being handled by your server
Reply With Quote
  #184  
Old 08-21-2010, 02:17 PM
grandeur_69 grandeur_69 is offline
 
Join Date: Feb 2003
Location: Kelowna, BC, Canada
Posts: 166
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kartik786 View Post
I dont know why this guys request was completely ignored

https://vborg.vbsupport.ru/showpost....&postcount=123

I have similar issues and would love to use this mod.

please let me know how to resolve this error :
i'm not entirely sure why the uninstall did not drop the column receivebulletin, as the uninstall info is pretty straight forward and drops the 3 columns that are added.

My guess might be that you do not have permissions to use the SQL query "show columns", as both the install code and uninstall code check to see if the columns are there before installing / uninstalling.

I may have to figure out a way to check that "show columns" actually returns the proper results before running these checks.

to manually uninstall:
Code:
ALTER TABLE user DROP receivebulletin;
ALTER TABLE user DROP INDEX receivebulletin;
ALTER TABLE user DROP receivebulletin_type;
Reply With Quote
  #185  
Old 08-21-2010, 02:18 PM
kartik786 kartik786 is offline
 
Join Date: Aug 2005
Location: India
Posts: 175
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks dj,

After doing that, another error crawled up

Database error in vBulletin 3.8.3:

Quote:
Invalid SQL:
ALTER TABLE user ADD receivebulletin_type SMALLINT (5) UNSIGNED DEFAULT '1' not null;

MySQL Error : Duplicate column name 'receivebulletin_type'
Error Number : 1060
Request Date : Saturday, August 21st 2010 @ 11:13:37 AM
Error Date : Saturday, August 21st 2010 @ 11:14:35 AM
Reply With Quote
  #186  
Old 08-21-2010, 02:20 PM
kartik786 kartik786 is offline
 
Join Date: Aug 2005
Location: India
Posts: 175
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the quick support,

Does anything change knowing that I already dropped a table as suggested by DJ ?

Appreciate the promptness in response

Quote:
Originally Posted by grandeur_69 View Post
i'm not entirely sure why the uninstall did not drop the column receivebulletin, as the uninstall info is pretty straight forward and drops the 3 columns that are added.

My guess might be that you do not have permissions to use the SQL query "show columns", as both the install code and uninstall code check to see if the columns are there before installing / uninstalling.

I may have to figure out a way to check that "show columns" actually returns the proper results before running these checks.

to manually uninstall:
Code:
ALTER TABLE user DROP receivebulletin;
ALTER TABLE user DROP INDEX receivebulletin;
ALTER TABLE user DROP receivebulletin_type;
Reply With Quote
  #187  
Old 08-21-2010, 03:43 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kartik786 View Post
Thanks for the quick support,

Does anything change knowing that I already dropped a table as suggested by DJ ?

Appreciate the promptness in response
Yes: Ignore the first DROP as you've already done that. Run the other two:

Code:
ALTER TABLE user DROP receivebulletin;
ALTER TABLE user DROP INDEX receivebulletin;
ALTER TABLE user DROP receivebulletin_type;
Reply With Quote
  #188  
Old 08-22-2010, 04:58 PM
kartik786 kartik786 is offline
 
Join Date: Aug 2005
Location: India
Posts: 175
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay Installed successfully but have some internal issues with my vendors code conflicting with this.. lets see how it goes.
Reply With Quote
  #189  
Old 08-22-2010, 05:10 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Those are three separate SQL statements:

Code:
ALTER TABLE user DROP receivebulletin;
That one failed because you already deleted that table.

Try the following two separately. If you get an error like you did above, basically saying the table doesn't exist, don't worry about it - that's just telling you there's nothing to delete.

Code:
ALTER TABLE user DROP INDEX receivebulletin;
Code:
ALTER TABLE user DROP receivebulletin_type;
When all of those are removed, then you can reinstall the add-on.
Reply With Quote
  #190  
Old 08-22-2010, 05:14 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, and if you are using a table prefix, that needs to be prepended to the SQL statement:

Code:
ALTER TABLE {TABLE-PREFIX}user DROP receivebulletin;
ALTER TABLE {TABLE-PREFIX}user DROP INDEX receivebulletin;
ALTER TABLE {TABLE-PREFIX}user DROP receivebulletin_type;
ReplaceE {TABLE-PREFIX} with your actual prefix.
Reply With Quote
  #191  
Old 08-26-2010, 08:16 PM
Sunray Sunray is offline
 
Join Date: Mar 2007
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Thanks for this great mod very useful.

I have installed it on vB 4.0.5 boad and send my first community newsletter to the admins for test. We received it. Then I sent it to all my members but unfortunately nobody received it.

I didn't changed any other options exepted the selection of usergroups.
Does somebody have had the same problem and can help me please ?

Thanks in advance

Cordially
Reply With Quote
Reply

Thread Tools

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 02:46 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04825 seconds
  • Memory Usage 2,354KB
  • 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
  • (8)bbcode_code
  • (5)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
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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