Quote:
Originally Posted by princeton
BITFIELD is referring to the 'permissions' we set in the init.php page.
If it's working elsewhere ... it means that you made an error when copy/paste.
Check the current file and make sure you have everything the same as in the instructions.
YES. By removing the code from printthread.php users will be able to see your content.
|
I found the problem there was a missing here's how the instructions look:
Quote:
'canthreadrate' => 65536,
'isalwaysmoderated' => 131072,
'canseedelnotice' => 262144
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
,'gtpcanreadcontent' => 524288 // VIEW THREAD
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
);
|
Here's what I changed to get it to work:
Quote:
'canthreadrate' => 65536,
'isalwaysmoderated' => 131072,
'canseedelnotice' => 262144,
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
<I removed the comma from here>'gtpcanreadcontent' => 524288, // VIEW THREAD
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
);
|
Thanks again for your help.