Version: 4.0.9, by squidsk
Developer Last Online: Aug 2021
Category: Major Additions -
Version: 4.0.2
Rating:
Released: 01-09-2010
Last Update: 12-15-2014
Installs: 982
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations
No support by the author.
*** CREATE A BACKUP OF YOUR FORUM AND DATABASE BEFORE INSTALLING ***
DESCRIPTION:
This is a Medals/Awards system. Admin can give members awards, and award icons will be displayed in member's profile, posts, as well as in a award list.
FEATURES: In AdminCP
- Can Create/Edit/Delete/Reorder categories/sub-categories in ACP (with category name and description)
- Can Create/Edit/Delete awards in ACP (with Award Name, Description, Icon URL, Image URL)
- Can Move one (or all) award(s) from one category to another
- Can set some awards un-classified (not displayed for public)
- Can re-order awards in awards showcase
- Issue awards to members, based on username or userid, with Issue Reason
- Remove awards from members
+ Writes granting/removing awards to the log
In ModCP
- Issue awards to members, based on username or userid, with Issue Reason
- Remove awards from members
+ Writes granting/removing award to the log
Front page
- Display awards list in with: Award Name, Description, Icon, Image, and Members who get each award.
- Display awards showcase in profile, with Award information, Issue time and reason
- Display award icons in postbit (showthread, showpost, announcement, private)
New Features/Additions since 3.8
- Points System
- Separate Award Request/Recommendation Forms
- CSS Customizable
Current Release 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
Wow! I clicked on the link and I too got a 500 Internal Server Error and is not making me wonder if that is the reason I am also getting 500 Internal Server Errors on my site too.
Squidsk, after the patch I started getting these errors and I thought it was something to do with server overloads. I never had these errors in the past and I do get them regularly, up to 5-10 times a day now.
Can you please take a look, I can confirm I got that error when I visiting his link and like I said, I have gotten these myself on my site.
Wow! I clicked on the link and I too got a 500 Internal Server Error and is not making me wonder if that is the reason I am also getting 500 Internal Server Errors on my site too.
Squidsk, after the patch I started getting these errors and I thought it was something to do with server overloads. I never had these errors in the past and I do get them regularly, up to 5-10 times a day now.
Can you please take a look, I can confirm I got that error when I visiting his link and like I said, I have gotten these myself on my site.
I'd need the server logs for the time that someone gets one of the 500 errors to have any chance of figuring it out. I'm unable to re-create the problem, but that certainly doesn't mean it doesn't exist.
Any other details about when it happens would help. Are you logged in, what are you trying to do on the awards.php page, etc.
Quote:
Originally Posted by psico
Someone tested it on a big board?
I have a forum with 2.5MM users and 15MM posts.
The main board I use it on has 120K members and 12M posts and it works fine.
I'd need the server logs for the time that someone gets one of the 500 errors to have any chance of figuring it out. I'm unable to re-create the problem, but that certainly doesn't mean it doesn't exist.
Any other details about when it happens would help. Are you logged in, what are you trying to do on the awards.php page, etc.
I'll try to pull some logs, but I do have the problem when I am logged in, when logged out no issues.
I'd need the server logs for the time that someone gets one of the 500 errors to have any chance of figuring it out. I'm unable to re-create the problem, but that certainly doesn't mean it doesn't exist.
Any other details about when it happens would help. Are you logged in, what are you trying to do on the awards.php page, etc.
Squid it is very random, sometimes just going to the awards.php it happens, sometimes not even in the awards.php , this started happening after the update never had this problem before.
I thought it was something to do with server overload but my host said nothing like that has been an issue with my site.
They said it was caused by a php file.
If I come across any more information I will let you know.
The error being tossed is: [11-Nov-2012 18:19:30 UTC] PHP Fatal error: Cannot redeclare construct_depth_mark() (previously declared in C:\inetpub\wwwroot\forum2\awards.php:99) in C:\inetpub\wwwroot\forum2\includes\adminfunctions. php on line 1922
The fix I've done is just comment out the if statement of makemarkdepth starting at line 97 going through line 109.
Its my opinion that this bit of code is not needed as the function is now being declared by vB itself now.
The error being tossed is: [11-Nov-2012 18:19:30 UTC] PHP Fatal error: Cannot redeclare construct_depth_mark() (previously declared in C:\inetpub\wwwroot\forum2\awards.php:99) in C:\inetpub\wwwroot\forum2\includes\adminfunctions. php on line 1922
The fix I've done is just comment out the if statement of makemarkdepth starting at line 97 going through line 109.
Its my opinion that this bit of code is not needed as the function is now being declared by vB itself now.
Its declared by vbulletin, always was, but isn't accessible to the awards.php page unless you're including inlcudes/adminfunctions.php, which YaAS does not do by default. One of your other plugins is making a connection to includes/adminfunctions.php that isn't there normally. The real problem is the mod is doing it badly. If you notice the code you commented out is surrounded by an if statement checking if the function exists, so if their code was working correctly the construct_depth_mark wouldn't be (re)declared by awards.php. The fact that its generating an error with the if statement there means there's a flaw in the code of another plugin you're using.