Version: 1.0.2, by Simon Lloyd
Developer Last Online: May 2023
Category: Mini Mods -
Version: 4.x.x
Rating:
Released: 12-06-2011
Last Update: 12-07-2011
Installs: 29
DB Changes Uses Plugins
No support by the author.
What this mod does
After installing this mod it will display the number of articles that a member has posted underneath "Posts:" in the postbit.
What this mod doesn't do (yet!)
This mod will not deduct from Article count when "Unpublishing", i will be working on this when time allows.
How to install
Simply download the product and install via AdminCp>Plugins & Products>Manage Products>Add/Install Product
The resources this mod uses
2 queries on install one of which may take quite some time on big boards
1 query when publishing an article
1 query when deleting an article
1 query on uninstall
Please mark as installed if you use this
Support will only be given to those that have marked it installed
__________________________________________________ ______________ Special Thanks to these people for helping me sort out my installation issues
Lynne
KH99
HMBeaty
Paul M
Version History
7th December 2011 Intial release ver1.0.0
8th Decmber 2011 Minor update, count is now clickable link to articles ver1.0.1
8th December 2011 minor change to fix my fixed url
When upgrading uninstall previous version first!!!
is there a way to use this in the db postbit tabs, ie can u please release the code and what template its in so i can move it into dbtech postbit icons, thanks, and nice mod been looking for this
is there a way to use this in the db postbit tabs, ie can u please release the code and what template its in so i can move it into dbtech postbit icons, thanks, and nice mod been looking for this
you can use this code in DBT Postbilt tabmod but need to remove some doublepost from postbit template... am playing with it right now
Have you now got a count since you are trying to integrate it?
Quote:
Originally Posted by Mr_Running
Yes, confirm mine reads zero - 0 - too!
Also it would be an improvement if it linked to the articles.
I installed this on a live board and it DID count the articles on install, how did you create your articles? was it through the CMS or was it by promoting a post to article?, also it will only count articles if you haven't changed the prefix from Article to something else, the best way to check is to run this in your admincp>maintainance>execute query:
HTML Code:
SELECT *
, COUNT(postusername) as count
FROM PREFIX_thread
WHERE title LIKE "Article:%"
AND postuserid =YOUR USERID
don't forget to change PREFIX for your forum database prefix so it would read something like "vb_thread" (without the quotes), and dont forget to insert your userid inplace of YOUR USERID.
When you run the query you will get a single row table, at the far right of the table will be the count row where your total amount of threads that have the prefix "Article:" in front of them, let me know the result.