Secondary admin group not recognized as such in bridge with IPB Secondary admin group not recognized as such in bridge with IPB
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Secondary admin group not recognized as such in bridge with IPB

Started by -Zverik-, September 07, 2006, 04:03:32 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

-Zverik-

I'm using IPB 2.1.5 and latest Coppermine 1.4.9.
The problem is in subj. "Secondary admin group not recognized as such in bridge with IPB"

I found a corresponding topic in a bug board.

http://forum.coppermine-gallery.net/index.php?topic=35447

However the solution does not work for 1.4.9.

Thank you in advance.

Joachim Müller

This is not related imo. The bug board posting you refer to relates to the fact that the user interface of coppermine allows (on an unbridged setup) to  assign a non-default group as primary and the registered group as secondary group. You, however, appear to have another issue, as the group IDs from your BBS seem not to be carried over to coppermine correctly.

-Zverik-

Thank you for replying.

Hm. I must've not been reading that post carefully.

Yes, you are correct; after bridging, the root admin group and users and guests work fine, the group I'm currently using is a non-root group (its just using an admin mask).

Any solutions? Thnx  :P :)

Joachim Müller

What's an admin mask? You have to understand that I'm not familiar with the individual permission setup of your BBS. If group membership is being determined by some other mechanism than membership in a particular group and subsequently a group ID entry existing in the database, then coppermine will choke on that "special" permission. This has been the case for some phpBB hacks that I'm aware of - they used to have additional "flags" that granted special powers to users. This will not be recognized by coppermine.

-Zverik-

IPB has an interesting feature.. you could create custom masts with different forum permissions and even full and complete admin panel access. (And respectively a user could be granted these 'special powers')

In my case I am using standard admin mask (the one that was created when installing forum and the ones root admins use) on myself. This way I am able to have a different group name and still have full control of the board.
(I don't think an IPB could have 2 root admin groups, the group ID's are hardcoded in a config file.)
(yea, it'll require some special mod for ipb.. since there could be only 1...)

mm.. could you point where in Coppermine it determines the id's of a "root group" ? Will it be possible to put commas (like 4,10) or smnth? :0)
Since it seems I'm the only one that has this issue, I guess no one will want to do any hacks and such. So if it will be hard to code, that's ok.

eh....

Joachim Müller

You'll have to edit the code in the ipb bridge file for your custom hack. Not sure how those special powers using the "mask" are actually coded. Maybe you won't be able to make those special powers stick in coppermine at all, if the design discrepanies are to big. Can't recommend anything else, except reviewing the idea to use the non-standard feature in IPB.

-Zverik-


Nibbler

If it's based on groups then you can specify using $this->admingroups() in the bridge file. It is a comma seperated list of groups that should be assigned admin rights within Coppermine.

-Zverik-

THANK YOU SO MUCH, NIBBLER!!!  ;D ;D ;D :)

This solved my problem and I'm very happy!!! =))
You made my day! ))))


Ok, now for the solution for IPB 2.x.x:
(in a case somebody else needs this)

In forum/conf_global.php
Add:
$INFO['special_group'] = '10';

(Number 10 is my secondary admin group. You could get you group ID by going to admin cp, control(first tab on top on the right) => Users and members -> Group Control. (I can't tell the exact names in English since my admincp is in Russian :0). When you do get to the group control and management, the link will be
"http://yoursite/forum/index.php?act=Members&max_results=30&filter=10&sort_order=asc&sort_key=members_display_name&st=0", number 10 is your desired group number.)

Then
In coppermine/bridge/invisionboard20.inc.php
Find

$this->admingroups = array($INFO['admin_group']);

and change it to

$this->admingroups = array($INFO['admin_group'],$INFO['special_group']);


After, re-run bridge manager over again, so you'll import all the settings anew.

and You're Done.  :)

Thanks once again to the staff!



lawless314

How would you do this for non-admin groups?  I have the same problem as you, except that I am trying to get secondary groups to transfer over for the sake of private albums (so that a member of a group ranked above another can still see the other's albums).  But I certainly don't want them to have admin capabilities...