|
TW1ST3D
|
 |
« on: March 30, 2008, 01:35:31 pm » |
|
Any way to give Gallery Moderator the Bulk Upload capability ? The Gallery is run by a Club Photographer , and the Only way for him to bulk upload is to give him Admin Rights to the Whole site..........and that goes against my better judgement.
|
|
|
|
|
Logged
|
|
|
|
|
ApplianceJunk
|
 |
« Reply #1 on: March 30, 2008, 06:06:40 pm » |
|
That would be a nice option.
|
|
|
|
|
Logged
|
|
|
|
|
SMFHacks
|
 |
« Reply #2 on: March 30, 2008, 08:31:51 pm » |
|
There is the Admin Gallery option under permissions that just gives the user permissions for the Gallery section of the mod.
|
|
|
|
|
Logged
|
|
|
|
|
TW1ST3D
|
 |
« Reply #3 on: March 31, 2008, 03:45:58 pm » |
|
I gave him Admin Privileges to the gallery but "Bulk Upload" is not there for him..............
Anything else I could try ? As stated earlier , I don't want to give him Admin rights to the whole forum , just the Gallery. Also , is there a hack to give more bulk upload slots (like 10 at a time)?
|
|
|
|
|
Logged
|
|
|
|
|
Matth41
|
 |
« Reply #4 on: March 31, 2008, 05:23:21 pm » |
|
Did you give him permission for bulk uploads in the member group permissions (Admin -> Permissions (Under members))?
|
|
|
|
|
Logged
|
|
|
|
|
SMFHacks
|
 |
« Reply #5 on: March 31, 2008, 07:24:10 pm » |
|
You should have permission under Permissions for the gallery called "Bulk Uploads" If you do not have that listed Attach your ManagePermissions.php and I can fix it. For the fields Open themes/default/Gallery.template.ph Find // How many upload fields to show $bulk_fields = 5;
And change the number 5 to the number of fields you wish to show. Would not recommend more than 10.
|
|
|
|
|
Logged
|
|
|
|
|
TW1ST3D
|
 |
« Reply #6 on: March 31, 2008, 09:04:49 pm » |
|
Here is the .php you requested..............Also I am finding out that Members cannot leave ratings , only Admin can.........No matter what permissions I give.
|
|
|
|
« Last Edit: March 31, 2008, 09:15:11 pm by TW1ST3D »
|
Logged
|
|
|
|
|
|
|
TW1ST3D
|
 |
« Reply #8 on: March 31, 2008, 09:32:15 pm » |
|
I'll have to wait until tomorrow to access the fix.............The other forum admin bought the upgrade and didn't forward the license info to me ( really didn't think about needing it) and it is left to me to get it all working.
****Update*****
Fixed Completely !!! Thanks so much , You guys Rock !!!!
|
|
|
|
« Last Edit: April 01, 2008, 05:27:03 pm by TW1ST3D »
|
Logged
|
|
|
|
|
mcsystems
|
 |
« Reply #9 on: May 28, 2008, 06:51:50 pm » |
|
Fixed File attached. Fixes bulk upload and rating.
I can't find my ManagePermissions.php file
|
|
|
|
|
Logged
|
|
|
|
|
SMFHacks
|
 |
« Reply #10 on: May 28, 2008, 08:24:51 pm » |
|
Found in Sources/ManagePermissions.php
|
|
|
|
|
Logged
|
|
|
|
|
chrisb
|
 |
« Reply #11 on: May 29, 2008, 04:24:07 am » |
|
Hi all,
I have tried to download this and its asking for the license key and i have it already
how to fix these issues
|
|
|
|
|
Logged
|
|
|
|
|
mcsystems
|
 |
« Reply #12 on: May 29, 2008, 07:06:35 am » |
|
Found in Sources/ManagePermissions.php
Found it! replaced file solves problem. The only thing is now there are serveral additional check boxes that have no nomencalture associated with them
|
|
|
|
|
Logged
|
|
|
|
|
SMFHacks
|
 |
« Reply #13 on: May 29, 2008, 07:26:02 am » |
|
Hi all,
I have tried to download this and its asking for the license key and i have it already
how to fix these issues
You are already in the SMF Gallery customers group which gives you access to the SMF Gallery Downloads/Addons forums
|
|
|
|
|
Logged
|
|
|
|
|
SMFHacks
|
 |
« Reply #14 on: May 29, 2008, 07:31:20 am » |
|
Found it! replaced file solves problem. The only thing is now there are serveral additional check boxes that have no nomencalture associated with them
Make sure the following is inside each themes/default/modifications.*.php file //Begin SMF Gallery Text Strings $txt['smfgallery_menu'] = 'Gallery'; $txt['smfgallery_admin'] = 'Gallery Configuration';
//Permissions $txt['permissiongroup_smfgallery'] = 'SMF Gallery';
$txt['permissionname_smfgallery_view'] = 'View SMF Gallery'; $txt['permissionhelp_smfgallery_view'] = 'Allows the user to view the Gallery'; $txt['cannot_smfgallery_view'] = 'You are not allowed to view the Gallery';
$txt['permissionname_smfgallery_add'] = 'Add Picture'; $txt['permissionhelp_smfgallery_add'] = 'Allows the user to add a picture.'; $txt['cannot_smfgallery_add'] = 'You are not allowed to add a picture.';
$txt['permissionname_smfgallery_bulk'] = 'Bulk Uploads'; $txt['permissionhelp_smfgallery_bulk'] = 'Allows the user to use the bulk upload feature.'; $txt['cannot_smfgallery_bulk'] = 'You are not allowed to bulk upload.';
$txt['permissionname_smfgallery_edit'] = 'Edit own Picture'; $txt['permissionhelp_smfgallery_edit'] = 'Allows the user to edit their own picture.'; $txt['cannot_smfgallery_edit'] = 'You are not allowed to edit that picture.';
$txt['permissionname_smfgallery_delete'] = 'Delete own Picture'; $txt['permissionhelp_smfgallery_delete'] = 'Allows the user to delete their own picture.'; $txt['cannot_smfgallery_delete'] = 'You are not allowed to delete that picture.';
$txt['permissionname_smfgallery_ratepic'] = 'Rate Picture'; $txt['permissionhelp_smfgallery_ratepic'] = 'Allows the user to rate a picture.'; $txt['cannot_smfgallery_ratepic'] = 'You are not allowed to rate that picture.';
$txt['permissionname_smfgallery_editcomment'] = 'Edit own Comment'; $txt['permissionhelp_smfgallery_editcomment'] = 'Allows the user to edit their own comments.'; $txt['cannot_smfgallery_editcomment'] = 'You are not allowed to edit that comment.';
$txt['permissionname_smfgallery_comment'] = 'Leave Comments'; $txt['permissionhelp_smfgallery_comment'] = 'Allows the user to leave comments on a picture.'; $txt['cannot_smfgallery_comment'] = 'You are not allowed to leave comments.';
$txt['permissionname_smfgallery_report'] = 'Report Pictures/Comments'; $txt['permissionhelp_smfgallery_report'] = 'Allows the user to report pictures and comments.'; $txt['cannot_smfgallery_report'] = 'You are not allowed to report content.';
$txt['permissionname_smfgallery_autocomment'] = 'Auto Approve Comments'; $txt['permissionhelp_smfgallery_autocomment'] = 'Comments do not need to wait for approval.';
$txt['permissionname_smfgallery_autoapprove'] = 'Auto Approve Pictures'; $txt['permissionhelp_smfgallery_autoapprove'] = 'Pictures do not need to wait for approval.';
$txt['permissionname_smfgallery_usergallery'] = 'Personal Gallery'; $txt['permissionhelp_smfgallery_usergallery'] = 'Allows the user to have a personal gallery'; $txt['cannot_smfgallery_usergallery'] = 'You are not allowed to have a gallery.';
$txt['permissionname_smfgallery_manage'] = 'Admin Gallery'; $txt['permissionhelp_smfgallery_manage'] = 'Allows the user to add/delete/edit all catagories. Delete Comments, Delete Pictures, Approve Pictures'; $txt['cannot_smfgallery_manage'] = 'You are not allowed to manage gallery.';
//END SMF Gallery Text Strings
|
|
|
|
|
Logged
|
|
|
|
|