vb.org Archive

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

dutchbb 03-20-2013 05:51 PM

Quote:

Originally Posted by Alfa1 (Post 2126178)
It would be awesome to see Evercookie implemented for banned members:
http://samy.pl/evercookie/
Evercookie is much harder to remove than normal cookies.

Quote:

Originally Posted by Videx (Post 2126195)
Sounds like malware to me.

BS. It's just cookies, the same as the one you're sending your users now.

Surprised this isn't available as an add-on on this site yet. It would indeed be very effective.

datoneer 05-13-2013 09:44 PM

Thanks a million!!!!!

tourajabbasi 05-28-2013 08:15 AM

This mod is not working on 4.2.1 ... anyone else tried?

Joe Blow 06-21-2013 09:10 AM

Quote:

Originally Posted by tourajabbasi (Post 2424590)
This mod is not working on 4.2.1 ... anyone else tried?

I have and it's working for me.

New Joe 06-21-2013 09:17 AM

Working fine on my 4.2.1, did you set all the settings correct?

ss@solidsignal 10-09-2013 02:32 PM

4.2.2 breaks this since the split() function is deprecated.

squidsk 10-09-2013 03:20 PM

Quote:

Originally Posted by ss@solidsignal (Post 2451289)
4.2.2 breaks this since the split() function is deprecated.

That's not a 4.2.2 issue that's a php issue, your version of php was recently updated; however, even if the function is deprecated it will still work, its just a warning letting you know the function may or may exist in future versions of php.

ozzy47 10-09-2013 10:50 PM

Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla

How to fix. (Untested)

ACP --> Plugins & Products --> Plugin Manager, Find the plugin called, E Detector: Login checker, under the group, Multiple Login Detector, edit it and find this bit of code:

Code:

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

Replace it with this:

Code:

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

Find:
Code:

$Unums = split(",", $idstack);
Replace with:
Code:

$Unums = explode(",", $idstack);
Find:
Code:

$adminusers = split(",", $vbulletin->options['ae_adminusers']);
Replace with:
Code:

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

Videx 10-10-2013 12:34 AM

Quote:

Originally Posted by ozzy47 (Post 2451483)
Find:
Code:

$adminusers = explode(",", $vbulletin->options['ae_adminusers']);
Replace with:
Code:

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

Looks the same to me? But I don't see any syntax changes other than replacing every 'split' with 'explode' (in 4 places)? Any reason a Find and Replace wouldn't work?

ozzy47 10-10-2013 12:37 AM

Updated code in post. Find & Replace should work. :)


All times are GMT. The time now is 08:05 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.01498 seconds
  • Memory Usage 1,744KB
  • 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
  • (8)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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