Log in

View Full Version : Miscellaneous Hacks - Advanced Poll Options


MarkFL
01-07-2017, 10:00 PM
This product is the result of a request from SilverBoy (https://vborg.vbsupport.ru/member.php?u=6253) posted here:

vBulletin 4 Request - Poll checks (https://vborg.vbsupport.ru/showthread.php?t=324065)

Overview:

This product allows you to designate certain usergroups whose members will have access to the advanced poll voting permission options that you select as active. These advanced options are on a per poll basis, that is, each poll can have its own set of advanced permission settings. The setting from which you can choose are:

Minimum Post Count: Users will be required to have at least the designated number of posts before being able to vote on polls.
Minimum Length Of Membership: Users will be required to have been a member of the forum for at least the designated number of days before being able to vote on polls.
Recent Post Requirement: Users will have to have posted during the last number of designated days before being able to vote on polls.
Reputation Points: Users will be required to have at least the designated number of reputation points before being able to vote on polls.
Infraction Points: Users will be required to have no more than the designated number of infraction points before being able to vote on polls.
User Groups: Users will be required to be a member of at least one of the designated usergroups before being allowed to vote on polls.

As of version 2.0, you now have global settings that will apply to all polls, and can only be overridden by users with access to the advanced options.

A user who has access to these advanced options, will see them when creating/editing a poll as follows:

https://vborg.vbsupport.ru/attachment.php?attachmentid=155804&stc=1&d=1486924606

Updates:

Version 1.0.1:


Minor bug fixes.


Version 1.1:


Product now overrides usergroup and forum permissions to allow members of designated usergroups to vote.


Version 1.2:


When editing polls, entries with 0 as value display as blank.


Version 1.3:


Added setting to allow for selecting managing usergroups who can restrict poll voting by usergroup.


Version 1.4:


Added "Infraction Points" as an advanced poll option.


Version 1.5:


Added the option to require users to reply first to the poll thread before being allowed to vote.


Version 2.0:


Added settings for global options, that can only be overridden by users with access to the per poll advanced options.


Compatibility:

Tested and working on VB 4.2.x and may work on all 4.x versions of vBulletin.

Backup/Warning:

This product does alter your database, however it is always good practice to make regular backups and you should make a backup before installing ANY new mod.

As always, products are USE AT YOUR OWN RISK. I will provide support and do my best to help but no absolute guarantee is offered.

To Install:


Download and extract the attached .zip file.
Follow AdminCP -> Plugins & Products -> Manage Products -> Add/Import Product.
Click on "Choose File" and browse to the product .xml file that was packaged in the .zip file.
Click "Import."
You MUST enable the product in the settings before it will function.
Configure the remaining settings to your liking. Each setting has a detailed explanation of its use.


https://vborg.vbsupport.ru/attachment.php?attachmentid=155805&stc=1&d=1486924606

Support for this product can be found here:


MHB - Advanced Poll Options (http://mathhelpboards.com/vbulletin-products-61/advanced-poll-options-21768.html)
TAZ - Advanced Poll Options (https://theadminzone.com/threads/advanced-poll-options.144957/)

SilverBoy
01-08-2017, 05:32 PM
Good job my friend :)

MarkFL
01-08-2017, 05:37 PM
If you'd like any changes, please let me know. :)

SilverBoy
01-08-2017, 05:40 PM
OK, let me test it and tell you if there is any thing ;)

MarkFL
01-08-2017, 05:42 PM
I should have mentioned, all of the text on the new advanced options (the titles and descriptions) is phrased so you can translate, or change it as you see fit. Just look for global phrases that begin with:

markfl_advancedpolls

:D

SilverBoy
01-08-2017, 05:44 PM
Don't worry about this ;)
I have translated my forum till vb1.1.3 and 1.1.5 days (2001) ^_^

SilverBoy
01-08-2017, 07:08 PM
I tried to add a poll, and use only usergroups option and let other options blank, then I get this MySql error

Database error in vBulletin 4.2.3:

Invalid SQL:

INSERT INTO advancedpolls
(
pollid, postcount, membership, recentpost, reputation usergroups
)
VALUES
(
523, 0, 0, 0, 0, '4,2,16,15,35,6,5,13,1,3,47,46,7,14'
);

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'usergroups
)
VALUES
(
523, 0, 0, 0, 0, '4,2,16,15,35,6,5,13,' at line 3
Error Number : 1064
Request Date : Sunday, January 8th 2017 @ 09:06:35 PM
Error Date : Sunday, January 8th 2017 @ 09:06:35 PM
Script : http://www.manshor.net/forum/poll.php?do=postpoll&t=260571
Referrer : http://www.manshor.net/forum/poll.php?t=260571&polloptions=5
IP Address : 169.255.108.131
Username : ���� �������
Classname : vB_Database_MySQLi
MySQL Version : 5.5.52-cll

Stack Trace:

#0 vB_Database->halt() called in [path]/includes/class_core.php on line 1403
#1 vB_Database_MySQLi->execute_query() called in [path]/includes/class_core.php on line 444
#2 vB_Database->query_write() called in [path]/poll.php(339) : eval()'d code on line 26
#3 eval() called in [path]/poll.php on line 339

SilverBoy
01-08-2017, 07:36 PM
I found the bug ..

in (Save Advanced Options For New Poll) plugin you forget to add (,) between reputation and usergroups.
the code must be like this
$vbulletin->db->query_write("
INSERT INTO " . TABLE_PREFIX . "advancedpolls
(
pollid, postcount, membership, recentpost, reputation, usergroups

SilverBoy
01-08-2017, 07:41 PM
Another issue, when trying to delete any thread even if it didn't have a poll I get an error message
Fatal error: Call to a member function query_write() on null in /home/manshor/public_html/forum/includes/class_dm_threadpost.php(1545) : eval()'d code on line 1

SilverBoy
01-08-2017, 08:07 PM
Another issue, the system didn't let unregistered users to vote on the poll even if I add unregistered group to the group list that can vote if I disabled it in the usergroup global options (usergoup seetings) and in forum permissions.

MarkFL
01-08-2017, 10:13 PM
I found the bug ..

in (Save Advanced Options For New Poll) plugin you forget to add (,) between reputation and usergroups.
the code must be like this
$vbulletin->db->query_write("
INSERT INTO " . TABLE_PREFIX . "advancedpolls
(
pollid, postcount, membership, recentpost, reputation, usergroups

Yep, that was just a typo, I've fixed that.

Another issue, when trying to delete any thread even if it didn't have a poll I get an error message
Fatal error: Call to a member function query_write() on null in /home/manshor/public_html/forum/includes/class_dm_threadpost.php(1545) : eval()'d code on line 1

I guess your site need $vbulletin to be declared globally there...I've added that.

Another issue, the system didn't let unregistered users to vote on the poll even if I add unregistered group to the group list that can vote if I disabled it in the usergroup global options (usergoup seetings) and in forum permissions.

I'll look into that when I have more time. :)

SilverBoy
01-08-2017, 10:15 PM
Did you update the download link Mark?

MarkFL
01-08-2017, 10:19 PM
Did you update the download link Mark?

No, not until I get time to check ALL issues. No need to go through that process until I have everything checked out.

MarkFL
01-08-2017, 10:44 PM
Okay, yes in order for guests to be able to vote in polls you have to give them permission in the usergroup manager, and in forum permissions, just like any other usergroup. This product isn't going to override that. ;)

As for the other 2 issues, I will have an update uploaded when I am in for the evening. :)

SilverBoy
01-08-2017, 10:46 PM
now it is 2:46am right here Mark :p

MarkFL
01-08-2017, 10:50 PM
I'm 7 hours earlier. :)

MarkFL
01-09-2017, 12:24 AM
Update - Version 1.0.1:


Minor bug fixes.

MarkFL
01-09-2017, 01:25 AM
Update - Version 1.1:


Product now overrides usergroup and forum permissions to allow members of designated usergroups to vote.

X-or
01-09-2017, 06:22 AM
very good ! thank you for sharing this (even though I don't plan to use it anytime soon)

a suggestion, feel free to ignore
add poll option : override usergroup & forum permissions
add admin cp option : select group which can override usergroup & forum permissions

this way you can make the mod available for more groups, while restricting who can override the base permission, just my 0.02, again feel free to ignore

MarkFL
01-09-2017, 02:14 PM
Update - Version 1.2:


When editing polls, entries with 0 as value display as blank.

MarkFL
01-09-2017, 02:51 PM
Update - Version 1.3:


Added setting to allow for selecting managing usergroups who can restrict poll voting by usergroup.

MarkFL
01-14-2017, 01:15 AM
Update - Version 1.4:


Added "Infraction Points" as an advanced poll option.

Techno Cowboy
01-16-2017, 03:15 PM
Another Cool Tool Mark! :cool:

Installed & Running on vB 4.2.5 B1 {Heavily Modded & Themed}
One more hack (by you) that will become a keeper, instead of a tester for my "future" live creation ;)

:up: quality as always!
Cheyenne

MarkFL
01-16-2017, 03:48 PM
Another Cool Tool Mark! :cool:

Installed & Running on vB 4.2.5 B1 {Heavily Modded & Themed}
One more hack (by you) that will become a keeper, instead of a tester for my "future" live creation ;)

:up: quality as always!
Cheyenne

Music to my ears! :cool:

MarkFL
02-10-2017, 06:33 PM
Version 1.5:


Added the option to require users to reply first to the poll thread before being allowed to vote.

MarkFL
02-12-2017, 04:39 PM
Update - Version 2.0:


Added settings for global options, that can only be overridden by users with access to the per poll advanced options.