vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=196244)

Elenna 04-27-2009 03:00 PM

There is a "Yet Another Awards System" category in the Template editor. I think the Showcase one might be the one you're looking for?

sbsforum.us 04-28-2009 03:23 PM

Installed and using!

This is a great mod, the only thing that I wish was included was some sort of triggering!

Thanks again.

Elenna 04-28-2009 04:11 PM

SBS, do you mean some sort of auto-award, like if someone has been registered for 6 months, they automatically get an award?

RobbieZ 05-03-2009 04:49 PM

How do you remove an award from a member ?

Biker_GA 05-03-2009 04:54 PM

Go to AdminCP -> Award System -> Award Manager

(All on left side of screen)

You'll see the option to delete awards there.

Brakkish 05-04-2009 05:56 AM

My third attempt at getting some support. What exactly do I need to do to get your attention? It's a simple question. Is there way to widen the Name/Description column.

If so, please point me to the file that contains the code I need to change.
If not, and there is no way, please ffs let me know. Waiting a month for an answer including a reminder post, is not what I'd call any sort of support.

As you can see here in this awards display, it would look much better if descriptions were not word wrapped after a few words. The column needs to be wider. Have a look: http://www.hammerfistclan.com/forum/awards.php

RobbieZ 05-04-2009 05:28 PM

Quote:

Originally Posted by Biker_GA (Post 1803764)
Go to AdminCP -> Award System -> Award Manager

(All on left side of screen)

You'll see the option to delete awards there.

Thats how to delete the award not remove it from a member

As it states in the mod

Quote:

+ Remove awards from members

Biker_GA 05-04-2009 05:44 PM

Where the actual award is listed WITH the member name, there is an option to delete. **banging head on desk**

RobbieZ 05-04-2009 05:56 PM

Quote:

Originally Posted by Biker_GA (Post 1804504)
Where the actual award is listed WITH the member name, there is an option to delete. **banging head on desk**

Ok. sorry bout your head.

Award manager I have this screen.

https://vborg.vbsupport.ru/external/2009/05/37.png

But when i press delete i get this screen.

https://vborg.vbsupport.ru/external/2009/05/38.png

This deletes the actual categroy!

Biker_GA 05-04-2009 06:02 PM

Select "Give Award to User". At bottom of the screen you will see a list of those who have received the award, along with the option to remove.

RobbieZ 05-04-2009 06:09 PM

Thank you good sir :D

PirateTinman 05-07-2009 05:24 PM

Is there any way to get this mod to be displayed to the left of the Join Date and Post, in the user information field?
----------------------------------------------------------------------- like right above threre ^
I would make the page look allot slimer instead of having it under all the information.
I am sure it is possible, but I have no idea on how to move it to that location, I guess I would need to replace some code, if anyone knows how to do this I would be very greatfull.

Thanks!

Biker_GA 05-07-2009 05:37 PM

Just move the code in your postbit template to the location where you want the award to appear.

PirateTinman 05-07-2009 06:00 PM

Thanks for the response, but I did not get allot closer, would you mind tell me what file I need to edit, one of the YAAS postbits or one of the one for my forum style, havent done allot of modifying, and what code am I supposed to move?

HolyKiller 05-10-2009 08:56 AM

Fine mod, but i get one Warning if i giving avard to some user.

Code:

Warning: mysql_insert_id() [function.mysql-insert-id]: A link to the server could not be established in [path]/adminpanel/award.php on line 581
Award is given, PM sended, everything looks fine, but that messages... i don't know what is wrong.

Thanks

Holy

Biker_GA 05-10-2009 12:11 PM

Quote:

Originally Posted by PirateTinman (Post 1806514)
Thanks for the response, but I did not get allot closer, would you mind tell me what file I need to edit, one of the YAAS postbits or one of the one for my forum style, havent done allot of modifying, and what code am I supposed to move?

I did state which template to edit. Postbit

Find the snippet of code that places the award into the template, and move it to the location where you want it to appear in the template.

Biker_GA 05-10-2009 12:13 PM

Quote:

Originally Posted by HolyKiller (Post 1807897)
Fine mod, but i get one Warning if i giving avard to some user.

Code:

Warning: mysql_insert_id() [function.mysql-insert-id]: A link to the server could not be established in [path]/adminpanel/award.php on line 581
Award is given, PM sended, everything looks fine, but that messages... i don't know what is wrong.

Thanks

Holy

You've made an error somewhere during the installation. Triple check your installation and edits.

fourat 05-11-2009 03:02 AM

hi
when i put Userid for Congratulation PM ... the PM sent to user but the sender is number of the id not the name !!
when i put the id no. 1 its name is "fourat" the pm's sender name shown in the private messeges is "1" .. not "fourat"
when members try to replay this messege the forum say:
The following errors occurred with your submission
The following users were not found: 1

how i fix this problem ?

muslimmomscafe 05-15-2009 04:47 PM

Hello,

I gave a user an award, and it says on the "Users that already received award" her username but it wont show in her postbit. Why is that? I have given awards to other members and theirs did show on the postbit.

thanks

cermi 05-16-2009 08:36 PM

Quote:

Originally Posted by HolyKiller (Post 1807897)
Fine mod, but i get one Warning if i giving avard to some user.

Code:

Warning: mysql_insert_id() [function.mysql-insert-id]: A link to the server could not be established in [path]/adminpanel/award.php on line 581
Award is given, PM sended, everything looks fine, but that messages... i don't know what is wrong.

Thanks

Holy

The problem is in the mod source. The author "hardcoded" usage of (now deprecated, but that's not the point) mysql_insert_id(). But vB can use both mysql and mysqli API. And when you switch vB to new mysqli API, the problem appears:
  1. mysql_insert_id() is called without parameters, so it's supposed to take last opened mysql connection (opened from "old" mysql api)
  2. but there is no mysql connection, all connetions were opened by mysqli api
  3. "no worries!", says php, "we make new connections", so it tooks db credentials from php.ini and tries to make new connection
  4. but credentials in php.ini are usually empty, therefore the connection fails and mysql_insert_id() fails with it

Solution? I don't want to be rude, but hardcoding 1 api when vB is capable of running of 2 different APIs isn't the cleanest way. The cleanest way would be to use vB's build-in class and call some *insert_id() wrapped (if exists) or to dig the mysql(i) link object from vB's classes and use it directly in consideration of selected mysql API in vB conf. Or perhaps something better :) There are always many solutions to those kinds of problems.

But it's nice mod, anyway :)

vbreal 05-18-2009 04:24 PM

i have the lates version for 3.6 but i am running 3.8. every thing is working fine

is there any reason i should up grade tp this version?

bluerob 05-18-2009 08:33 PM

the plugin seemed to install but the manage options don't appear on the admin cp panel on the left hand side. Any idea?

muslimmomscafe 05-19-2009 11:12 AM

Can anyone help me pleaseeeeeeee

Hello,

I gave a user an award, and it says on the "Users that already received award" her username but it wont show in her postbit. Why is that? I have given awards to other members and theirs did show on the postbit.

thanks

meijin 05-20-2009 01:27 PM

Can anyone share the icons they are using for awards or know of a good site where they could be obtained? I'd love to use this, but I have zero artistic ability and would not be able to create the icons needed.

Thanks!

Biker_GA 05-20-2009 01:37 PM

1 Attachment(s)
Here ya go....

ricardoNJ 05-21-2009 05:35 AM

Very nices hack...THANKS!

ninja1 05-24-2009 12:11 PM

its work in 3.8.1 ?

Biker_GA 05-24-2009 03:28 PM

Yes

Ftu-forum 05-24-2009 04:21 PM

:-? Sorry, but i got troubl
it's return: No Phrases Matched Your Query
when i edit the PM subject and Content
so does, none PM was sent :-??

Biker_GA 05-24-2009 04:30 PM

What do you mean "Edit the PM Subject and Content"?

Ftu-forum 05-25-2009 10:47 AM

Yes, i can't find that phrase
in admincp:>> Award system settings

Code:

From Userid for Congratulation PM and/or Email
Enter the userID of the User you would like to appear as sender of the Congratulation PM and/or Email.
Leave it "0" to use userid of the one who issue award
To edit the PM Content, click here, to edit the Subject click here.

and when i click, the results is below:
Code:

No Phrases Matched Your Query

yatz 05-26-2009 05:01 PM

where can i download more awards from?

Biker_GA 05-26-2009 05:33 PM

You create the award. Perhaps you mean medals? If so, I posted a zip file elsewhere in this thread that contains extras. Or you can make your own.

muslimmomscafe 05-28-2009 04:42 PM

Can anyone help me pleaseeeeeeee

Hello,

I gave a user an award, and it says on the "Users that already received award" her username but it wont show in her postbit. Why is that? I have given awards to other members and theirs did show on the postbit.

thanks

Criminal-Minds 05-30-2009 06:34 PM

Can some help me please?

When a member request an award they get this error

Quote:

There's some error when sending your award request. Please contact site's administrator for assistant.
I've had this installed for awhile now. If I was just to install everything over again (overwrite) would I lose all the awards i've giving out to ppl?

And yes I have the settings set to yes in their user groups

abhimation 06-06-2009 02:21 PM

It doesnt show the settings tab in the left side of my AdminCP... :(

abhimation 06-06-2009 02:54 PM

Nevamind... i imported the xml again and it works fine now.

Thnx for the Mod...

Pt1994 06-14-2009 05:10 PM

This broke and gave me a mysql error how cna i fix?

Elenna 06-15-2009 07:25 PM

Please give the error message and what page you were on when it gave you the message (or what link you clicked on ).

KrisCarter05 06-16-2009 08:31 PM

Okay... I've been looking for over an hour now... I MUST be missing it.

I can't find the "Award System" to make up the awards.

I'm not even sure where the "AdminCP" is... I'm in my control panel... but the only place I see anything with Award System is under vBulletin Options.

What am I missing??

Thanks for your help in advance!!!


All times are GMT. The time now is 10:54 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01771 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete