How/where would I make a global setting change for forums? Specifically now allowing the use of [IMG] tags everywhere?
Announcement
Collapse
No announcement yet.
"global" forum setting change?
Collapse
X
-
You'd have to do this via a query; so first enable yourself SQL query access via config.php; and then execute one of these queries:
To turn on/off Images for all forums:
On: UPDATE forum SET options=options + 128 WHERE NOT(options & 128);
Off: UPDATE forum SET options=options - 128 WHERE (options & 128);
Don't forget to include tableprefix if you're using it...
For this and more fun and useful queries, see this thread.
Note: Running queries is to be considered as advanced and relatively unsupported (hence disabled by default). Please backup before you use queries to directly manipulate your database.Last edited by Andy Huang; Wed 16 May '07, 9:53am.Best Regards,
Andy Huang
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment