MyBB Community Forums

Full Version: Posts and Replies in Threads are not visible
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well i havent run any sql querry to change that so is there any sql querry which i can run to change it to default...
Run this in phpMyAdmin:

UPDATE `mybb_users` SET `threadmode` = 'linear';
Changing the setting in admincp will change it for new users regsitering after that point. For existing users it will use whatever setting they have in their usercp.

To change all users' setting you need to run the following query in phpmyadmin

UPDATE mybb_users SET `threadmode`= 'linear'

replace the mybb_ with whatever prefix you're using

EDIT: LOL I'm too slow! Thanks AJS
ok thanks guys i ran this querry instead and now its set to default that is linear and its fine now

UPDATE mybb_users SET threadmode= 'default'
If this setting had been changed in the ACP, you'd have changed it at some point... it's disabled/set to Linear by default.
no to be honest i never did it happened after updrading it to 1.6.1 from 1.6.0(or smthn lyk tht)
Upgrading doesn't change your settings, especially to a non-default value, you probably just don't remember changing it.
Pages: 1 2