I have had a token error with my website forever, I have already spent countless hours looking at the footer and other area and decided long ago just to use a simple work around.
If my member have their options set to this, everything works great:
Automatically detect DST setting: No
Is DST currently in effect: Yes
I know I can run a SQL query to make all of my members the same why by:
UPDATE user SET options=options - 64 WHERE options & 64
UPDATE user SET options=options + 128 WHERE NOT (options & 128)
So my question is:
1. With SQL, how do I display all users that have "Automatically detect DST" setting to "YES"?
2. With SQL, how do I display all users that have "Is DST currently in effect" to "No"?
3. How do I make it so they can't ever change these items (ie always have Auto to "No" & DST current to "Yes")?
Thanks for any help on any answers you know.....