Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!
Can you please try to run the following query manually:
Code:
SELECT COUNT(*) AS nbItems,tag.*
FROM xf_tag_content AS tag_content
LEFT JOIN xf_tag AS tag ON (tag.tag_id=tag_content.tag_id)
WHERE content_type='thread'
GROUP BY tag_id
ORDER BY nbItems DESC
I can't find any empty tags, but some tags with 0 uses.
Means, there are some tags left, that do not have any assignments to threads anymore as they were removed from threads.
Some others were created in ACP, but were never used. last_use_date is then 0.
If I extend the WHERE-clause by "AND last_use_date > 0" it works
PHP:
SELECT COUNT(*) AS nbItems,tag.*
FROM xf_tag_content AS tag_content
LEFT JOIN xf_tag AS tag ON (tag.tag_id=tag_content.tag_id)
WHERE content_type='thread' AND last_use_date > 0
GROUP BY tag_id
ORDER BY nbItems DESC
Another tag-related question
the getTopTaggers function in tag.php isn't used somewhere in the add-on, isn't it ?
Would be interesting to know who is tagging the most content
Another missing thing, not really a bug ... and not worth to open a seperate thread
There seems to be no phrase for "medias". At least I didn't find something.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.