MyBB forum permissions seems like phpBB 2.0.x forum permissions.Regarding permissions:
The myBB permission system is a pretty weird system, so currently I have decided not to convert any forum or forum moderation permission
Code: Select all
General Error
SQL ERROR [ mysqli ]
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 ' 16, 0)' at line 2 [1064]
SQL
INSERT INTO k7pk_user_group (user_id, group_id, user_pending) VALUES (, 16, 0)
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()
FILE: includes/functions_convert.php
LINE: 1169
CALL: dbal_mysqli->sql_query()
FILE: install/convertors/functions_mybb.php
LINE: 789
CALL: user_group_auth()
FILE: install/install_convert.php(1652) : eval()'d code
LINE: 2
CALL: mybb_convert_authentication()
FILE: install/install_convert.php
LINE: 1652
CALL: eval()
FILE: install/install_convert.php
LINE: 799
CALL: install_convert->jump()
FILE: install/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: install/index.php
LINE: 405
CALL: install_convert->main()
FILE: install/index.php
LINE: 282
CALL: module->load()
Code: Select all
General Error
SQL ERROR [ mysqli ]
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 '' at line 3 [1064]
SQL
UPDATE phpbb_forums SET left_id = left_id + 2, right_id = right_id + 2 WHERE left_id >
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()
FILE: install/convertors/functions_mybb.php
LINE: 464
CALL: dbal_mysqli->sql_query()
FILE: install/install_convert.php(1003) : eval()'d code
LINE: 7
CALL: mybb_insert_forums()
FILE: install/install_convert.php
LINE: 1003
CALL: eval()
FILE: install/install_convert.php
LINE: 203
CALL: install_convert->convert_data()
FILE: install/index.php
LINE: 405
CALL: install_convert->main()
FILE: install/index.php
LINE: 282
CALL: module->load()
Please be a bit patient, iam currently at school and havent had time yet to look. I probarly will not have time this evening,g as I am at work. I will have a look at it tomorrow morning.coreymanshack wrote:Well I guess I'm going to continue to use mybb since there is no support for this topic anymore.
Code: Select all
$cat_row['right_id']
Code: Select all
$sql = 'UPDATE ' . FORUMS_TABLE . '
SET left_id = left_id + 2, right_id = right_id + 2
WHERE left_id > ' . $cat_row['right_id'];
Code: Select all
$cat_row['right_id'];
Code: Select all
$sql = 'SELECT left_id, right_id
FROM ' . FORUMS_TABLE . '
WHERE forum_id = ' . $row['pid'];
$_result = $db->sql_query($sql);
$cat_row = $db->sql_fetchrow($_result);
$db->sql_freeresult($_result);