vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Moderator Activity Logging (https://vborg.vbsupport.ru/showthread.php?t=17206)

dost 08-23-2001 03:08 PM

Thanks for the reply Deacon Frost. I did that change but the moderator activity still isn't recorded. I see that the modlog table is empty when I look at it with phpMyAdmin. But I'm not getting any errors. Any idea?

inetd 08-26-2001 06:22 AM

If the moderator will delete or will change the post, it will be mirrored in logs or not?

Deacon Frost 08-26-2001 02:09 PM

Change on Postings will not be logged, only changes on Threads.

@ DoST: Sorry, I have no idea what the matter is. BTW; Turkey is a great Country for Holidays :) (specially arround ?ludeniz, Fethiey)

DarkReaper 08-26-2001 04:03 PM

Yay! Great job on the new version, it works great and looks a whole lot better!

dost 08-26-2001 05:38 PM

[QUOTE]Originally posted by Deacon Frost
Change on Postings will not be logged, only changes on Threads.

@ DoST: Sorry, I have no idea what the matter is. BTW; Turkey is a great Country for Holidays :) (specially arround ?ludeniz, Fethiey)

SirSteve 09-20-2001 05:12 AM

Quote:

Originally posted by Deacon Frost
The english file. Rename to "modlog.php"
I had to make a change in here from php4? to php? to get mine to work.

magistr 09-22-2001 08:30 AM

yhis is cool hack
great man
tanx

it work with 2.0.3

but please edit links in admin/index.php

original:
Now, open admin/index.php

and search for this (or something like this):
________________________________________
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Stats & Logs"); ?>
</table>
<a href="stats.php?s=<?php echo $session[sessionhash]; ?>"> View Statistics </a><br>
<a href="adminlog.php?s=<?php echo $session[sessionhash]; ?>"> View Admin Logs </a>
</td></tr>
________________________________________

and replace it to
________________________________________
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Stats & Logs"); ?>
</table>
<a href="stats.php?s=<?php echo $session[sessionhash]; ?>"> View Statistics </a><br>
<a href="modlog.php4?showLimit=25"> View Moderator Logs </a><br>
<a href="adminlog.php?s=<?php echo $session[sessionhash]; ?>"> View Admin Logs </a>
</td></tr>
________________________________________

FINISH. Just upload "modlog.php" into /admin

Please DO NOT send any mails dependig on this script to me.
I will not answer. Using is on your own risk !

edit here:
<a href="modlog.php4?showLimit=25"> View Moderator Logs </a><br>

replace:
<a href="modlog.php?showLimit=25"> View Moderator Logs </a><br>

YourHostSucks 09-29-2001 02:33 AM

I installed the hack.. but it is not working..

--
FILE UPDATED: May 21, 2001 6:50 am PST
--

was what I downloaded, it shows no moderator activity,
I hit refresh alot to! hehe -=/

Plus if I goto /adminmodlog.php , I do not have to enter my password to access this? wierd...

DarkReaper 09-29-2001 02:52 AM

Make sure its in /forums/admin/ and not /forums/.

YourHostSucks 09-29-2001 09:32 AM

huh? .. o guess i made a typo in my post.. ;)

/adminmodlog.php = /admin/modlog.php

hehe

fxs158 10-11-2001 04:02 AM

Hi all,

I did this hack and it works great wit exeption of one feature. It seems that wheather i move delete or copy a topic as an admin. The mod hack reports it as a move. Any ideas how yo fix this? Also are there any hacks to monitor suspensions or banning?

YourHostSucks 10-11-2001 05:03 AM

Anyone have a answer to my problem? :)

It is not logging anything..

Thanks.

fxs158 10-14-2001 04:44 PM

Up!

YourHostSucks 10-14-2001 05:12 PM

Agreed.. .*bump* (lol)

Come on someone has to have a answer.. ;)

Thanks,

MW[MWGN] 10-23-2001 01:17 PM

I am not sure if someone has done this already, but you can add a link to the Moderator Logs in the Control Panel :).
Code:

In /admin/index.php
Find:
<a href="stats.php?s=<?php echo $session[sessionhash]; ?>"> View Statistics </a><br>

Add before that:
<a href="modlog.php"> View Moderator Logs</a><br>

Done =)

Edit: Oh damn, I knew someone did it already =), sorry, I didn't have the time to read the whole thread, hehe.

cyrus 10-23-2001 01:34 PM

what browser do yo use overgrow ?? Is that your browser in the screen captures you put on the first page ?? Looks very neat indeed !!

DarkReaper 10-23-2001 03:37 PM

That's Opera - The Fastest Browser on Earth :p

sharkito 11-04-2001 03:52 PM

First of all, congratz goes to Overgrow for that usefull hack !

I wasted so many times to find how to make it working on my forum, installing updates, finding correct variables etc.... i deceided to include here my working installed one... I think it will help out some of you because that thread is a bit confusious now :D

[edit: please no posting of full vB php files]

WEBDosser 11-04-2001 05:04 PM

Adding this to your AdminCP in vb2.0.3.
Download and open index.php from your admin dir.

FIND:

<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Options"); ?>
</table>
<a href="options.php?s=<?php echo $session[sessionhash]; ?>&action=options"> Change options </a>
</td></tr>

PLACE UNDER IT THIS:

<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("MOD Logs"); ?>
</table>
<a href="modlog.php?s=<?php echo $session[sessionhash]; ?>"> Moderator Logs </a>
</td></tr>

Adding this to your AdminCP in vb2.2.0.
Download and open index.php from your admin dir.

FIND:

makenavoption("vBulletin Options","options.php?t=0","<br>");

PLACE ABOVE IT THIS:

makenavoption("Moderator Logs","modlog.php?","<br />");

Upload index.php to your admin dir.. That's it..

SirSteve 11-08-2001 02:09 AM

This work on 2.2.0 ?

xug 11-08-2001 10:56 AM

I installed it on VB2.2.0 and had no errors.

I tested it still no errors.

Than I did look in the modlog option and see only 50% of the data that needs to be recorded !!

Thread name, Mod and date are redorded

From and to are not !!

Please help me out on this one.

Frank-kun 11-08-2001 03:26 PM

xug...is your table set up correctly? Remember, from and to need to be NULL, and there needs to be no default set (according to the instructions). If the table isn't set up right, the data will either not go into the table or you'll bomb out. ^_^

It works like a dream on my board running 2.2.0. Thanks for the great update to this hack.

xug 11-08-2001 10:15 PM

Hi Frank-kun

I used this query

CREATE TABLE modlog (
type tinyint(1) DEFAULT '0' NOT NULL,
userid int(10) DEFAULT '0' NOT NULL,
threadid int(10) DEFAULT '0' NOT NULL,
threadtitle varchar(100) NOT NULL,
fromforumid smallint(5),
toforumid smallint(5),
timestamp int(11) DEFAULT '0' NOT NULL
);

Please let me know if this is right or not, if not
what do I need to do ?

Thanks

Syphin 11-08-2001 11:23 PM

ive had this running for about a week... And now that i look at it again... Im having the same problem as xug... =/

-Syphin

Itay 11-10-2001 08:51 AM

Any chance someone can post a new file with all the fixes for 2.2.0 and if not, just compile a list of the changes you need to do for it to work?

chaz7979 11-15-2001 04:27 AM

Quote:

Originally posted by Syphin
ive had this running for about a week... And now that i look at it again... Im having the same problem as xug... =/


-Syphin

I'm with him on this one. I could use The final 2.2.0 version.

Psychdrone 11-23-2001 01:35 AM

I am also with him, as i think this should be interegated into future V_bulletions!

Psychdrone 11-23-2001 06:47 PM

so could someone release a 2.2.1 version?

almightyone 12-02-2001 03:38 AM

i was curious to if anyone could make this thing show who edited a poll in the options and the who a mod banned deal ad so on would be real great

xug 12-02-2001 10:53 AM

Please help us with an update ! Thank you so much.

Psychdrone 12-02-2001 08:34 PM

Ya I also made a post in requests cocerning this, that I think any hacker that are going to do this code should read over first!
Here


This would be really really great!

and would probaly go down as one of the best hacks ever ;) ;) :D

xug 12-02-2001 09:01 PM

broken link!

Psychdrone 12-03-2001 12:21 AM

SOAB i knew that would happen

WEll heres a go again

https://vborg.vbsupport.ru/showthrea...threadid=32808

or go to the requests forum and look at more mod powers started by none other than me :D

almightyone 12-04-2001 02:39 AM

Quote:

Originally posted by Psychdrone
SOAB i knew that would happen

WEll heres a go again

https://vborg.vbsupport.ru/showthrea...threadid=32808

or go to the requests forum and look at more mod powers started by none other than me :D

im sorry but could you explain to me how a mods powers has anything to do with an admin seeing moderators activities am i missing soemthing here :confused: :confused: :confused:

Psychdrone 12-04-2001 09:14 PM

Whoops wrong thread......:(


But hey sorri, no time to read through the thread, is this also working on 2.2.1?


Thanks!

Andrus 01-04-2002 11:14 AM

Quote:

Originally posted by Psychdrone
so could someone release a 2.2.1 version?
Anyone? Please?

Jawelin 01-04-2002 03:14 PM

Hi. Thanks as I installed this great hack!
Just a question: is there any way to use the adminCP colors ???

:D :D :D

Pulsorock 01-10-2002 04:24 PM

Hello,
Where can I get the latest version of this hack?
Does it work fine in vB 2.2.1 ?

Overgrow 01-10-2002 07:16 PM

I just finished my upgrade from 1.1.3 to 2.2.1 so I will probably be re-writing this.. and I will integrate it with the admin CP colors. Please don't ask for a release date, it's when I get around to it! thanks... :D

Psychdrone 01-11-2002 01:03 AM

NO!!

thank you;)

now get to work :stupid:


All times are GMT. The time now is 12:20 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.02320 seconds
  • Memory Usage 1,814KB
  • 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
  • (1)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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