Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 06-21-2006, 08:18 PM
TMM-TT's Avatar
TMM-TT TMM-TT is offline
 
Join Date: Jun 2005
Location: Sweden
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Troll beta

Quote:
Originally Posted by TMM-TT
Absolutely! A product, it will be.

How about this (beta-stuff-things)?
Attached Images
File Type: jpg trolltracker.jpg (374.0 KB, 0 views)
  #2  
Old 06-22-2006, 07:43 PM
TMM-TT's Avatar
TMM-TT TMM-TT is offline
 
Join Date: Jun 2005
Location: Sweden
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The beta is now released at http://forum.tornevall.net/showthread.php?t=102799
  #3  
Old 06-23-2006, 04:19 AM
Talisman's Avatar
Talisman Talisman is offline
 
Join Date: Aug 2002
Location: USA/West Coast
Posts: 371
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TMM-TT
How about this (beta-stuff-things)?
That looks very useful, TMM-TT.

As for the question asked, I stopped banning trolls a long time ago. That's mostly what they're hoping you'll do and it just makes your site a challenge for them afterwards.

The miserable user's hack is great. I'll use that to begin with but if that doesn't put a stop to the misbehaviour, I'll just lock them down into an inactive usergroup with no permissions. They can't even see the forum anymore. That prevents them from continuing to use their original login/account and tips me off if they try to register again using multiple accounts.

Never delete user info on the troublemakers. That data is the best resource you have to confirm the identity of suspicious new members in the future.
  #4  
Old 06-24-2006, 01:07 AM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looks like the beta version creates an extra table, but leaves a empty space between the prefix and the table name. It won't work for me. That may be because I have a non standard table prefix.

However, I have been searching all around for a hack like this. Even requested one. As far as I can find, there is no other hack that can alert admins to clones, except the one working with cookies. I suspect this hack may get very popular.
  #5  
Old 06-24-2006, 06:54 AM
TMM-TT's Avatar
TMM-TT TMM-TT is offline
 
Join Date: Jun 2005
Location: Sweden
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alfa1
Looks like the beta version creates an extra table, but leaves a empty space between the prefix and the table name. It won't work for me. That may be because I have a non standard table prefix.

However, I have been searching all around for a hack like this. Even requested one. As far as I can find, there is no other hack that can alert admins to clones, except the one working with cookies. I suspect this hack may get very popular.

Maybe alerting can be something to add to this plugin too, then. I should just figure out how to do that.

The beta creates an extra table called user_troll, yes. What prefix are you using that makes it not work? (I don't use any myself but got no errors when I tried to install)
  #6  
Old 06-24-2006, 12:39 PM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am using 'vb9_ as table' prefix. Here is the error:

Database error in vBulletin 3.5.4:

Invalid SQL:
SELECT COUNT(*) AS entries FROM vb9_ user_troll;

MySQL Error : Table 'servername.vb9_' doesn't exist
Error Number : 1146
Date : Saturday, June 24th 2006 @ 03:35:10 PM
Script : http://www.mysite.com/forum/iptracker.php
Referrer :
IP Address : myIP
Username : Alfa1
Classname : vB_Database

I have replaced some data relating to my servername, sitename and IP.
Note that there is a space between 'AS entries FROM vb9_' and 'user_troll'
  #7  
Old 06-24-2006, 03:46 PM
antialiasis's Avatar
antialiasis antialiasis is offline
 
Join Date: Jan 2006
Location: Iceland
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, I just made a quick hack that doesn't give people their validation code until they visit the bottom of the rules page. People who don't intend to follow rules generally don't bother reading them, so it's more or less been working like a charm with a couple of exceptions.
  #8  
Old 06-24-2006, 03:51 PM
TMM-TT's Avatar
TMM-TT TMM-TT is offline
 
Join Date: Jun 2005
Location: Sweden
Posts: 212
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alfa1
I am using 'vb9_ as table' prefix. Here is the error:

Database error in vBulletin 3.5.4:

Invalid SQL:
SELECT COUNT(*) AS entries FROM vb9_ user_troll;

MySQL Error : Table 'servername.vb9_' doesn't exist

Ahh, a miss by me.

Look for this code

PHP Code:

if (file_exists("./global.php")) {
        
$sql_count "SELECT COUNT(*) AS entries FROM " TABLE_PREFIX " user_troll"

Replace with:

PHP Code:
if (file_exists("./global.php")) {
        
$sql_count "SELECT COUNT(*) AS entries FROM " TABLE_PREFIX "user_troll"
... then it should work.


Or get a modified sorce from here
  #9  
Old 06-24-2006, 06:31 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you want to discuss and test a beta product, then please release it in the appropriate forum as a beta release, and continue discussion there.

Thanks for understanding.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:57 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.06421 seconds
  • Memory Usage 2,265KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (1)postbit_attachment
  • (9)postbit_onlinestatus
  • (9)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete