vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Moderator management system (https://vborg.vbsupport.ru/showthread.php?t=70850)

Snitz 05-26-2005 08:02 AM

Quote:

Originally Posted by angelicGrace
I would also like to know the answer to this one. I tried doing it on my own and got a world of no where. lol

oh it's easy, I figured it out:

Admincp >> Styles & Templates >> Search in Templates >> "footer"

search for:
Code:

<if condition="$show['modcplink']"><a href="$modcpdir/index.php?$session[sessionurl]">$vbphrase[mod]</a> -</if>
add after:
Code:

<if condition="$show['admincplink']"><a href="modmanagement.php?$session[sessionurl]">Mod Management</a> -</if>

angelicGrace 05-26-2005 12:01 PM

thank you muchlies. i think my brainw as turned off the day I tried to fix it myself. lol but note i didn't bother trying agian.

hitokiri battou 05-27-2005 05:12 AM

I have a quick question. I was wondering if there was a way to make it so only one admin can access this page? Like there is a way to set some admin and super admin and such. So is there a way i can make it so only one member or a certain member can access moderator managment and get PMed? Thanks in advance for any help.

Snitz 05-27-2005 07:35 AM

it is set so no one can access the page other than the admins
only admins can enter it!

VBUsers 05-27-2005 08:38 AM

great cant wait to see what happens. installed and ready to go thanks and i clicked install as well

H@K@N 05-27-2005 10:03 AM

Quote:

Originally Posted by larryd
I get a blank white page with 3.03; I assume there is no fix for this since I read through the entire thread and tried the couple things that were mentioned without success?

I have the same Problem, i think its caused by PHP5, because i had 4.3.11 and it worked, now i have php5 and i am getting a blank page.

Does somebody know how to fix this ?


th@nks and gr33tz

VBUsers 05-27-2005 04:48 PM

i just got like 50 PMs telling me my mods were doing there job. is that a glitch or will that happen daily?

hitokiri battou 05-27-2005 06:59 PM

Quote:

Originally Posted by Snitz
it is set so no one can access the page other than the admins
only admins can enter it!


Ya i know, i think you missunderstand my question. I was wondering if i can make it so only ONE specific user can access this info. Not all the admin, only one member, is this possible?

Snitz 05-28-2005 06:44 AM

ah I don't know, u'll have to ask the author :P

SilverBoy 08-04-2005 12:15 PM

I installed it on my board 3.0.7, but when I upgrade it to 3.0.8 it didnt work and give me 0 for all records.

any help?

sv1cec 08-04-2005 02:43 PM

If I remember correctly, this is the hack I have installed at least 5 times. As many, as the upgrades of vB, in other words. Just run the installation script again, if I remember correctly.

b00k 08-17-2005 03:30 PM

for some reason, everytime i run the modmanagement_install.php i get a vdeck cannot be found error page. Anythoughts as to why this is happening?


Thanks in advance :nervous:

*FIXED* end user error :rolleyes:

GetGamer.com 10-10-2005 04:39 PM

I have one problem and one question:

First, the problem...
This works almost flawlessly on my site. I can view the stats on modmanagement.php and everything is reported correctly. I configured it to send me a PM when someone falls outside the guidelines, but each week I'm getting a PM for EVERYONE on my staff (myself included) even though they have not exceeded the guidelines established through the admin. Any ideas why?

Now for the question...
I'd like to be able to modify modmanagement.php so that I can run it against any usergroup, maybe through a querystring variable. This would allow me to view reports on non-moderators (I have staff members that do not have moderator rights, believe it or not), and I'd also like to view reports by "team" (a specific usergroup). Is this an easy modification? Seems like this would be a nice little change that others could use as well.

bigmonay2k 10-16-2005 01:28 AM

Quote:

Originally Posted by Koutaru
Excellent hack :D Hopefully I'll be able to scare my mods into being more active with this thing ;)

Could there also be an email to the moderator who has been unactive for x days or has not posted x amount of threads to remind them of their duties?

hahaha this hack is funny, you talking like you pay them money to moderate your board :nervous:

brvheart 10-17-2005 05:31 PM

I have 3.0.7, installed fine etc, but I can not see the modmanagement.php page or from the link inside the admin cp, anyone give me a hand please?

Also if I delete the cron job, that just simply stos the mad PM's correct?

I get a blank page in the admin CP and a Page can not be displayed in the browser.

get these fixed and will be a I installed for sure....very nice hack.

angelicGrace 10-18-2005 01:52 PM

I rather depend on this too kepe a watchful eye on my mods. Has anyone tried using it with 3.5 or are there plans for an out right port to 3.5?

mtha 10-24-2005 10:47 AM

K, are you going to port this to 3.5.0?

proxx 10-28-2005 08:33 PM

This MUST be ported to VB3.5.... there so much demand for mods like this, yet noone is porting them.

I mean, if there a serious programmer who'll just port 5 of the good mods, I would be willing to pay to have it. (instead of waiting for months until some nice person ports it)

Stone Cold 3:16 10-30-2005 04:24 PM

Installer? Whooo! No file edits :p

Thanx!

dxguru 11-18-2005 06:08 AM

For those who want to use this great Mod to get stats just for the Super Moderator group (because like me, you have Moderators that work the entire site and do not assign Moderators specifically to individual forums) ...

In file functions_modmanagement.php
find
PHP Code:

$result $DB_site->query("SELECT user.* FROM ".TABLE_PREFIX."moderator moderator INNER JOIN ".TABLE_PREFIX."user user ON moderator.userid=user.userid"); 

and replace with
PHP Code:

$result $DB_site->query("SELECT user.* FROM ".TABLE_PREFIX."user WHERE usergroupid='5'"); 

find
PHP Code:

            foreach ($moderatorInfo as $userid => $moderatorData)
            {
                    if (
has_permissions_in_forum($data['forumid'], $userid))
                    {
                            
$moderatorInfo[$userid]['forums'][] = $data['forumid'];
                            
$hasForum true;
                    }
            } 

and replace with
PHP Code:

            foreach ($moderatorInfo as $userid => $moderatorData)
            {
#                    if (has_permissions_in_forum($data['forumid'], $userid))
#                    {
                            
$moderatorInfo[$userid]['forums'][] = $data['forumid'];
                            
$hasForum true;
#                    }
            



Abe1 01-25-2006 11:07 PM

<a href="showthread.php?t=106329" title="vBulletin.org Forum - Mod 106329">Here</a> you go. A vb 3.5 version!

FunaGuy 03-14-2006 11:22 AM

its not working plz fix it
i pm u all my inform

kuscheltier 03-18-2006 08:14 PM

Nicer Hack, but it works not fine...

On the Statistic Page (modmanagement.php) i can the the correct info's. When i run the cron, i get also only the korrekt PM's.

BUT when the cron run automatically, i get every possible PM for every moderator. have somebody any idea , whats going wrong ?

kirkmkiv 03-20-2006 01:55 AM

My site is sharing the user database, how will this hack react when there is a user who is under the moderator usergroup but the forum that they moderate does not "exist"? Thanks

Abe1 03-20-2006 02:35 AM

As long as you add the usergorup to the list, then they will show up.

kirkmkiv 03-20-2006 11:19 PM

the server slows down and eventually crashes when I load modmanagement.php

the cron job sent out hundreds of PM's to each admin saying every single mod has not posted, viewed, etc... If anyone else has these problems please let me know. I got this hack working on one of my sites without much effort, but the other website with a shared user database does not seem to cooperate.

I would love to get it to work seeing as we have a hefty mod staff between the two sites.

kirkmkiv 03-24-2006 10:03 PM

anyone ?

precharge 08-03-2006 07:29 AM

I get

PHP Fatal error: Call to a member function on a non-object in modmanagement_install.php on line 225

Ideas?

DF-inside 08-07-2006 07:33 PM

Can anyone tell me if this hack is workin on VBB3.6.0?

YHB 10-22-2007 08:59 PM

Quote:

Originally Posted by precharge (Post 1043316)
I get
PHP Fatal error: Call to a member function on a non-object in modmanagement_install.php on line 225Ideas?


I get this error as well...anyone??????


All times are GMT. The time now is 09:40 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.01450 seconds
  • Memory Usage 1,800KB
  • 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
  • (4)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (30)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