vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Miscellaneous Hacks - Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=187600)

Lianelli 10-06-2009 06:03 PM

Can anyone post the code to make the real awards show up in the postbit, instead of the icons? If not I'll work my way around it, but rather use a good modification instead of messing with templates myself...

jaderollie 10-06-2009 06:30 PM

Quote:

Originally Posted by Lianelli (Post 1895760)
Can anyone post the code to make the real awards show up in the postbit, instead of the icons? If not I'll work my way around it, but rather use a good modification instead of messing with templates myself...

thanks,

Lianelli 10-07-2009 04:16 AM

Jaderollie: did you activate the plugin? It will show at the left admincp menu afterwards.

jaderollie 10-07-2009 04:22 PM

Quote:

Originally Posted by Lianelli (Post 1895983)
Jaderollie: did you activate the plugin? It will show at the left admincp menu afterwards.

yes its activated

profanitytalker 10-15-2009 04:57 PM

Can anyone help me? I'm getting this...

Code:

Fatal error: Cannot redeclare construct_depth_mark() (previously declared in /var/www/personalitycafe.com/awards.php:97) in /var/www/personalitycafe.com/includes/adminfunctions.php on line 1825

TheLastSuperman 10-15-2009 06:02 PM

Quote:

Originally Posted by SBlueman (Post 1865606)
I am running 3.6.12....is this compatible with that version?

There is a 3.6 version by the previous author, it will still create the thread when requested and has one-click approval (if not PM me for the code) you just have to do the tmeplate edits and you can show what you want that way. Sometimes hand coding is better when you didn't make the mod.. again, sometimes :D

S-MAN

jaderollie 10-15-2009 06:45 PM

i may unistall this 1, as i cant get it going niether :(

SBlueman 10-17-2009 08:28 PM

Quote:

Originally Posted by SBlueman (Post 1865606)
I am running 3.6.12....is this compatible with that version?

anyone?

TheLastSuperman 10-17-2009 08:49 PM

Quote:

Originally Posted by SBlueman (Post 1901462)
anyone?



2 Posts up :p

Here it is: https://vborg.vbsupport.ru/showthread.php?t=142487

Or my similar Ranks system for 3.6.x: https://vborg.vbsupport.ru/showthread.php?t=142487

Either mod you can make the titles, images what you want and resize for different uses. Only drawback it has more template edits back then but more flexibilty in terms of how you can display them in certain locations including postbit!

S-MAN

SBlueman 10-17-2009 09:03 PM

Problem with the 3.6 version is I had to uninstall it due to SQL memory leaks that almost killed my site.

TheLastSuperman 10-17-2009 10:50 PM

Quote:

Originally Posted by SBlueman (Post 1901477)
Problem with the 3.6 version is I had to uninstall it due to SQL memory leaks that almost killed my site.

Really? Hmm never had an issue.... I'll check into it in the ranks version as it is very similar to the old Awards system.

kNeeLy 10-19-2009 11:02 AM

i have had this installed forever now..does anyone know where to get sum new/fresh awards?

TheLastSuperman 10-19-2009 11:10 AM

Quote:

Originally Posted by kNeeLy (Post 1902026)
i have had this installed forever now..does anyone know where to get sum new/fresh awards?

For what? I have COD4 & BF2142 that are perfect but you said new and those are slightly outdated O.o

Google Icons or icon packs most come w/ png and use them or find a good little ribbon to use as a BG and then overlay the icon or graphic and save ;)

Xanlamin 11-13-2009 04:39 AM

With 4.0 just around the corner we will no longer be supporting the 3.7 version so we can concentrate on 3.8 and 100% recode for 4.0. If you upgrade your forums to 3.8 or vB4 you can go over to those releases and have continued support.

MarceloS 11-14-2009 10:43 AM

Quote:

Originally Posted by Xanlamin (Post 1913407)
With 4.0 just around the corner we will no longer be supporting the 3.7 version so we can concentrate on 3.8 and 100% recode for 4.0. If you upgrade your forums to 3.8 or vB4 you can go over to those releases and have continued support.

Excellent news man. I am glad to hear that you will be working on a 4.0 version.

By the way, do you think that most mods will not be compatible with 4.0?

gnagplank6 11-16-2009 02:45 AM

This mod sounds awesome.

I would very much like to install it, but does anyone know whether it will run with VB 3.8+???

Thanks!!

kNeeLy 11-22-2009 11:03 PM

Quote:

Originally Posted by TheLastSuperman (Post 1902027)
For what? I have COD4 & BF2142 that are perfect but you said new and those are slightly outdated O.o

Google Icons or icon packs most come w/ png and use them or find a good little ribbon to use as a BG and then overlay the icon or graphic and save ;)

im terrible at photochopping tho... :-( Is there anywhere that you know that i can DL sum new awards? I run a car forum and need sum more/new ones.

Xanlamin 11-22-2009 11:22 PM

Quote:

Originally Posted by MarceloS (Post 1913992)
Excellent news man. I am glad to hear that you will be working on a 4.0 version.

By the way, do you think that most mods will not be compatible with 4.0?

So far there are a lot of mods written for 3.8 that do in fact work without modification with 4.0

Quote:

Originally Posted by gnagplank6 (Post 1915012)
This mod sounds awesome.

I would very much like to install it, but does anyone know whether it will run with VB 3.8+???

Thanks!!

We have a 3.8 version of this mod in the 3.8 Mods section.

dfidler 01-05-2010 08:40 PM

This mod will fail if you try to grant an award to a user by username, if their username has a single quote in it. eg my'name.

The fix is simple.

Edit the following files:
  1. admincp/award.php
  2. modcp/award.php

Now find the code in these files (there are two instances of it in each file for a total of four).

Code:

WHERE username = '". $vbulletin->GPC['awardusername']
Change it to:

Code:

WHERE username = '". $db->escape_string($vbulletin->GPC['awardusername'])
Note: this bug may be fixed in newer versions or it may already be mentioned here in the mod discussion.. However, it was WAY faster for me to find+fix the bug than to read through the 36 pages of comments on this mod. Apologies if this has already been found. In my defense, the mod download doesn't include this fix in it [yet?].

fishmaster 01-09-2010 11:28 PM

Any news on the 4.0 version?

CypherSTL 01-10-2010 09:05 AM

Release 4.0.0 BETA is now available.
https://vborg.vbsupport.ru/showthread.php?t=232684

OurCouponHome 05-12-2010 10:39 PM

I am a complete tech newbie here so please go easy on me...I uploaded this to my site. Now how do I give out an award?

katie hunter 05-31-2010 02:27 PM

Hii Xanlamin - CypherSTL,

Do you think you can implant this feature? :0)

https://vborg.vbsupport.ru/showpost....&postcount=373

Xanlamin 05-31-2010 05:02 PM

This is being worked on for our 3.8 version and 4.x versions.

CypherSTL 05-31-2010 07:14 PM

Yep; I am already working on the 'Page Navigation' to add multiple pages for a lot of awards.

katie hunter 05-31-2010 07:25 PM

Oh!! these are nice news! =) i can't wait to see its layout and how it will look, can we see a version for 3.7.x ? hopefully the 3.8.x should work on the 3.7.x version right ?

profanitytalker 06-28-2010 04:10 AM

Can anyone help me? I'm getting this...

Code:

Fatal error: Cannot redeclare construct_depth_mark() (previously declared in /var/www/personalitycafe.com/awards.php:97) in /var/www/personalitycafe.com/includes/adminfunctions.php on line 1825

Lionel 06-28-2010 04:24 AM

you probably have another mod using adminfunctions.php

the easiest way to fix that would be to rename the function in the awards mod into
construct_depth_mark_awards and make sure you change the name also when calling that function

katie hunter 07-26-2010 05:14 PM

Quote:

Originally Posted by Xanlamin (Post 2046113)
This is being worked on for our 3.8 version and 4.x versions.

Quote:

Originally Posted by CypherSTL (Post 2046169)
Yep; I am already working on the 'Page Navigation' to add multiple pages for a lot of awards.

Hi =) is there a release date set for this new update?

Xanlamin 07-26-2010 05:55 PM

The awards systems for 3.8 and 4.0 has been out for quite awhile now.

katie hunter 07-30-2010 03:29 PM

Hi Xanlamin,

I mean this update, you said it is being worked on implanting it:
https://vborg.vbsupport.ru/showpost....&postcount=543

Fahadzor 11-01-2010 06:28 PM

Thank you very much for the awards system .. I've been asked to install one for a forum I moderate and this seems to have all the options required ..

however, I keep getting a "Database Error" whenever I try to open a member profile. How can I sort the problem ? Is there any 'database' options i need to modify for it to work ?

HS2005 03-14-2011 05:56 PM

I have a question about the postbit,

I see some members have the awards underneath eachother like
-------------
[4] awards
[4] awards
-------------

image: http://img79.imageshack.us/img79/9459/cocardasml7.jpg

On my forum the awards just kepp building up on one row.
I was wandering if i can put something like this;

if $post[num_awards] == 4
<br>
next awards etc.

Image my forum:
http://img716.imageshack.us/i/issuex.jpg/

Scyther 06-20-2011 05:09 AM

unstalling as unable to issue award from mod cp.

Says:

Not Found

The requested URL /forum/modcp/award.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Can anyone help??

tomrep 06-07-2013 01:08 AM

why i get error Deprecated: Assigning the return value of new by reference is deprecated in

DEGE 01-11-2014 04:14 PM

Hi

I couldn't get it working on a vBulletin 3.8.7. Everything works fine until I try to manage, edit, or do anything with the awards, either from admincp or modcp

Does anybody have a clue on that? Is there any 3.8 working version?

Would appreciate any help.


All times are GMT. The time now is 05:55 PM.

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.01942 seconds
  • Memory Usage 1,818KB
  • 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
  • (4)bbcode_code_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (36)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