MyBB Community Forums

Full Version: Is this possible? I don't know, what we call it.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is this possible to make it on Left, instead of top?
Can someone please guide me template? So? I can post it? Or Let me know, what changes to make?

Forums: Khan-cs.mojkgb.com

[Image: IMG_20171112_223018.jpg]
we have two types of display for the posts. they are called horizontal layout & classic (vertical) layout

see this related reply
I had reached to Php My Admin But Now I Confused, How To Run A Query :/

Error
SQL query:


UPDATE mybb_users SET classicpostbit = '1' WHERE classicpostbit = '0'
MySQL said: Documentation

#1146 - Table 'khancsmo_mybb322.mybb_users' doesn't exist
Read this..
https://community.mybb.com/thread-40093.html

Also go to phpmyadmin your database and if you look at the top where it says SQL run this query
UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0'
Error
Static analysis:

12 errors were found during analysis.

Unexpected beginning of statement. (near "UPDATE " at position 0)
Unexpected beginning of statement. (near "mybb_users" at position 7)
Unexpected beginning of statement. (near " SET " at position 19)
Unexpected beginning of statement. (near "classicpostbit" at position 24)
Unexpected beginning of statement. (near " " at position 40)
Unexpected beginning of statement. (near " " at position 42)
Unexpected beginning of statement. (near "'1'" at position 43)
Unexpected beginning of statement. (near " WHERE " at position 46)
Unexpected beginning of statement. (near "classicpostbit" at position 53)
Unexpected beginning of statement. (near " " at position 69)
Unexpected beginning of statement. (near " " at position 71)
Unexpected beginning of statement. (near "'0'" at position 72)
SQL query:

UPDATE mybb_users SET classicpostbit = '1' WHERE classicpostbit = '0'

MySQL said: Documentation

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE mybb_users SET classicpostbit = '1' WHERE classicpostbit =' at line 1
^ looks like your database uses a different prefix for the tables. is it mybb332_ ?
you can check it through config.php file in the inc folder of your forum files server.
$config['database']['table_prefix'] = '______';
config['database']['type'] = 'mysqli';
$config['database']['database'] = 'khancsmo_mybb322';
$config['database']['table_prefix'] = 'mybbti_';
^ your SQL query should be like below
UPDATE `mybbti_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0' 
That Worked And It Looks Better. But Can't It Be Bit More Wide? And A Border Dividing Left Layout And Post Position =p
Classic Layout.