vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Per User Thread Limit (Per Forum) (https://vborg.vbsupport.ru/showthread.php?t=266317)

Jman423 07-05-2011 01:40 PM

Per User Thread Limit (Per Forum)
 
I've searched and found a few explanations that came close, but not quite what I am looking for.

How could I go about restricting a member to posting a single thread in a certain forum? The system would have to check to see if they have posted a thread in that same forum, and prevent them from creating another one.

It's probably more complicated than I would expect, but I figured I'd ask. I was hoping to find a MOD that would handle this, but the ones I found only limited the number of threads in a forum per usergroup instead of per user.

-Thank you

borbole 07-05-2011 02:00 PM

Quote:

Originally Posted by Jman423 (Post 2217014)
I've searched and found a few explanations that came close, but not quite what I am looking for.

How could I go about restricting a member to posting a single thread in a certain forum? The system would have to check to see if they have posted a thread in that same forum, and prevent them from creating another one.

It's probably more complicated than I would expect, but I figured I'd ask. I was hoping to find a MOD that would handle this, but the ones I found only limited the number of threads in a forum per usergroup instead of per user.

-Thank you

The only way to achive this would be with a custom mod. Try to request it at the request forums, at the paid one if you ware willing to pay to have this done for you or at the unpaid one if you want this for free.

kh99 07-05-2011 02:07 PM

You could just do something like this in a plugin using hook newthread_start:

Code:

if ($vbulletin->db->query_first("SELECT threadid FROM " . TABLE_PREFIX . "thread
                                      WHERE postuserid = " . $vbulletin->userinfo['userid'] . "
                                        AND forumid = " . $foruminfo['forumid'] . "
                                        AND visible = 1 LIMIT 1"))
{
    eval(standard_error("Forum Rules allow one thread per user"));
}


or if you'd rather create a phrase for the error message:

Code:

  eval(standard_error(fetch_error(phrase_name)));

BTW, in general borbole's right, in many cases a mod wouldn't be this small so you wouldn't be likely to get an answer here unless someone knew of an existing mod.


All times are GMT. The time now is 01:42 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.01072 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete