Quote:
Originally Posted by TimberFloorAu
Okies.
Followed full instructions, and upgraded to v 1.22
Week 29 looks ok at the moment.
In the process of uninstall and reinstall etc and the hiccups, all data and votes for week 28 are dead and gone.
Shame as our members will feel slightly concerned f their votes are pissing in th wind.
For testing purposes may I please make a suggestion !
Allow a 1 hr test version for this.
Whereby we can condense a totw to a toth , for testing purposes, to see if everything is propogating properly.
Then reset to totw afterwards, and delete any corresponding threads. This would mean that new totw would have to overwrite the week field, as this would have already been crunched by test week.
Do you know what I mean?
1. duplicate entry into week 28/29 now seems to be fixed.
2. all previous weeks entries and voting has disappeared. ( hence a test acct ) as 150 votes, on varying threads etc, over the course of a week, only to be lost in upgrade etc, is gonna piss so many ppl off, and lose the board credibility.
Regards Ozzy
|
Have tested it a daily cron and the transition seems to work well.
Good suggestion TimberFloorAu. Will proceed as suggested with the cron hourly test later today.
The previous week entries were damaged during the transition Sunday/Monday.
Quote:
Originally Posted by StonePilot
I would like to see a feature that allows for only one forum's posts be able to be nominated, it's a bit of work to have to disable every single forum except for the one that I want. Plus I have to remember to disable all new forums that are created.
|
Will add it in the next version. :up:
Quote:
Originally Posted by smirkley
Just an update, I am close to having a completed poll module created for use with CMPS.
Still a little testing needed, but so far it works.
I think it will just take a new module upload, and maybe a couple of the cmps poll template tweaks for esthetic purposes.
(and voted this hack here, as mod of the month  )
|
Well done there on the CMPS. Keep us posted.
Quote:
Originally Posted by TsirhCitna
I fixed my week 28 with a few simple MySQL edits.
I'm not sure where I fix the link to the week 29 poll though or this: Award Winner, Topic Of The Week 01, December, 1969
|
To fix the link to the week 29 poll, edit the table "nominate_topic_thread". It contains one entry with values (postid, threadid, pollid) for the current nomination thread. But, it's better to do a clean install.
Quote:
Originally Posted by smirkley
Followup, and bug report I think,..
It seems in testing that nominated posts displayed do not necessarily follow forum permissions by member group.
IE,...
If a nominated forum for some reason ends up in the trash bin or moved to a private or staff forum, the forum title as well as the votes still display publically on the totm poll topic.
Can "follow forum/member group permissions" be a feature added in the future for topics moved later to forums where member groups have no permissions? (I know you can specify which forums to allow/deny in the acp, but it would make sense to filter by member group permission masks also)
|
Have tested it and saw that vBulletin automatically handles forum permissions. The user following a link through the poll will receive a message telling him/her that "...he/she do not have permission to access this page. This could be due to one of several reasons:..."
Don't know how it's done on the CMPS side. Keep us posted
Quote:
Originally Posted by Hannan
The error is still there!
Thanks for responding fast
|
Please describe the steps that you are following so that I can replicate them on my side.
(All steps of the installation done? Cron file manually run at the first installation?)
Quote:
Originally Posted by soletrader
Does anyone know how to move the nominate button from next to the edit button to somewhere else? Thanks
|
Quote:
Originally Posted by soletrader
Any help with this is appreciated. Thank you.
|
- First, you must locate the "template hook" that you wish to use for the "nominate button". Let's call it "yourtemplatehook".
- Secondly, find the location within that template, where you wish to have the "nominate button" displayed. This location will be in between pieces of existing html code. Let's say preceeded by "prevHTMLLocationCode". Ensure that this piece of html code is unique (appears only once) in that template.
- Thirdly, open the product file "product-nominate_topic.xml" using WordPad for example and do the following:
1. Scroll down until you reach the plugins section
2. In the "global_setup_complete" plugin, add this line just after the "<![CDATA[":
$vbulletin->templatecache['
yourtemplatehook'] = str_replace("
prevHTMLLocationCode", "
prevHTMLLocationCode".$vbulletin->templatecache['nominate_topic_button'], $vbulletin->templatecache['
yourtemplatehook']);
3. In the "postbit_display_complete" plugin, change this line:
eval('$template_hook[postbit_controls] .= " ' . fetch_template('nominate_topic_button') . '";');
with:
eval('$template_hook[
yourtemplatehook] .= " ' . fetch_template('nominate_topic_button') . '";');
--
That should do it.
Quote:
Originally Posted by tekguru
This was working well but now that my team / users are starting to use the Mod we are gettign errors like:
PHP Code:
Database error in vBulletin 3.7.2:
Invalid SQL:
INSERT INTO vb_pollvote (pollid,userid,votedate,voteoption,votetype) VALUES ('32','10','1215502754','4','0');
MySQL Error : Duplicate entry '32-10-0' for key 2
Error Number : 1062
Request Date : Tuesday, July 8th 2008 @ 08:39:14 AM
Error Date : Tuesday, July 8th 2008 @ 08:39:14 AM
Script : http://www.4winmobile.com/forums/nominate_topic.php?do=nominate_topic_add&p=188812&securitytoken=1215501110-9dc08c878ed8d2682274ca2ad0f152cd85314268
Referrer : http://www.4winmobile.com/forums/4wm-news/16710-winterface-cool-fresh-breeze-world-windows-mobile-interface.html
IP Address : 86.139.133.53
Username : neilm
Classname : vB_Database
The poll seems to be updated okay but if these continue I'm tempted to turn it off for the moment as uses get scared by such errors.
Any ideas?
|
Fixed yesterday with version 1.22.
Open the v 1.22 attachment and upload the file located in "upload/includes/functions_nominate_topic.php" to the corresponding location on your site.