Nevermind, I fixed the problem

. Basically the error is in the admin/misc.php file. There you were intructed to replace a db query with:
PHP Code:
$getprofilefield=$DB_site->query_first("SELECT profilefieldid from profilefield where 1 and title =
'Ranksystem' LIMIT 0, 1");
$gettitle=$DB_site->query_first("Select rankdetail.title from user left join userfield on user.userid =
userfield.userid left join rankdetail on rankdetail.rankid = userfield.field" . $getprofilefield[profilefieldid] .
" where user.userid= $userid and rankdetail.minposts <= user.posts ORDER BY rankdetail.minposts DESC LIMIT 1");
The error is here:
PHP Code:
userfield.field
"userfield.field" doesn't exist, the fields are given numbers. Depending on the field number for the Rank Category ID for your indivudual board, you enter that instead. (ie. If the column where your members choose the rank category they want to use is "field6" in your database then your code should read "userfield.field6"). I hope this helps out some of you with this problem. Besides that, great hack!