Thought I'd point an error in the post
after the following:
Quote:
includes/init.php
Find
Code:
'canadminupgrade' => 32768,
Code:
Replace with
'canadminupgrade' => 32768,
'canadminshouts' => 65536,
Find
// field names for usergroup display options
$_BITFIELD['usergroup']['genericoptions'] = array(
'showgroup' => 1,
'showbirthday' => 2,
'showmemberlist' => 4,
'showeditedby' => 8,
'allowmembergroups' => 16,
'isbannedgroup' => 32
);
|
Should be:
includes/init.php
Find
Code:
'canadminupgrade' => 32768,
Replace with
Code:
'canadminupgrade' => 32768,
'canadminshouts' => 65536,
Find
Code:
// field names for usergroup display options
$_BITFIELD['usergroup']['genericoptions'] = array(
'showgroup' => 1,
'showbirthday' => 2,
'showmemberlist' => 4,
'showeditedby' => 8,
'allowmembergroups' => 16,
'isbannedgroup' => 32
);
I'm sure most people will catch it as they read it, but better to have a post about it

(I'm sure there is some mention of it before also, but I just skimmed to the end to see what errors I might encounter with a recent install)
Works fine for me now:
http://www.axioentertainment.com/forum/
I do have one annoyance though, when you click Who's Online it displays the following now:
Quote:
Unknown Location
/forum/shoutbox.php?do=main
|
Is there any way I can fix this?