MyBB Community Forums

Full Version: posts,replys, and threads always Linear Mode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
when user open thread,and post, thats ok

but when other user post reply then it not shows after first post.

and when i click Linear Mode then it shows after first post.

i want to enable Linear Mode setting always.



it loks like [Image: i57kpl.jpg]
So you want to set all users to linear mode and then stop them from being able to change it?
yes.

that i mean.

is it posible to do?


when i post in this forum. that shows,








UPDATE mybb_users SET threadmode = 'threaded';

where i have to do this, in db tables???
^ that is thru your database manager at webhost control panel (could be phpmyadmin)
Log into cPanel (or your webhost control panel) and select a database manager (most likely phpMyadmin). In phpMyAdmin, click on your forums database, then click the SQL tab, then run the above query.
Don't you want to set all users to linear mode though? If you run that, you'll set them to threaded mode. In order to set all users to linear mode you should run this instead:

UPDATE `mybb_users` SET  `threadmode` =  'linear';
i cant use phpMyadmin, how to do that
Contact your web host and ask them if and where you can access phpMyAdmin.
Pages: 1 2 3