vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Removing limits on character numbers in a certain post or thread/for a certain person (https://vborg.vbsupport.ru/showthread.php?t=211655)

MTGDarkness 04-19-2009 07:00 PM

Removing limits on character numbers in a certain post or thread/for a certain person
 
I have the issue at my site that a few posts need to be really, really big. Like, massive. And I really don't want anyone to be able to make non-approved posts that size-just me and one or two of my mods.
I've been trying to work this in to a plugin, but I've had no luck so far.

In postdata_start.

PHP Code:

if ($userid=151)
{
$postmaxchars=0;


PHP Code:

if ($userid=151)
{
$options['postmaxchars']=0;


PHP Code:

if ($userid=151)
{
$vbulletin->options['postmaxchars']=0;


(151 is the uid of the guy who needs to make the 50-page-posts)
It doesn't work. What do I have wrong, and how can I do this right?'

Dismounted 04-20-2009 05:56 AM

Did you look inside the post data manager file and see how things are called there?

MTGDarkness 04-20-2009 09:47 AM

I have no idea what you're talking about. :p
I assume you mean the base php file that commands posts? No, I don't know which file that is. :o I have debug mode on in my Admincp, and it gave me the variable $vbulletin->options['postmaxchars'] as the one for the maximum characters in the post.

Lynne 04-20-2009 02:13 PM

Find the postdata_start plugin in the code. Look at how variables are called around that hook. $userid is NOT a valid variable there.

MTGDarkness 04-20-2009 02:56 PM

So it would be $something->something['something'], I assume...

I've forgotten how to look for hooks in the files without looking through each file. :o

Lynne 04-20-2009 03:41 PM

Get a text editor that allows you to search in all files in a directory. There have been threads about good editors that do this. I'm on a Mac and use BBEdit which allows me to do this. (I think it is a very, very necessary tool when working on a site!)

MTGDarkness 04-20-2009 05:21 PM

$this->info['user'] is the correct var, right?

EDIT: I don't think so... I also tried $this->fetch_field['userid'] and it didn't work. I'm a little lost here. Well, more than a little.

Lynne 04-20-2009 07:01 PM

$this->info['user'] would not be right if you are looking for the userid. To be honest, I'm not sure that I would use that hook location. I've played with options before and set them differently based on either usergroup or forum or userid and used hooks like fetch_forumind and search_results_start and.... others, I'm not gonna go list them all. Have you tried any other hook locations? (And, of course, look at the code around that hook to see what variable you should be using first.)

MTGDarkness 04-21-2009 08:36 AM

I'll try some other hooks. Thanks.

MTGDarkness 05-01-2009 02:04 PM

Nope. Still lost. No clue. And I really need this.


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.01030 seconds
  • Memory Usage 1,734KB
  • 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
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete