vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Administrative and Maintenance Tools - Multiple account login detector (AE Detector) (https://vborg.vbsupport.ru/showthread.php?t=125871)

EdQ 07-11-2011 12:36 PM

Working on 4.1.4

FrankP 02-25-2012 09:45 PM

seems to work on 4.1.10

Ist it possible that a new post is only created when the PM was sent as well?

sportsfroma2 03-06-2012 04:56 AM

This doesn't seem to be posting a thread in the forum I have specified, it ONLY sends pm's...

I recently upgraded my site from 4.1.10 to 4.1.11, but I don't think that was working in 4.1.10 either.

I'm using the mod_rewrite URLS, if that matters any.

thanks

insidegames 01-30-2013 09:25 AM

do this works with vBulletin 4.2?

My Hattiesburg 01-30-2013 06:05 PM

Quote:

Originally Posted by insidegames (Post 2400468)
do this works with vBulletin 4.2?

Yes.

sonic83 07-22-2013 03:38 PM

thanks

alexm 11-24-2013 04:05 PM

Working in 4.2.2

Needs some updates to a deprecated function to work with PHP 5.4 though (you will get function split() is deprecated error when logging in and you won't be able to log into the admin control panel either!)

To work in PHP 5.4 Edit Plugin AE Detector: Login checker

1) REPLACE:
PHP Code:

                $ignore_users split(','$vbulletin->options['ae_ignore_users']);
                
$ignore_groups split(','$vbulletin->options['ae_ignore_groups']); 

with:
PHP Code:

                $ignore_users preg_split("/,/"$vbulletin->options['ae_ignore_users']);
                
$ignore_groups preg_split("/,/"$vbulletin->options['ae_ignore_groups']); 



2) REPLACE:
PHP Code:

                            $Unums split(","$idstack); 

with:
PHP Code:

                            $Unums preg_split("/,/"$idstack); 


3) REPLACE:
PHP Code:

                            $adminusers split(","$vbulletin->options['ae_adminusers']); 

with:
PHP Code:

                            $adminusers preg_split("/,/"$vbulletin->options['ae_adminusers']); 


Videx 11-24-2013 05:10 PM

Quote:

Originally Posted by alexm (Post 2463374)
Working in 4.2.2

Needs some updates to a deprecated function to work with PHP 5.4 though (you will get function split() is deprecated error when logging in and you won't be able to log into the admin control panel either!)

And I see the dev hasn't been on since July 2013; not good. If he checks in, please consider marking this mod as reusable code so it's easier to try to maintain it? TIA

dartho 11-25-2013 02:28 AM

If you look at the thread for the VB 3.7 version of this addon, it states that the code is identical to this AND reusable.

https://vborg.vbsupport.ru/showthread.php?t=183268


All times are GMT. The time now is 01:00 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.01745 seconds
  • Memory Usage 1,747KB
  • 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_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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