you definately made an error when you copied/pasted ...
recheck the instructions ... make sure you copied/pasted correctly and that you didn't overwrite or removed code that you shouldn't have
OR
check your init.php file .. .make sure the copied code is correct ... and that a comma (only one) is after each 'bitfield' (permission)
for example .. in some installation there already is a comma after
Code:
'canseedelnotice' => 262144,
if this is the case with you than the code should look like this
Code:
'canseedelnotice' => 262144,
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
'gtpcanreadcontent' => 524288 // VIEW THREAD
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
and not like this
Code:
'canseedelnotice' => 262144,
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
,'gtpcanreadcontent' => 524288 // VIEW THREAD
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
notice the double commas
if you need help ... pm me