vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Minimum words/chars to post? (https://vborg.vbsupport.ru/showthread.php?t=40001)

SteelFrog 06-18-2002 10:38 AM

Minimum words/chars to post?
 
Is there anyone who has a hack that sets the minimum number of chars/words needed to post?
I just hate people upping their post counts by posting only "Yes" or "Sure" or something similarly short.

Is there any way I can stop this?

Thanks in advance.

Logician 06-18-2002 11:55 AM

yep possible..

Edit newreply.php find:

PHP Code:

  // check for subject and message
  
$message=trim($message);
  if (
$message=="") {
    eval(
"standarderror(\"".gettemplate("error_nosubject")."\");");
    exit;
  } 

After that add:

PHP Code:

  
  
if (strlen(trim($message))<X) {
    eval(
"standarderror(\"".gettemplate("too_short")."\");");
    exit;
  } 

Replace X with the min. char number you want and create a new template named "too_short" via Admin CP. This hack applies only to new replies. Not likely but if you have a problem with newthreads too, apply the same code to new.thread.php

A few points:
* Remember: smiley text or bbcode count as chars too.
* This wont stop your users to pass it with a text like:
"yes.............................................. ....................."

Another hack I use in my board is to check vowel count. If the message does not have a vowel or enough vovel I dont let it pass, since it's either a meaningless text like "ghgjhgkjg" or a very short answer like "no" or ": )"

Enjoy..
Logician


All times are GMT. The time now is 05:51 AM.

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.01952 seconds
  • Memory Usage 1,714KB
  • 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_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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