The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Week / Month Topic Nominations Details »» | |||||||||||||||||||||||||||
Week / Month Topic Nominations Acknowledgments: This release would not have been possible without the existence of the former ?Topic Nominations? by J98680B2423E (Data) and "Post Thank You" by Abe1, which provided the mod?s core structure. A nice set of button and awards images have also been provided by princeedward. You can view screenshots at the original mod's thread: VB 3.7 Topic Nominations What is Topic Of The Week/Fortnight/Month? It adds a "Topic Of The Week/Month" nomination system for your community. Topic of the Week/Month is a contest that select posts on which your community can nominate as the best and then discuss them during the course of the selected week/fortnight /month. Any listed topic (post, thread) is eligible for the Topic of the Week/Fortnight /Month selection. This mod should also work in VB 3.7.x, but it has only been tested in VB 3.8. Features of New 2.0 Version:
2.0.0: Initial Release. 2.0.2: Fixed table column bug. MAKE SURE TO CLICK INSTALL Thanks to everyone who nominated this mod for October, 2009 You can vote for this mod at: this thread. Download Now
Supporters / CoAuthors Show Your Support
|
Comments |
#22
|
||||
|
||||
Note: I added a new troubleshooting tip to the 2nd post about file uploading. Hope that helps.
|
#23
|
|||
|
|||
Quote:
|
#24
|
||||
|
||||
@psychobike: read new post below for better solution.
|
#25
|
||||
|
||||
Nvm about it working with legacy. I get an error when I nominate (I didn't press the button last time, just checked to see if the button showed up):
PHP Code:
And then any time I try to use one of the special actions: PHP Code:
|
#26
|
||||
|
||||
@AzzidReign:
Thanks for testing. Here's the fix: you can do it manually or wait for the updated xml - same results either way. The problem only happens for updated installs. To fix, go to ACP -> Plugins & Products -> Manage Product -> Edit Product (for Topic Nominations) -> ADD to the "2.0.0 Install Code" and make sure you click the BOTTOM "Save" button: Code:
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."user` ADD `nominate_topic_user_received` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL"); |
#27
|
||||
|
||||
We use the original coders TOTW nomination system, its our most popular feature.
However, we have always had the issue of having to run the cron manually, i think this was an ongoing issue with this mod. Furthermore, can you please confirm that cron on weekly basis NOW works for this NEW mod... Also what is the process for upgrading from OLDER mod to this NEW mod... will we lose anything ? |
#28
|
|||
|
|||
Quote:
I use postbit legacy. I tried the mod out by nominating a thread. I then clicked on the "View Poll" option and it directs me to a page that says "The Administrator(s) did not defined a receiving forum for hosting poll results of the TOTW/TOTM contest". I do not see this option available in the acp vb options anywhere. What needs to be done to get this working. Btw, I do have a forum option selected where it says... Forum: Specify the ID of the forum that will receive threads containing results of the nomination contest. |
#29
|
||||
|
||||
Still getting:
PHP Code:
|
#30
|
||||
|
||||
@psychobike: wait for the updated xml, then apply the fix below.
That really strange you got that error. If you look at the line that say "mysql error", you see that it says "Duplicate column name 'is_manual'. That's should not happen because previous versions do not have that column. Did you manually add that column to the database? In any case, the fix is simple: FIRST: verify with phpMyAdmin or MySql Browser that you have the column 'is_manual' for the 'nominate_topic_thread' table, THEN remove from product_nominate_topic2.xml and reinstall (allow overwrite): Code:
$vbulletin->db->query_write("ALTER TABLE ". TABLE_PREFIX ."nominate_topic_thread ADD `is_manual` TINYINT(1) UNSIGNED DEFAULT '0' NOT NULL"); |
#31
|
||||
|
||||
@AzzidReign:
Did you save using the BOTTOM "Save" button? Note that the top button does not save edits to install code. Verify with phpMyAdmin or MySql browser that you have the column 'nominate_topic_user_received' in the 'user' table. If you look at the query that you should have added, it says to add that column to the 'user' table: Code:
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."user` ADD `nominate_topic_user_received` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL"); |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|