vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Advanced Warning System (Beta Version) (https://vborg.vbsupport.ru/showthread.php?t=95921)

Mosh 03-02-2006 01:06 PM

Quote:

Originally Posted by Delphiprogrammi
hi people,

i've spotted and fixed the urls linking problem.In emails aws sends out.If you have "send email to warned member" turned on and you get this

Code:

Dear tester,
                       
                        A warning you have received for violating Array[bbtitle] Rules has been totally removed from your account, by the Forums team. The removed warning concerned:
                       
                        you are crossposting
                        (Warning Type = 'CrossPosting')
                       
                        The post for which you were warned, and whose warning has now been totally removed, can be seen here:
                       
                        Array[bburl]/showthread.php?p=165
                       
                        With this warning being removed, 4 point(s) have been removed from your total.
                       
                        Your total Warning Level at the moment is: 0 point(s).
                       
                        Please reply back if you have a dispute.
                       
                        ----------------
                       
                        Array[bbtitle] Team

there should be a proper link to the post for which the member got warned in the first place

Code:

Dear tester,
                       
                        A warning you have received for violating Array[bbtitle] Rules has been totally removed from your account, by the Forums team. The removed warning concerned:
                       
                        you posted urls before 15 posts
                        (Warning Type = 'links')
                       
                        The post for which you were warned, and whose warning has now been totally removed, can be seen here:
                       
                        http://www.server.com/forums/showthread.php?p=165
                       
                        With this warning being removed, 1 point(s) have been removed from your total.
                       
                        Your total Warning Level at the moment is: 0 point(s).
                       
                        Please reply back if you have a dispute.
                       
                        ----------------
                       
                        Array[bbtitle] Team

in admincp/admin_warn.php find the $thread2 variable BUT ONLY if it is a post related warning ... and change it to

PHP Code:

$thread2="{$vbulletin->options['bburl']}/showthread.php?p={$warn['warned_post']}"

that should do it that's one more problem sorted out

I think that will also sort out the problem with doing a complete warning removal in the admincp, when it sends a PM to the user that has had the warning removed from them, it is the same Array[bbtitle] problem.

So, your solution should actually kill that problem as well, will test it out and let you know :)

Delphiprogrammi 03-02-2006 01:39 PM

Quote:

Originally Posted by jdsinclair
I think that will also sort out the problem with doing a complete warning removal in the admincp, when it sends a PM to the user that has had the warning removed from them, it is the same Array[bbtitle] problem.

So, your solution should actually kill that problem as well, will test it out and let you know :)

actually that annoys me to and i'm looking into that one the problem is i bet $vbulletin->options['bbtitle'];

if i get that one sorted out i'll post it

problem found

replace

PHP Code:

$vbulletin->options[bbtitle]; 

with

PHP Code:

$vbulletin->options['bbtitle']; // notice the '' 

and make sure you set a value in vb options under bbtitle mke this changes in admin_warn.php

So people to keep the things we've fixed together.To solve the bad urls in email aws sends out you need to edit two files
  • Warn.php
  • /admincp/adminwarn.php


in Warn.php find

PHP Code:

$thread2="$vbulletin->options[bburl]/showthread.php?p=$vbulletin->GPC[post]"

replace by

PHP Code:

$thread2="{$vbulletin->options['bburl']}/showthread.php?p={$vbulletin->GPC['post']}"

still in Warn.php find

PHP Code:

$thread2="$vbulletin->options[bburl]/showthread.php?p=$warn[warned_post]"

replace with

PHP Code:

$thread2="{$vbulletin->options['bburl']}/showthread.php?p={$warn['warned_post']}"

in admin_warn.php do the same (only for postrelated warnings) and replace all instances of

PHP Code:

$vbulletin->options[bbtitle]; 

with
PHP Code:

$vbulletin->options['bbtitle']; 

amen

Delphiprogrammi 03-02-2006 03:34 PM

hi people,

people with a verry busy forum can try this quick plugin to cache templates used by this sytem.Caching templated reduces the amount of MySQL queries needed ...

admincp => plugin system => plugin manager => add a new plugin

product => AWS (advanced warning system)
hook location => cache templates
title => AWS cache templates
plugin PHP code

PHP Code:

if(THIS_SCRIPT =='warn')
{
       
$actiontemplates = array (
           
'ViewMyWarnings' => array (
               
'warn_view_end',
               
'warn_view_row',
               
'warn_view_top',
               
'warn_viewtype_end',
               
'warn_viewtype_row',
               
'warn_viewtype_top',
           ),
           
'WarnUser' => array (
               
'warn_addwarn',
               
'warn_pm',
               
'warn_em',
               
'warn_viewtype_end',
               
'warn_viewtype_row',
               
'warn_viewtype_top',
           ),
           
'WarnUserNoPost' => array (
               
'warn_addwarn_nopost',
               
'warn_pm',
               
'warn_em',
               
'warn_viewtype_end',
               
'warn_viewtype_row',
               
'warn_viewtype_top',
           ),
           
'ViewWarnings' => array (
               
'warn_viewb_end',
               
'warn_viewb_row',
               
'warn_viewb_top',
               
'warn_viewtype_end',
               
'warn_viewtype_row',
               
'warn_viewtype_top',
           ),
           
'ViewPostWarnings' => array (
               
'warn_viewc_end',
                
'warn_viewc_row',
                
'warn_viewc_top',
                
'warn_viewtype_end',
                
'warn_viewtype_row',
                
'warn_viewtype_top',
            )
       );


active (choose yes if you want to use you can choose no if you are having problems with it)

submit the form

done

amen

enough coding for today

Drewish 03-02-2006 08:26 PM

Hi, I've installed the Advanced warning hack on a vB 3.5.4 board. It seems to work great except for a couple little problems I've been having. The Auto-warning system doesnt seem to be working. I've created a supermod "bot" and used it as the auto-warning bot and the hidden warner. Also, I've created the "ObseneWords" warning type and designated it to be "auto." Using a test username and having an actual member use censored words in posts, it doesnt seem to be delivering the warning, even though the words used were blocked out by the vBulletin censor system. Also, Email notification works great, but it doesnt private message the warned user, only emails them. I dont know if maybe you have to have emailing disabled to use the private message feature, but right now they are both enabled. Is this compatible with my version of vB? Other than this, its a very useful hack and im very happy with it.

Delphiprogrammi 03-02-2006 08:37 PM

Quote:

Originally Posted by Drewish
Hi, I've installed the Advanced warning hack on a vB 3.5.4 board. It seems to work great except for a couple little problems I've been having. The Auto-warning system doesnt seem to be working. I've created a supermod "bot" and used it as the auto-warning bot and the hidden warner. Also, I've created the "ObseneWords" warning type and designated it to be "auto." Using a test username and having an actual member use censored words in posts, it doesnt seem to be delivering the warning, even though the words used were blocked out by the vBulletin censor system. Also, Email notification works great, but it doesnt private message the warned user, only emails them. I dont know if maybe you have to have emailing disabled to use the private message feature, but right now they are both enabled. Is this compatible with my version of vB? Other than this, its a very useful hack and im very happy with it.

i noticed that to the automatic warnings do not seem to work.You did everything requirerd to make it work but i've tested it to and i don't get a pm or email either

Michael-DLR 03-03-2006 02:11 AM

sv1cec? I know I have said this before but this is the best hack for vbulletin. Thank you again for supporting it. I have one small issue that I need help with. I have the warning system set-up to create a thread in a hidden forum when a moderator issues an alert or warning. For reasons when an alert is issued, the thread information indicates it is an alert. How can I fix this so the thread displays an alert and not a warning? The information below is in two parts. The first one is a copy of the thread in the hidden forum. The 2nd one is a copy of the private message sent to the user.

Thank you in advance! :)

Michael




User mitest received the following Warning/Alert by Michael on 03-02-2006 at 07:22 PM :


Quote:
Dear mitest,

You have been warned for one of your posts, which violated (website names) Rules. The reason you have been warned is because:

User makes ignores direct directions given from a moderator.
(Warning Type = Ignoring Moderator Directions)

For this violation, you have been given : 3 point(s).
The point(s) will remain in your account for 180 days.
After that, they will be removed automatically.

The post for which you are warned can be seen here:

=======================================

Quote:
Originally Posted by Nemo88
I agree,I wish nothing came up when you are "ignoring" another member...


It's a small notification though...
=======================================

The admin/moderator who warned you, entered this comment:

=======================================
User makes ignores direct directions given from a moderator.
=======================================

Your total Warning Level at the moment is: 0 point(s).

If you reach the maximum of 7, you will be banned from the Forums, for 2 days.

To see details about all the warnings you have received, until now, please click here.

Please reply back if you have a dispute.

-------------------------------------------------------------------------
Dear mitest,

This is an alert for one of your posts, which violated MouseInfo.com Rules. The reason you have been alerted is because:

User makes ignores direct directions given from a moderator.
(Warning Type = Ignoring Moderator Directions)

For this violation, you would normally have been given : 3 point(s).
The point(s) would remain in your account for 180 days.
After that, they would be removed automatically.

If you ever reach the maximum of 7 points, you will be banned from the Forums, for 2 days.

However, the moderator decided not to warn you at this time, and only issue an alert, instead of a warning. So no points have been added in your account, this time. Next time however, you will be warned.

PLEASE RESPECT THE FORUM RULES.

The post for which you are alerted can be seen here:

=======================================
Quote:
Originally Posted by Nemo88
I agree,I wish nothing came up when you are "ignoring" another member...



It's a small notification though...
=======================================

The admin/moderator who issued this alert, entered this comment:

=======================================
User makes ignores direct directions given from a moderator.
=======================================

To see details about all the warnings and alerts you have received, until now, please click here.

Please reply back if you have a dispute.

Delphiprogrammi 03-03-2006 10:18 AM

hi,

Automatic warnings seem to work fine in private messages try to send a pm which contains censored words you'll get a pm back telling you that you've been warned.But automatic warnings fail to work in posts / threads No error messages but no pm or emails either

if you ask me those plugins that should handle the automatic warnings have the wrong hook locations and therefor the code doesn't get fired in the right spot

sv1cec 03-07-2006 06:04 AM

OK, I have just uploaded new admin_warn.php and Warn.php files, with the quotes! Darn those quotes. I'll try and check everything else for this issue.

sv1cec 03-07-2006 06:14 AM

I can not duplicate the problem with the Automatic Warnings from Posts. It works fine in my test environment, even before uploading the edited files for the quoted $vbulletin parameters.

There is an issue with the warning being entered as non-post related. To correct that, open the following plugin.

AWS: Check Post-Title/Message for censored Words

Find:

Code:

warn_calculations($warn_type['tid'], $wcomment, $this->fetch_field['postid'], $userinfo, $this->registry->options['warn_automatic_warner'], $alert);
Replace that with:

Code:

$wpost=$this->fetch_field('postid');
warn_calculations($warn_type['tid'], $wcomment, $wpost, $userinfo, $this->registry->options['warn_automatic_warner'], $alert);

Try this out.

Also, in several of the templates shown in the XML file, there are still references to $vboptions parameters. However, I do not know if it is worth it to correct these references, since I do not know if a corrected XML file can be used to alter the existing templates or not. If someone knows, please advise.

sv1cec 03-07-2006 08:56 AM

OK, I am completely stuck here. Delphi, or whoever else can check out the admin_warn.php code for me, I need some ... support.

When viewing the Warnings Log, there are two links, one saying "Remove" and the other saying "Complete Removal". My problem is this:

The first one, when clicked, shows the next screen correctly, i.e. all the information is there. The second one, does not passes all the parameters to the next screen, it does not pass all the TYPE_STR fields. As a result, the name of the warned user, and type of warning and the parameter which shows if this warning has caused a ban or no, are not passed.

The code in these two routines (remove and completeremove) is exactly the same. The code from which the two routines are called, is also exactly the same, it's shown below:

Routine remove call:

Code:

$y="<a href='{$vbulletin->options['bburl']}/$admincpdir/admin_warn.php?act=remove&id={$warn[wid]}&userid={$warn[warned_userid_v]}&uname={$warn[warned_username_v]}&wname={$warn[warn_name]}&postid={$warn[warned_post]}&ban=$warn[caused_ban]&orderstring={$order}'>Remove</a>";
Routine completeremove call:

Code:

$cy="<a href='{$vbulletin->options['bburl']}/$admincpdir/admin_warn.php?act=completeremove&id={$warn[wid]}&userid={$warn[warned_userid_v]}&uname={$warn[warned_username_v]}&wname={$warn[warn_name]}&postid={$warn[warned_post]}&ban=$warn[caused_ban]&orderstring={$order}'>Complete Removal</a>";
The strange thing is that if you hover your cursor above the two links, you can see that the parameters are shown, in other words, they are passed.

Anyone has any ideas?????

It's not affecting the operation of the program per se, the warnings are completely removed, but I do not like it when I can't figure out what's going on and why things do not work as expected.


All times are GMT. The time now is 08:29 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.01726 seconds
  • Memory Usage 1,830KB
  • 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
  • (6)bbcode_code_printable
  • (10)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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