SMFHacks.com

SMF Gallery Pro => Support => Topic started by: TeamVTEC on October 11, 2006, 11:34:36 am

Title: members can't rate pictures
Post by: TeamVTEC on October 11, 2006, 11:34:36 am
I can rate pics but my members can't rate pictures but are allowed to see gallery ???
Title: Re: members can't rate pitures
Post by: SMFHacks on October 11, 2006, 11:51:26 am
Check the permissions? Are they allowed to rate pictures.

They need to be a member and not a guest as well
Title: Re: members can't rate pictures
Post by: TeamVTEC on October 11, 2006, 01:08:50 pm
Well i'm sorry to say that i don't have that option in permissions ;D

Title: Re: members can't rate pictures
Post by: SMFHacks on October 11, 2006, 01:11:59 pm
How did you insatll the upgrade? Did you unistall the old version first?
Open Sources/ManagePermissions.php
Find something liket this and it should be exactly like this
Code: [Select]
'smfgallery' => array(
'smfgallery_view' => false,
'smfgallery_add' => false,
'smfgallery_edit' => false,
'smfgallery_delete' => false,
'smfgallery_ratepic' => false,
'smfgallery_comment' => false,
'smfgallery_editcomment' => false,
'smfgallery_report' => false,
'smfgallery_autocomment' => false,
'smfgallery_autoapprove' => false,
'smfgallery_manage' => false,
),
You are missing three  permissions they are in the code above.
Title: Re: members can't rate pictures
Post by: TeamVTEC on October 11, 2006, 01:27:40 pm
Hmm that's strange... i got 2 of those array's in the Managepermissions.php ???
I guess i can remove one of them?
Title: Re: members can't rate pictures
Post by: SMFHacks on October 11, 2006, 01:28:48 pm
Yaeh delete the second one after links seems like the first one didn't get unistalled.
Title: Re: members can't rate pictures
Post by: TeamVTEC on October 11, 2006, 01:39:15 pm
problem solved, thanks for the prompt help ;)