I have coppermine v1.4.4 bridged with SMF 1.1 RC3 and would like to give a group admin rights in coppermine. I've done a bit of searching on how to do this, but am unable to understand what exactly to do.
How do I do this?
Edit bridge/smf10.inc.php
$this->admingroups = array($this->use_post_based_groups ? 101 : 1);
Add the extra group into that array, so to add 123
$this->admingroups = array($this->use_post_based_groups ? 101 : 1, 123);
Ah OK, far simpler than I thought it would be. How do I find out what number a group is?
Never mind, found it. Thanks for the help.
I don't understand though why you wouldn't trust those users to administer your forum, yet you trust them to administer coppermine. By accident or on purpose they could ruin your entire site in both applications.
i'm sorry to bring back the topic
but i tried this method i'm not sure if i done it the correct way
the admin group have id 16
so i tried replacing
Quote$this->admingroups = array($this->use_post_based_groups ? 101 : 1);
with
Quote$this->admingroups = array($this->use_post_based_groups ? 101 : 1, 14);
then with this
Quote$this->admingroups = array($this->use_post_based_groups ? 101 : 1, 114);
but don't work? what should i do please ???thanks
anyone? :'(