Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

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

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43295
Total Topics: 7523
Most Online Today: 221
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 204
Total: 204

Author Topic: Members can't rate photos  (Read 6978 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: 16452
    • 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: 16452
    • 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
8835 Views
Last post October 11, 2006, 01:39:15 pm
by TeamVTEC
21 Replies
12469 Views
Last post August 02, 2017, 05:07:03 pm
by SMFHacks
13 Replies
12211 Views
Last post July 15, 2007, 04:09:24 pm
by dano1
6 Replies
7210 Views
Last post January 19, 2008, 02:01:52 pm
by spurry
10 Replies
9263 Views
Last post September 09, 2014, 08:56:53 am
by Jonas1975

+- Recent Topics

Please Help! by SMFHacks
April 17, 2024, 08:04:55 am

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal