Enable non administrator to edit file info Enable non administrator to edit file info
 

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

Enable non administrator to edit file info

Started by christfort, July 05, 2011, 03:59:30 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

christfort

Hi,

Is it possible to create a group of users that are allowed to edit file info? Apparently only administrators can do this. What I want to achieve is, to be able to grant a group of users access to edit file info on files in all albums that they are permitted to upload into.

Regards,
Thomas Christfort




christfort

I read the post:

        Is it possible to give some users the rights to only edit tags in albums ?

And used this approach to grant all registered users the right to edit file info. However in file editpics.php where I modify to: " WHERE p.aid = '$album_id'" . is it possible to restrict this access to one new created group instead of all registered users?

Thomas



ΑndrĂ©

Quote from: christfort on July 05, 2011, 10:33:00 PM
I read the post:

        Is it possible to give some users the rights to only edit tags in albums ?
-> http://forum.coppermine-gallery.net/index.php/topic,67601.0.html


Quote from: christfort on July 05, 2011, 10:33:00 PM
is it possible to restrict this access to one new created group instead of all registered users?
Try to replace
" WHERE p.aid = '$album_id' $owner_str" .
with
" WHERE p.aid = '$album_id' AND owner_id IN (SELECT user_id FROM {$CONFIG['TABLE_USERS']} WHERE user_group = '123456')" .
in the unmodified editpics.php file (untested).