|
[1.4.x/1.6.x] Thank You/Like System v1.5 (Updated: 10/26/2011)
|
|
12-02-2009, 08:27 PM
Post: #131
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
Thanks for the file , it worked great and thanks for a great plug in!
My Forum |
|||
|
12-02-2009, 08:29 PM
Post: #132
|
|||
|
|||
RE: [Release 1.4.x] Thank You/Like System
(11-18-2009 10:28 PM)- G33K - Wrote:(11-18-2009 09:59 PM)MadamZuZu Wrote: i think it's this line: Sorry for my late reaction about my question. This did not work. In the box for prostats by thanks your can read: Please active Thank You plugin
|
|||
|
12-02-2009, 10:38 PM
(This post was last modified: 12-03-2009 05:56 AM by - G33K -.)
Post: #133
|
|||
|
|||
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
(12-02-2009 01:28 PM)Anmato Wrote: Hey, after update MyBB script to version 1.4.10 we have a problem. While I didn't actually understand your post as to what exactly you were trying to put across, I will go ahead and test this plugin on v1.4.10 and see if theres any issues. (12-02-2009 01:40 PM)Goggalor Wrote:(12-02-2009 11:08 AM)- G33K - Wrote: <snip> Glad it all worked out in the end. I'll look in to the member templates issue and see whats going on. (12-02-2009 08:27 PM)radone29 Wrote: Thanks for the file , it worked great and thanks for a great plug in! Glad it worked out, I'll make sure this fix is included in the next update. (12-02-2009 06:25 PM)Dark Lord Skippy Wrote: Ok... I d/l the file from MyBB and uploaded it properly. Triple-checked to make sure I uploaded all the pertinent files correctly. I need the following from you: MyBB version PHP Version MySQL Version URL of the site where this is happening. (12-02-2009 08:29 PM)spinning Wrote:(11-18-2009 10:28 PM)- G33K - Wrote:(11-18-2009 09:59 PM)MadamZuZu Wrote: i think it's this line: What did not work?? Please be more descriptive. That post you quote was directed to MadamZuZu to try out a fix in the code on an error she was getting on the search page, however she never got back to me on whether or not it worked for her and for good measure I updated that code in the latest release. So when you quote that post and say it doesn't work you're not helping at all unless you provide some more info. If you had taken the time to read through a few posts here then you'd learn that this plugin is not compatible with prostats. Like I said earlier, I could have a look at prostats and see what needs to be done to make it compatible but its not something I have done yet. |
|||
|
12-03-2009, 04:45 PM
Post: #134
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
G33K, that last one is still under the impression you've added support in for ProStats... What he doesn't understand is that ProStats has to be modded to work with your thanks plugin because you use different db fields than the others ones. So it isn't even something you can control.
CodeWeavers - CrossOver: Windows Compatibility on Macintosh and Linux ![]() Doesn't like unsolicited PMs |
|||
|
12-03-2009, 09:13 PM
Post: #135
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
Solved the original problem, but now I have run into this:
When a member goes to their profile and attempts to check on which post they were given thanks, they get this: Quote:MyBB has experienced an internal SQL error and cannot continue. Any ideas? |
|||
|
12-03-2009, 09:31 PM
(This post was last modified: 12-03-2009 09:34 PM by - G33K -.)
Post: #136
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
OK. I have had a couple of users ask me repeatedly about prostats, so if you want the thanks data to show in prostats, heres what you need to do:
NOTE: You can either show Thanks Given Stats or Thanks Received stats, if you want to show both then prostats plugin will need to be moded beyond whats shown here to add that feature something that you can request from the plugin's author. NOTE2: These modifications are for the prostats plugin found here: http://mods.mybboard.net/view/prostats If you have any other advance stats plugin or a prostats plugin from some other author please do not use these mods as they are probably different. You'll need to edit the inc/plugins/prostats.php file as follows: ************************** To show Thanks Received stats: Around Line 1029: FIND Code: if (!$db->field_exists("thxcount","users"))REPLACE WITH Code: if (!$db->field_exists("tyl_unumrcvtyls","users"))Around Line 1037: FIND Code: $query = $db->query("SELECT uid,username,usergroup,displaygroup,thxcount FROM ".TABLE_PREFIX."users ORDER BY thxcount DESC LIMIT 0,".$NumOfRows);REPLACE WITH Code: $query = $db->query("SELECT uid,username,usergroup,displaygroup,tyl_unumrcvtyls FROM ".TABLE_PREFIX."users ORDER BY tyl_unumrcvtyls DESC LIMIT 0,".$NumOfRows);Around Line 1043: FIND Code: $thxnum = $most_thanks['thxcount'];REPLACE WITH Code: $thxnum = $most_thanks['tyl_unumrcvtyls'];***************************** To show Thanks Given stats: Around Line 1029: FIND Code: if (!$db->field_exists("thxcount","users"))REPLACE WITH Code: if (!$db->field_exists("tyl_unumtyls","users"))Around Line 1037: FIND Code: $query = $db->query("SELECT uid,username,usergroup,displaygroup,thxcount FROM ".TABLE_PREFIX."users ORDER BY thxcount DESC LIMIT 0,".$NumOfRows);REPLACE WITH Code: $query = $db->query("SELECT uid,username,usergroup,displaygroup,tyl_unumtyls FROM ".TABLE_PREFIX."users ORDER BY tyl_unumtyls DESC LIMIT 0,".$NumOfRows);Around Line 1043: FIND Code: $thxnum = $most_thanks['thxcount'];REPLACE WITH Code: $thxnum = $most_thanks['tyl_unumtyls'];(12-03-2009 09:13 PM)Dark Lord Skippy Wrote: Solved the original problem, but now I have run into this: Could I have your MySQL version, PHP version and MyBB version please?? |
|||
|
12-03-2009, 09:47 PM
(This post was last modified: 12-03-2009 10:13 PM by Dark Lord Skippy.)
Post: #137
|
|||
|
|||
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
(12-03-2009 09:31 PM)- G33K - Wrote:(12-03-2009 09:13 PM)Dark Lord Skippy Wrote: Solved the original problem, but now I have run into this: Well, the My BB version is 1.4.10 . MySQL version 4.0.27 PHP version 4.4.9 |
|||
|
12-03-2009, 10:22 PM
(This post was last modified: 12-03-2009 10:23 PM by - G33K -.)
Post: #138
|
|||
|
|||
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
(12-03-2009 09:47 PM)Dark Lord Skippy Wrote:(12-03-2009 09:31 PM)- G33K - Wrote:(12-03-2009 09:13 PM)Dark Lord Skippy Wrote: Solved the original problem, but now I have run into this: Your MySQL version is the problem here. You need to have MySQL version of 4.1 or higher for this plugin, I should have made a note about this in the readme (MyBB's minimum requirements are 4.0 and higher). I have used subqueries in the search page to generate the results in order to reduce the load but subqueries are only supported in MySQL versions 4.1 and higher. So if you want to use that search feature you need to update MySQL to at least 4.1. If you absolutely can not update to 4.1 then let me know and I'll see if I can do something about it. |
|||
|
12-03-2009, 11:49 PM
Post: #139
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
any update ???
![]() MyBB-Es.Com spanish support for MyBB
|
|||
|
12-04-2009, 01:05 AM
(This post was last modified: 12-04-2009 01:21 AM by JonathanP.)
Post: #140
|
|||
|
|||
|
RE: [Release 1.4.x] Thank You/Like System (Update: v1.1 Released)
I'm sure there would be because he would of posted.
|
|||
|
« Next Oldest | Next Newest »
|
User(s) browsing this thread:
Search
Member List
Calendar
Help





![[Image: Advocate_125.png]](http://media.codeweavers.com/pub/crossover/marketing/link_banners/Advocate_125.png)

![[Image: 73295022.png]](http://img85.imageshack.us/img85/3429/73295022.png)