Facebook 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4292
Latest: MashaMl8417
New This Month: 4
New This Week: 3
New Today: 3
Stats
Total Posts: 43790
Total Topics: 7602
Most Online Today: 62
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 56
Total: 56

Author Topic: Members can't rate photos  (Read 7934 times)

0 Members and 1 Guest are viewing this topic.

Offline Wonga

  • Jr. Member
  • **
  • Posts: 69
    • View Profile
    • PigeonTalk
Members can't rate photos
« on: June 01, 2007, 08:24:50 am »
I uninstalled the lite version and installed the pro version .. I can rate images when logged in as the admin but not as a general member.. I cannot find the option to turn this on and I haven't found anything using the search on this site that has the same problem..

Any info would be appreciated. Thanks

Offline Renegd98

  • Member
  • *
  • Posts: 26
    • View Profile
Re: Members can't rate photos
« Reply #1 on: June 01, 2007, 09:16:58 am »
It is found in the permissions area for member groups.

Offline Wonga

  • Jr. Member
  • **
  • Posts: 69
    • View Profile
    • PigeonTalk
Re: Members can't rate photos
« Reply #2 on: June 01, 2007, 05:46:42 pm »
Thanks, That's where I thought it would be but the option isn't showing up on mine.

See attached image... any ideas?


Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16673
    • View Profile
Re: Members can't rate photos
« Reply #3 on: June 01, 2007, 06:11:12 pm »
Usally occurs if you do not unistall the lite version first then install pro.

If you attach your Sources/ManagePermissions.php I can fix that issue.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Wonga

  • Jr. Member
  • **
  • Posts: 69
    • View Profile
    • PigeonTalk
Re: Members can't rate photos
« Reply #4 on: June 01, 2007, 06:21:43 pm »
Interesting as i did uninstall the lite version as per instructions..

See attached requested file.. Thanks

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16673
    • View Profile
Re: Members can't rate photos
« Reply #5 on: June 01, 2007, 07:02:11 pm »
Permissions are there you are just missing the text
Copy these text strings to every modifications.*.php file in the themes/default/languages folder

Code: [Select]
//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
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Wonga

  • Jr. Member
  • **
  • Posts: 69
    • View Profile
    • PigeonTalk
Re: Members can't rate photos
« Reply #6 on: June 01, 2007, 07:12:34 pm »
Thanks SMFHacks,
the problem file was the modifications.english.php file...

all working now.. cheers ;)

 

Related Topics

  Subject / Started by Replies Last post
6 Replies
9436 Views
Last post October 11, 2006, 01:39:15 pm
by TeamVTEC
21 Replies
13456 Views
Last post August 02, 2017, 05:07:03 pm
by SMFHacks
13 Replies
13121 Views
Last post July 15, 2007, 04:09:24 pm
by dano1
6 Replies
7446 Views
Last post January 19, 2008, 02:01:52 pm
by spurry
10 Replies
10151 Views
Last post September 09, 2014, 08:56:53 am
by Jonas1975

+- Recent Topics

[Mod]Cloudflare Turnstile for SMF by SMFHacks
May 08, 2025, 10:08:43 am

Disable "Notify me of Comments feature" by Kiwi
May 08, 2025, 02:04:16 am

Trying to access array offset on null by Michel68
May 05, 2025, 08:47:34 am

Default [Additional] Membergroups upon Registration by SMFHacks
April 30, 2025, 10:22:52 am

Sorted FTP Import Directory by SMFHacks
April 25, 2025, 05:11:22 am

Search results items per page? by SMFHacks
April 18, 2025, 04:12:23 pm

Suggestions and request by Senkusha
April 03, 2025, 02:30:43 pm

How does a member add a Classified Listing? by SMFHacks
March 28, 2025, 08:05:50 pm

Auto converting to webp or AVIF by [chrisB]
March 28, 2025, 01:46:00 pm

Thumbnail creation settings by SMFHacks
March 28, 2025, 12:42:51 pm

Powered by EzPortal