I'm just curious, I don't know if this exact question has been brought up yet but
FILE: includes/init.php
AFTER:
$_BITFIELD['usergroup']['genericpermissions'] = array(
BUT before ); just after the last value, insert the following:
'canhaveguestbook' => xxxxxxx,
'canhavewebpage' => xxxxxxx,
'canviewwebpage' => xxxxxxx,
'canviewguestbook' => xxxxxxx,
'canpostguestbook' => xxxxxxx,
CHANGE OUT "xxxxxxx" to the double value of the value just before.
I am just curious, what should I replace the xxxxxxx with for a vBulletin 3.0.6 board? I was at first tempted to just put in the code givin below that
EXAMPLE FOR vB3.0.3: (if you have this version, copy and use below)
'canhaveguestbook' => 16777216,
'canhavewebpage' => 33554432,
'canviewwebpage' => 67108864,
'canviewguestbook' => 134217728,
'canpostguestbook' => 268435456,
but I don't want it causing problems, which I know for a fact most likely willl happen. If someone can just give me a heads up with this, I'm basically done the editing, I just want to make sure I don't mess up at this stage of the game.
Thanks
|