vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - Yet Another Awards System (https://vborg.vbsupport.ru/showthread.php?t=232684)

GONUMBER6 11-11-2014 03:34 PM

I love this mod and have been using it for several years now! After the last vb upgrade, I notice and error flash when I issue and award- it only shows for a second but it is a warning and has to do with mySQL-tried to get a screenshot but it happens too fast. Everything seems to be in working order- but thought I would let you know just in case.

squidsk 11-11-2014 11:44 PM

Quote:

Originally Posted by GONUMBER6 (Post 2522276)
I love this mod and have been using it for several years now! After the last vb upgrade, I notice and error flash when I issue and award- it only shows for a second but it is a warning and has to do with mySQL-tried to get a screenshot but it happens too fast. Everything seems to be in working order- but thought I would let you know just in case.

Without the error message it's hard to diagnose what's going on. Check your server logs as the error should also be located there.

KGodel 12-02-2014 08:48 PM

Does anyone know of an easy way to exclude certain categories from appearing on the page which lists the awards?

alcazarx 12-03-2014 11:33 AM

Me dont know.
You can hide specific awards but not categories.
May sound stupid, but why hide categories?

squidsk 12-03-2014 02:32 PM

Quote:

Originally Posted by KGodel (Post 2525317)
Does anyone know of an easy way to exclude certain categories from appearing on the page which lists the awards?

Currently there is not way of doing so.

KGodel 12-03-2014 10:19 PM

Quote:

Originally Posted by alcazarx (Post 2525389)
Me dont know.
You can hide specific awards but not categories.
May sound stupid, but why hide categories?

There are some awards, such as awards given for x amount of time, that don't need an explanation or need to appear on the page. I'd rather not clutter it up.

Daniel 12-08-2014 12:53 AM

Anyone know of a way to disable the admins/mods approval? I'd like the award to go straight through and be given to the user...

squidsk 12-08-2014 02:06 PM

Quote:

Originally Posted by Daniel (Post 2526239)
Anyone know of a way to disable the admins/mods approval? I'd like the award to go straight through and be given to the user...

There is no way to do so short of making changes to the code nor do I have no plans to add such a feature. If you were to make changes to do that I'd look at creating a custom cron job.

squidsk 12-15-2014 07:26 PM

A bit of an early Christmas gift for everyone.

Released YaAS Version 4.0.9
  • Added - Handling of user merges
  • Added - Handling of user deletes
  • Added - Manage awards on per user basis
  • Added - Extra info to the logs for mass removal and editing of issued awards
  • Added - Ability to collapse categories on awards.php
  • Added - Checksum file for checking for suspect file versions
  • Added - Various Missing phrases
  • Fixed - Memberlist not showing awards when option is active
  • Fixed - Navtab not being selected (vb version < 4.2)
  • Fixed - Category title not being displayed on awards.php
  • Fixed - Logging not working in modcp
  • Fixed - mysql error/warning when issuing awards
  • Fixed - A few other minor bugs
  • Updated - Verion in version phrase

KGodel 12-15-2014 08:56 PM

Awesome! Thanks for the update!

Crotan 12-15-2014 11:52 PM

Quote:

Originally Posted by squidsk (Post 2527331)
A bit of an early Christmas gift for everyone.

Released YaAS Version 4.0.9
  • Added - Handling of user merges
  • Added - Handling of user deletes
  • Added - Manage awards on per user basis
  • Added - Extra info to the logs for mass removal and editing of issued awards
  • Added - Ability to collapse categories on awards.php
  • Added - Checksum file for checking for suspect file versions
  • Added - Various Missing phrases
  • Fixed - Memberlist not showing awards when option is active
  • Fixed - Navtab not being selected (vb version < 4.2)
  • Fixed - Category title not being displayed on awards.php
  • Fixed - Logging not working in modcp
  • Fixed - mysql error/warning when issuing awards
  • Fixed - A few other minor bugs
  • Updated - Verion in version phrase

And here I thought this was forgotten. You sir are a gentleman and a scholar. :up:

CAG CheechDogg 12-16-2014 03:26 AM

I get the following error when searching for a member to manage their awards:

I x'd out some of the information ....

Code:

Database error in vBulletin x.x.xx:

Invalid SQL:

                        SELECT award.award_id, award.award_name, award.award_desc, award.award_icon_url, award.award_img_url, award_user.*
                        FROM cagisf_award_user as award_user
                        LEFT JOIN cagisf_ award as award USING (award_id)
                        WHERE award_user.userid = 3837;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'as award USING (award_id)
                        WHERE award_user.userid = 3837' at line 3
Error Number  : 1064
Request Date  : Monday, December 15th 2014 @ 09:21:41 PM
Error Date    : Monday, December 15th 2014 @ 09:21:42 PM
Script        : http://www.mysite.com/community/myadmincp/award_user.php?do=edit&u=3837
Referrer      : https://www.mysite.com/community/myadmincp/award_user.php?do=search
IP Address    : xxx.xxx.xxx.xxx
Username      : CAG CheechDogg
Classname    : vB_Database
MySQL Version : 5.5.40-36.1


CAG CheechDogg 12-16-2014 03:53 AM

Let me be a bit more clear on how I get this error:

I click on the menu link "Award User Manager"

Then I search for a player to manage their awards and BAM! I get that error every time ...

Everything else seems to work fine Squidsk ...THANK YOU !!!

CAG CheechDogg 12-16-2014 05:53 AM

WOAH! lol ...

After a little searching I figured out the problem to fix the error above:

In your "award_user.php" file inside upload/admincp find the following:


Code:

$awards = $db->query("
                        SELECT award.award_id, award.award_name, award.award_desc, award.award_icon_url, award.award_img_url, award_user.*
                        FROM " . TABLE_PREFIX . " award_user as award_user
                        LEFT JOIN " . TABLE_PREFIX . " award as award USING (award_id)
                        WHERE award_user.userid = " . $vbulletin->GPC['userid']
                );

Replace it with :

Code:

$awards = $db->query("
                        SELECT award.award_id, award.award_name, award.award_desc, award.award_icon_url, award.award_img_url, award_user.*
                        FROM " . TABLE_PREFIX . "award_user as award_user
                        LEFT JOIN " . TABLE_PREFIX . "award as award USING (award_id)
                        WHERE award_user.userid = " . $vbulletin->GPC['userid']
                );

The thing causing this error was the extra space between the (") and award as award USING (award_id) in the 3rd line (LEFT JOIN) which I highlighted in red above ....

maupassant 12-16-2014 06:13 AM

Thanks for the update. I'd like to know if the problems I mentionned a while back have been "fixed" in this version before I install it. Thank you.
https://vborg.vbsupport.ru/showpost....postcount=1650

CAG CheechDogg 12-16-2014 07:01 AM

Quote:

Originally Posted by maupassant (Post 2527387)
Thanks for the update. I'd like to know if the problems I mentionned a while back have been "fixed" in this version before I install it. Thank you.
https://vborg.vbsupport.ru/showpost....postcount=1650

From my forums yes those issues have been fixed ... You can take a look on my forums how it looks: https://www.cagclan.com/community/th...l=1#post215478

You can also choose how many medals per row show up on the postbit

alcazarx 12-16-2014 08:50 AM

@CAG CheechDogg: The same error in green is in the "award_user.php" file in the ModCP (extra space in query).

CAG CheechDogg 12-16-2014 08:57 AM

Quote:

Originally Posted by alcazarx (Post 2527395)
@CAG CheechDogg: The same error in green is in the "award_user.php" file in the ModCP (extra space in query).

Thanks for the heads up alcazarx!!!! I didn't even think about looking in ModCP...GOOD EYE !!!

Kesha 12-16-2014 03:50 PM

I can't download 4.0.9. This site keeps saying "Invalid attachment specified". Was this file uploaded and linked correctly?

squidsk 12-16-2014 03:52 PM

Try again, I was just re-uploading the new version with the above bug in award_users.php (both admincp and modcp) fixed and the md5 sums updated accordingly.

CAG CheechDogg 12-16-2014 04:05 PM

Quote:

Originally Posted by squidsk (Post 2527477)
Try again, I was just re-uploading the new version with the above bug in award_users.php (both admincp and modcp) fixed and the md5 sums updated accordingly.

So the new md5 file needs to be updated as well?

If I did the above bug fixes in the admincp and modcp (award_users.php) files do I still need to update anything? Thanks once again squidsk !!!

squidsk 12-16-2014 04:07 PM

Quote:

Originally Posted by alcazarx (Post 2527395)
@CAG CheechDogg: The same error in green is in the "award_user.php" file in the ModCP (extra space in query).

Quote:

Originally Posted by CAG CheechDogg (Post 2527381)
I get the following error when searching for a member to manage their awards:

I x'd out some of the information ....

Code:

<snip>

Thanks for finding that! I've uploaded a new version of the 4.0.9 version with that bug fixed and the md5 sums updated accordingly.

Quote:

Originally Posted by maupassant (Post 2527387)
Thanks for the update. I'd like to know if the problems I mentionned a while back have been "fixed" in this version before I install it. Thank you.
https://vborg.vbsupport.ru/showpost....postcount=1650

No because the problem is on your end and has nothing to do with the mod. I can't tell from the screenshots for certain, but it looks like you are using postbit_legacy. When using postbit_legacy the width of the awards postbit display is based off the setting for the stylevar postbitlegacy_userinfo_width. If you are using postbit_legacy you are allowing content in your postbit that is wider than the value you have set for that stylevar. If you have not using postbit legacy (i.e. the postbit where things are displayed across the top of the post instead of at the side) then you'd need to edit the width that is set for the awards display in the .postbit .userinfo .yaas_postbit in the awards_css.css template.

squidsk 12-16-2014 04:14 PM

Quote:

Originally Posted by CAG CheechDogg (Post 2527488)
So the new md5 file needs to be updated as well?

If I did the above bug fixes in the admincp and modcp (award_users.php) files do I still need to update anything? Thanks once again squidsk !!!

There were a couple of other minor tweaks as well, if you just copy the new files to your server you should be fine. The reason the md5 sums need to be updated is that the files have changed and if I didn't update the md5 sums those files would show as not having expected content.

A total of 5 files were changed with minor tweaks:
  • modcp/award_user.php
  • modcp/award.php
  • admincp/award_user.php
  • admincp/award.php
  • includes/md5_sums_yaas.php

CAG CheechDogg 12-16-2014 04:19 PM

Quote:

Originally Posted by squidsk (Post 2527489)
Thanks for finding that! I've uploaded a new version of the 4.0.9 version with that bug fixed and the md5 sums updated accordingly.

No problem ... I was going nuts trying to figure it out ... I finally got my thinking cap on straight and found it ...

Quote:

Originally Posted by squidsk (Post 2527493)
There were a couple of other minor tweaks as well, if you just copy the new files to your server you should be fine. The reason the md5 sums need to be updated is that the file has changed and if I didn't update them the files would show as not having expected content.

A total of 5 files were changed with minor tweaks:
  • modcp/award_user.php
  • modcp/award.php
  • admincp/award_user.php
  • admincp/award.php
  • includes/md5_sums_yaas.php

Ok thanks for the list of files changed .....once again squidsk thank you !!!!

squidsk 12-16-2014 04:25 PM

I would be very remiss if I didn't point this out but the fix the memberinfo list functionality was provided by Elite_360_

CAG CheechDogg 12-16-2014 04:25 PM

Quote:

Originally Posted by squidsk (Post 2527489)
No because the problem is on your end and has nothing to do with the mod. I can't tell from the screenshots for certain, but it looks like you are using postbit_legacy. When using postbit_legacy the width of the awards postbit display is based off the setting for the stylevar postbitlegacy_userinfo_width. If you are using postbit_legacy you are allowing content in your postbit that is wider than the value you have set for that stylevar. If you have not using postbit legacy (i.e. the postbit where things are displayed across the top of the post instead of at the side) then you'd need to edit the width that is set for the awards display in the .postbit .userinfo .yaas_postbit in the awards_css.css template.

I apologize for saying that these issues were fixed..I never took into consideration the fact that it's different in postbit_legacy and posbit .... :eek:

CAG CheechDogg 12-16-2014 04:26 PM

Quote:

Originally Posted by squidsk (Post 2527500)
I would be very remiss if I didn't point this out but the fix the memberinfo list functionality was provided by Elite_360_

What fix was that my Man ?

CAG CheechDogg 12-16-2014 04:28 PM

You mean: Memberlist not showing awards when option is active? ...if that's the one I never came across this bug....

maupassant 12-16-2014 04:45 PM

1 Attachment(s)
Quote:

Originally Posted by squidsk (Post 2527489)
Thanks for finding that! I've uploaded a new version of the 4.0.9 version with that bug fixed and the md5 sums updated accordingly.



No because the problem is on your end and has nothing to do with the mod. I can't tell from the screenshots for certain, but it looks like you are using postbit_legacy. When using postbit_legacy the width of the awards postbit display is based off the setting for the stylevar postbitlegacy_userinfo_width. If you are using postbit_legacy you are allowing content in your postbit that is wider than the value you have set for that stylevar. If you have not using postbit legacy (i.e. the postbit where things are displayed across the top of the post instead of at the side) then you'd need to edit the width that is set for the awards display in the .postbit .userinfo .yaas_postbit in the awards_css.css template.

Not using postbit_legacy. But I'll try to fix the problems with your instructions. Thank you.

Kesha 12-16-2014 06:32 PM

I finally got this mod uploaded and the XML file upgraded and I've run into problems.

1) /forums/awards.php shows only a blank page
2) Awards do not display in postbit
3) Awards tab is gone from user profiles

I've already checked and verified the appropriate settings in the Admin CP and everything's normal. Do I have something going on?

alcazarx 12-16-2014 06:34 PM

Quote:

Originally Posted by CAG CheechDogg (Post 2527397)
Thanks for the heads up alcazarx!!!! I didn't even think about looking in ModCP...GOOD EYE !!!

Found it while updating the mod.
We have some "extras" build in (see other post here) and so can't simply overwrite the files.

squidsk 12-16-2014 06:47 PM

Quote:

Originally Posted by Kesha (Post 2527537)
I finally got this mod uploaded and the XML file upgraded and I've run into problems.

1) /forums/awards.php shows only a blank page
2) Awards do not display in postbit
3) Awards tab is gone from user profiles

I've already checked and verified the appropriate settings in the Admin CP and everything's normal. Do I have something going on?

Without a link to your site, and possibly admin access its hard to figure out what's going on. For the first error I'd need to the error message from your logs to have a change at figuring it out. The second and third, what version were you upgrading from? Were there any errors when installing/upgrading?

Quote:

Originally Posted by alcazarx (Post 2527539)
Found it while updating the mod.
We have some "extras" build in (see other post here) and so can't simply overwrite the files.

If you don't mind sharing the "extras" they might be features/changes I could include into the mod. I'm always on the lookout for good ideas.

Kesha 12-16-2014 06:51 PM

Quote:

Originally Posted by squidsk (Post 2527540)
Without a link to your site, and possibly admin access its hard to figure out what's going on. For the first error I'd need to the error message from your logs to have a change at figuring it out. The second and third, what version were you upgrading from? Were there any errors when installing/upgrading?

I can provide you with the appropriate access, if you have a Skype could you send that my way in a Private Message here?

CAG CheechDogg 12-16-2014 07:01 PM

Quote:

Originally Posted by squidsk (Post 2527540)
If you don't mind sharing the "extras" they might be features/changes I could include into the mod. I'm always on the lookout for good ideas.

These are the changes he's talking about :

https://vborg.vbsupport.ru/showthrea...79#post2512879

maupassant 12-16-2014 07:15 PM

1 Attachment(s)
Problem fixed at my end by changing width to 250px. Thank you ! :):)

CAG CheechDogg 12-16-2014 07:17 PM

Quote:

Originally Posted by maupassant (Post 2527550)
Problem fixed at my end by changing width to 250px. Thank you ! :):)

Good to see you got it fixed my Man ... and again sorry for the misinformation earlier ...

squidsk 12-16-2014 07:18 PM

Quote:

Originally Posted by CAG CheechDogg (Post 2527543)
These are the changes he's talking about :

https://vborg.vbsupport.ru/showthrea...79#post2512879

I'm getting senile in my old age. I've already seen that list and am adding those, in some fashion, into the 4.1 release, which unfortunately is still a bit out.

CAG CheechDogg 12-16-2014 07:26 PM

Quote:

Originally Posted by squidsk (Post 2527552)
I'm getting senile in my old age. I've already seen that list and am adding those, in some fashion, into the 4.1 release, which unfortunately is still a bit out.

LOL !!! :p it's all good my Man .... I'm on the same boat !!!

squidsk 12-16-2014 07:36 PM

Quote:

Originally Posted by maupassant (Post 2527550)
Problem fixed at my end by changing width to 250px. Thank you ! :):)

I'm glad that worked for you.

maupassant 12-17-2014 04:53 AM

Quote:

Originally Posted by CAG CheechDogg (Post 2527551)
Good to see you got it fixed my Man ... and again sorry for the misinformation earlier ...

No problem. Better trying to help others than say nothing. :)


All times are GMT. The time now is 12: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.03185 seconds
  • Memory Usage 1,861KB
  • 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
  • (27)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