![]() |
I just changed from 3.0.7 to 3.5.1 and resintalled your hack - the awards that were present prior to the conversion still show up - but in the admincp area if I click on Manger or any of the items I get the following error:
Database error in vBulletin 3.5.1: PHP Code:
|
could somebody please tell me the right code to put the link to awards in my navbar?
|
Quote:
award_cat_displayorder was present in the database since after version 1.0 maybe you did not upgrade your award hack since 1.0 to the latest version for vB 3.0.7, or you missed one step to fix database? anyway, check your database and see if you have table award_cat, and if there's a field called award_cat_displayorder in there. or you may need to run the queries (add prefix if you need to): this query will drop award_cat table. so becareful. if you already have the award cat table, want to keep it, you can look over the next query and see if there is anything wrong. with your current award_cat table. [sql]DROP TABLE IF EXISTS award_cat [/sql] [sql] CREATE TABLE award_cat ( award_cat_id mediumint(8) unsigned NOT NULL auto_increment, award_cat_title varchar(100) NOT NULL default '', award_cat_desc varchar(250) NOT NULL default '', award_cat_displayorder mediumint(8) unsigned NOT NULL default '0', award_cat_parentid mediumint(8) NOT NULL default '-1', PRIMARY KEY (award_cat_id), KEY award_cat_order (award_cat_displayorder) ) TYPE=MyISAM[/sql] [sql] INSERT INTO " . TABLE_PREFIX . "award_cat (award_cat_id, award_cat_title, award_cat_desc, award_cat_displayorder, award_cat_parentid) VALUES (1, 'Default', 'Default category', 1, -1)[/sql] |
Quote:
http://www.w3schools.com/html/html_links.asp <a href="awards.php">$vbphrase[awards]</a>could work |
Quote:
PHP Code:
|
Quote:
remove the " . TABLE_PREFIX . " in that query. ps. REMEMBER to correct prefix with yout vB tables if you use it. |
worked great - thanks.
|
I noticed you changed the look with the postbit. It now has a box around it, and some additional text. I don't have a copy of the old "postbit" code you provided in an earlier version where it showed just the medals and a "more info..." link. Could I possibly have the old postbit code to make it more streamlined, because it gives to much height to the post header (postbit).
Thanks for this great program, and any help would be greatly appreciated. :) |
after u request a reward, where do you go to moderate the request??? i dont see anything in the admin area for moderation....
|
It will be in ACP -> Award System -> Award Manager.
|
Hello. I just installed and immediately recieved several hundred error emails (we have a very busy site) with the following error:
Code:
Invalid SQL: However there is a fieldnamed awardsid Could this be a left over remnant from a hack long ago? |
Quote:
its because its a none register post......check in the previous post theres fix for it |
I need some help. Brilliant hack, I used the 3.0 one by Inf.Webby and now I upgraded to 3.5 and this is a BIG must for me. It's installed and I love it, specially all the cool new stuff, BUT...
My awards are kind of big, and I would like a <br> between them so that they show one under the other. Which template is that done in? I have been trying for 2 hrs and can not figure it out. I am pretty sure it can be done, I did it in 3.0 somehow but who can remember, right? :) Thank you in advance for the help. Ed |
right ive added some custom award... but i dont like the placement... i want to place it here (look at pic) What template and where do i need to edit it.. to be put there.. i also dont like the box that much.. is there anyway to remove the box surrounding the award?
Hope someone can help me out here. andthanks :) |
Quote:
|
Can you help me at all please.
I have installed as directed. I am not sure what I have done wrong, but nothing shows up in my ACP for the awards editing. I have not altered any templates as yet, do I need to do this first, I thought it would have shown in the ACP once I installed. Any feedback appreciated. I very much want to use your program and will be happy to support. Oh here is part of the message that came up when I tried to install. Database error in vBulletin 3.5.1: Invalid SQL: INSERT INTO setting (varname, grouptitle, value, defaultvalue, datatype, optioncode, displayorder, advanced, volatile, product) |
What is a good image size for the awards? - Nevermind
|
How do I change the column widths on Awards.php? The Award Description column is very narrow, while the users who have received award column is very long. I intend to only award to one user per award, so I would like to balance it out to allow a more in-depth description.
|
I got a Problem with just one User
Only his award is shown in the profil , but not in posbit . What's the problem ? |
Quote:
|
kool thanks for this hack..
|
Quote:
|
Got it running now...No longer need help. Thanks anyway.
I have been wanting something like this for ages, we were placing trophies in members siggies till now. Great work...I love it!!! |
hello
have problems with a modification, when i install the hack i have this error Code:
Database error in vBulletin 3.5.1: how can i fix this error? Best Regards, |
RED LINE, I had this same error when uploading, see above posts. the awards system still works anyway.
Only thing I have a little query on is this. When you go to plug in manger, any plugins I have are listed. But the awards one does not show as YAAS etc. etc. It has this message instead. Yet Another Award System 3.5 2.0.6 https://vborg.vbsupport.ru/showthread.php?t=94836 Waaaaah what have I done wrong? |
Hmm I have run into a strange error. When trying to assign an award to any member with a ' in their name it returns an error and the award is not given. For instance, the member name "rockin'male" return an error because of the apostrophe. All other usernames with apostrophes return errors as well when trying to give them awards.
Any ideas how to fix this? Also here are urls to our implementation if you would like to use them in the examples. http://forums.pimprig.com/awards.php http://forums.pimprig.com/showpost.p...24&postcount=3 http://forums.pimprig.com/member.php...tinfo&userid=1 Thanks for the great hack! Edit//crap, I just realized I have those hidden for guests in the postbit. You can login with this account to see... User: test Pass: test |
Hi
I have added this hack to my site and the members love it. I have one request though! In the attached image you'll see one of the various awards from my site. My question is, how do I extend the amount of text that is allowed to be typed for the description of the award? Some are quite long and as you can see it is being cut short. I would appreciate any help anyone can offer on this. |
Hi,
thank you first for the gr8 hack.. I have a small problem with award requests email.. the email received by admin looks like: PHP Code:
- admin ------------------ Sender Information . . . Version used: 2.1.2 VB version: 3.5.2 |
Hi, i like this hack just one big big problem i want for you to fix for me.
You when an member posts an reply and so on, you see the name and Rep and other things, at the moment the awards are at the bottom how do i make them so it is under the Users name? |
Someone please help on this
|
Anyone!?
|
how do i give someone the award??? anyone can help
|
Karsh, Put the awards code beneath
Code:
$post[musername] |
Quote:
|
what about me :(
https://vborg.vbsupport.ru/showpost....&postcount=228 |
Hello, awards are not showing up in member's posts... what have i done wrong?
|
and yes ive done the postbit tempelate edits. ive double checked them as well to make sure i've done them correctly.
|
okay, i looked at this again... it works in postbit_legacy, but not in postbit... but the tempelate edit is correct!
|
Quote:
|
No problems - happy to help where I can :)
|
All times are GMT. The time now is 07:46 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|