iconAll times are GMT. The time now is 07:35. | Welcome to aberdeen-music! Please register for free in order to access all areas of the web site and to post on our forums.


» Forums » Other Forums » Technical Problems » "You Cannot Give Reputation To This Post"

Technical Problems This forum is for reporting any technical problems you may have accessing or using the web site.

Reply
 
LinkBack Thread Tools
Old 30-09-2007, 15:54   #1 (permalink)

 
Woolies's Avatar

Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.

Profile
Male
location: Twixt Don & Dee
joined: Sep 2003
posts: 82
talents: i shoot musicians

Default "You Cannot Give Reputation To This Post"

A javascript popup error saying "sorry, you cannot give reputation to this post etc, etc" when using the rolldown give reputation box from the star button to the top right of posts.

Tried with a couple of posts / different users in this thread but with no luck for any
Checked my usercp options and the FAQ I look to be able to use the rep system...?
(member for few years so I should have some influence despite the low post count?)


also the error messge has <br />'s in it when the phrase should be using \n line breaks instead
Woolies is offline   Reply With Quote
Sponsored Links
Old 30-09-2007, 16:09   #2 (permalink)

 
Neil's Avatar

Profile
Male
location: Glasgow
joined: Aug 2003
posts: 2,839

Send a message via MSN to Neil Send a message via Skype™ to Neil
Default

Quote:
Originally Posted by Woolies View Post
A javascript popup error saying "sorry, you cannot give reputation to this post etc, etc" when using the rolldown give reputation box from the star button to the top right of posts.

Tried with a couple of posts / different users in this thread but with no luck for any
Checked my usercp options and the FAQ I look to be able to use the rep system...?
(member for few years so I should have some influence despite the low post count?)
You can't give reputation to users for posts in any of the General Discussion forums. The theory being reputation should only be given for posts in the on-topic forums (e.g. Music Discussion forum etc)
Neil is offline   Reply With Quote
Old 30-09-2007, 18:17   #3 (permalink)

 
Woolies's Avatar

Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.

Profile
Male
location: Twixt Don & Dee
joined: Sep 2003
posts: 82
talents: i shoot musicians

Default

ahh right cool.


What are you using to dissallow rep in those forums if I may ask?

A plugin at the showthread_start hook matching forumids and setting $show['reputationlink'] = false should disable showing the button but still show the rep dots
Code:
$no_rep_forums = array(1,2,3,4); if (in_array($threadinfo['forumid'], $no_rep_forums)) { $show['reputationlink'] = false; }
Not tested (might need to be placed in a postbit factory hook) & technically you could then still give rep via manually created url typed into the address bar but not showing the button may be a more user-friendly choice if the option isn't there
Woolies is offline   Reply With Quote
Old 30-09-2007, 18:58   #4 (permalink)

 
Stripey's Avatar

Stripey is an ambassador of goodwill with 91 reputation points.Stripey is an ambassador of goodwill with 91 reputation points.Stripey is an ambassador of goodwill with 91 reputation points.Stripey is an ambassador of goodwill with 91 reputation points.

Profile
joined: Nov 2004
posts: 3,125
bands: the idiots are winning

Default

Quote:
Originally Posted by Woolies View Post
ahh right cool.


What are you using to dissallow rep in those forums if I may ask?
The site just runs on vbulletin, it's all point and click administration isn't it.
Stripey is offline   Reply With Quote
Old 30-09-2007, 19:05   #5 (permalink)

 
Marsh's Avatar

Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.

Profile
Male
location: On the rock bus
joined: Aug 2004
posts: 975
bands: None
talents: Air guitar

Default

Quote:
Originally Posted by Woolies View Post
ahh right cool.

What are you using to dissallow rep in those forums if I may ask?

A plugin at the showthread_start hook matching forumids and setting $show['reputationlink'] = false should disable showing the button but still show the rep dots
Code:
$no_rep_forums = array(1,2,3,4); if (in_array($threadinfo['forumid'], $no_rep_forums)) { $show['reputationlink'] = false; }
Not tested (might need to be placed in a postbit factory hook) & technically you could then still give rep via manually created url typed into the address bar but not showing the button may be a more user-friendly choice if the option isn't there
A popular American three - piece fronted by Pharrell Williams has popped up in my mind.
Marsh is offline   Reply With Quote
Old 30-09-2007, 20:23   #6 (permalink)

 
Woolies's Avatar

Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.

Profile
Male
location: Twixt Don & Dee
joined: Sep 2003
posts: 82
talents: i shoot musicians

Default

Quote:
Originally Posted by Stripey View Post
The site just runs on vbulletin, it's all point and click administration isn't it.
basically yeah but Neil has added a number of nice custom bits & bobs - the reputation/influence tweaks aren't out-of-the box vBulletin, I don't recognise the implementation and I just reckoned not showing the rep button when it has no purpose may be a cleaner solution for casual & irregular posting site members like myself.

Quote:
Originally Posted by Marsh View Post
A popular American three - piece fronted by Pharrell Williams has popped up in my mind.
I had to google that reference. Music geek beats code nerd, oh noes~!
Woolies is offline   Reply With Quote
Old 30-09-2007, 21:03   #7 (permalink)

 
Marsh's Avatar

Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.Marsh is an honor to be around with 122 reputation points.

Profile
Male
location: On the rock bus
joined: Aug 2004
posts: 975
bands: None
talents: Air guitar

Default

Quote:
Originally Posted by Woolies View Post
I had to google that reference. Music geek beats code nerd, oh noes~!
Twos up min!

Nice one
Marsh is offline   Reply With Quote
Old 30-09-2007, 21:07   #8 (permalink)

 
Neil's Avatar

Profile
Male
location: Glasgow
joined: Aug 2003
posts: 2,839

Send a message via MSN to Neil Send a message via Skype™ to Neil
Default

Quote:
Originally Posted by Woolies View Post
What are you using to dissallow rep in those forums if I may ask?
Umm...you can specify which forums that reputation for posts cannot be given for under the User Reputation Options in the admin control panel.

Quote:
Originally Posted by Woolies View Post
Not tested (might need to be placed in a postbit factory hook) & technically you could then still give rep via manually created url typed into the address bar but not showing the button may be a more user-friendly choice if the option isn't there
Cheers for that. I'll give that a try sometime as I agree it would be a lot more user-friendly to just remove the reputation button from posts within those forums. Unfortunately, I'm not finding much time to do anything on this web site as of late.
Neil is offline   Reply With Quote
Old 30-09-2007, 21:30   #9 (permalink)

 
Woolies's Avatar

Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.Woolies is well respected with 53 reputation points.

Profile
Male
location: Twixt Don & Dee
joined: Sep 2003
posts: 82
talents: i shoot musicians

Default

Quote:
Originally Posted by Neil View Post
Umm...you can specify which forums that reputation for posts cannot be given for under the User Reputation Options in the admin control panel.
not in the default install you can't! (Although I admit I had to check across three sites to make sure...)

Quote:
Cheers for that. I'll give that a try sometime as I agree it would be a lot more user-friendly to just remove the reputation button from posts within those forums. Unfortunately, I'm not finding much time to do anything on this web site as of late.
You've managed to upgrade to Photopost vBGallery 2.3 which is more than any of the sites I work on have done yet!
It's nice when a forum based site gets up to speed and just keeps itself ticking over though
Woolies is offline   Reply With Quote
Old 30-09-2007, 22:35   #10 (permalink)

 
Neil's Avatar

Profile
Male
location: Glasgow
joined: Aug 2003
posts: 2,839

Send a message via MSN to Neil Send a message via Skype™ to Neil
Default

Quote:
Originally Posted by Woolies View Post
not in the default install you can't! (Although I admit I had to check across three sites to make sure...)
Ah, my mistake. It appears this helpful little addon (Enhanced Reputation Checks - vBulletin.org Forum) adds this option among a few others. I forgot it added this particular option.
Neil is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't give reputation points. Lucky Rathen Technical Problems 4 24-04-2007 00:06
Reputation & Rewards System - Phase 1 Neil Web Site Announcements 26 07-05-2006 12:29