FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » How To » what table is the ban column in?
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
what table is the ban column in? [message #34513] Sun, 05 November 2006 20:21 Go to next message
Jay D. is currently offline  Jay D.   United States
Messages: 22
Registered: September 2005
Location: West Palm
Karma: 0
Junior Member
I am looking for the ban flag/column, that I can update from a simple mysql update. All I see in the members table is the ban expire time. No other column.

Thanks for the help!

J


howdy
Re: what table is the ban column in? [message #34532 is a reply to message #34513] Mon, 06 November 2006 17:47 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Ban is a flag of the users_opt field represented by the 65536 bit.

FUDforum Core Developer
Re: what table is the ban column in? [message #34537 is a reply to message #34513] Mon, 06 November 2006 18:00 Go to previous messageGo to next message
Jay D. is currently offline  Jay D.   United States
Messages: 22
Registered: September 2005
Location: West Palm
Karma: 0
Junior Member
thank you. Also, where is the invisible column at? and what flag would it have?

I have taken out the invisible option and we have one member running around invisible, and I'd like to make all of them visible.


howdy
Re: what table is the ban column in? [message #34540 is a reply to message #34537] Mon, 06 November 2006 18:08 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Invisible is also a bit setting of the users_opt field. To see the bit definitions look inside of the fud_users.tbl file inside the sql/ directory.

FUDforum Core Developer
Re: what table is the ban column in? [message #34542 is a reply to message #34513] Mon, 06 November 2006 18:20 Go to previous messageGo to next message
Jay D. is currently offline  Jay D.   United States
Messages: 22
Registered: September 2005
Location: West Palm
Karma: 0
Junior Member
I'm not sure I understand this. how do I add more than one code to create the options?

# Opts
# 1 display_email (ON/OFF)
# 2 notify (ON/OFF)
# 4 notify_method  (EMAIL/ICQ) (ICQ notification is no longer used)
# 8 ignore_admin (ON/OFF)
# 16 email_messages (ON/OFF)
# 32 pm_messages (ON/OFF)
# 64 pm_notify (ON/OFF)
# 128 default_topic_view (MSG/TREE)
# 256 default_message_view (MSG/TREE)
# 512 gender (UNSPECIFIED)
# 1024 gender (MALE/FEMALE)
# 2048 append_sig (ON/OFF)
# 4096 show_sigs (ON/OFF)
# 8192 show_avatars (ON/OFF)
# 16384 show_im (ON/OFF)
# 32768 invisible_mode (ON/OFF)
# 65536 blocked (ON/OFF)
# 131072 email_conf (ON/OFF)
# 262144 coppa (ON/OFF)
# 524288 is_mod (ON/OFF)
# 1048576 is_admin (ON/OFF)
# 2097152 acc_status (P/A)
# 4194304 avatar_approved (No Avatar)
# 8388608 avatar_approved YES
# 16777216 avatar_approved NO
# 33554432 admin disabled PM (ON/OFF)
# 67108864 admin disabled signature (ON/OFF)
# 134217728 do not send e-mail notifications (ON/OFF)


Do I add them together?


howdy
Re: what table is the ban column in? [message #34570 is a reply to message #34542] Tue, 07 November 2006 16:53 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
These are bitmarks to "add" them you simply do

value | value | value etc...


FUDforum Core Developer
Re: what table is the ban column in? [message #34577 is a reply to message #34513] Tue, 07 November 2006 20:31 Go to previous messageGo to next message
Jay D. is currently offline  Jay D.   United States
Messages: 22
Registered: September 2005
Location: West Palm
Karma: 0
Junior Member
ok, so if I wanted to ban someone, I'd just put: 65536 into the column?

Sorry, I don't know much about bitmarks.


howdy
Re: what table is the ban column in? [message #34587 is a reply to message #34577] Wed, 08 November 2006 17:18 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
You need to take existing value as OR it to 65536

In database you'd do UPATE users SET users_opt=users_opt| 65536 ....


FUDforum Core Developer
Re: what table is the ban column in? [message #34633 is a reply to message #34587] Fri, 10 November 2006 17:01 Go to previous message
Jay D. is currently offline  Jay D.   United States
Messages: 22
Registered: September 2005
Location: West Palm
Karma: 0
Junior Member
ohh, i think I see now.

if I just want to add options, it's like this:

Update.....SET users_opt=users_opt|33554432|65536 etc..etc.



howdy
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Pager questions
Next Topic: archive some forums in a category
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Sep 28 05:19:10 GMT 2024

Total time taken to generate the page: 0.03429 seconds