Microsoft® Excel® based database addin

 

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    admin's Avatar
    admin is offline Administrator
    Join Date
    Apr 2008
    Location
    Dublin, NYC
    Posts
    337

    Default check signatures in vbulletin / MYSQL

    Hi guys
    here is a usefule query to check user signatures in vbulletin.. Have to do this due to the spammers unfortunately.. Spammers keep putting in p0rn related links so for the time being have to go in an delete them.
    Code:
    Select sigparsed.userid, sigparsed.styleid, sigparsed.languageid,
      sigparsed.signatureparsed, sigparsed.hasimages
    From sigparsed
    Limit 0, 30
    
    SQL Drill Support
    www.sqldrill.com


  2. #2
    admin's Avatar
    admin is offline Administrator
    Join Date
    Apr 2008
    Location
    Dublin, NYC
    Posts
    337

    Default

    for vbulletin users, another useful table to check for spammers is the user table where there is a "homapage" field...

    Code:
    Select user.userid, user.username, user.homepage
    From user
    WHERE user.homepage <> ""
    Limit 0, 30
    
    SQL Drill Support
    www.sqldrill.com


Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts