forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: Yucca on February 13, 2004, 07:58:52 am

Title: Using Coppermine and hiding phpBB member list
Post by: Yucca on February 13, 2004, 07:58:52 am
Is there a way to block the phpBB members list from non-registered users and still have CM work? I was given the following change for the BB, which hides the member list but CM then doesn't work:#
#-----[ OPEN ]------------------------------------------
#
memberlist.php

#
#-----[ FIND ]------------------------------------------
#
//
// End session management
//

#
#-----[ AFTER, ADD ]------------------------------------------
#
if ($userdata['user_level'] != ADMIN)
{
   message_die(GENERAL_MESSAGE, $lang['Not_admin']);
}

#
#-----[ SAVE/CLOSE ALL FILES
Title: Using Coppermine and hiding phpBB member list
Post by: Joachim Müller on February 13, 2004, 09:32:12 am
sure, just remove the memberlist link from your phpbb menu completely and/or modify the code of the memberlist page within phpbb. This is not related to coppermine at all, search the phpbb forum for an answer (there's even an easy mod afaik).

GauGau
Title: Using Coppermine and hiding phpBB member list
Post by: Yucca on February 13, 2004, 02:36:36 pm
Thanks.....will do