Search
Views
- How do I create a Guestbook in Dreamweaver MX - 34,904 views
- 360 virtual tour HELP?!?! MOV or SWF??? - 27,777 views
- Looking for examples of one-page web sites w/ a tracker or counter - 27,547 views
- How can prepared an article for submission? - 18,118 views
- Are online forums obsolete? - 17,740 views
- Link Direct to Table Cell - 16,481 views
- Review www.mwfglobal.com - 10,139 views
- Installing Apache on Win2000 Prof - 9,144 views
- Discussion: KW in Domain, does it add value to appraisals or not? - 8,953 views
- Deprecated tags - 7,850 views
-
Recent Posts
Recent Comments
- Grace on Looking for examples of one-page web sites w/ a tracker or counter
- moneyfiver.com on Looking for examples of one-page web sites w/ a tracker or counter
- moneyfiver.com on Looking for examples of one-page web sites w/ a tracker or counter
- News on Looking for examples of one-page web sites w/ a tracker or counter
- News on Looking for examples of one-page web sites w/ a tracker or counter
Categories
Tags
Advice Ajax Amp backlinks Blog Cms domain doubt email google Greetings Hello Html Css image Images Internet Site Javascripting Job keyword keywords Lot Many Thanks money Niche people Photos Php Php Mysql Programmer Quot regard Right Direction Scripts Templates traffic Web Design Web Designer Webhost Web Page Web Page Design Web Pages wordpress World Wide Web Xhtml yahoo-
November 2025 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Tag Archives: Count Reports
How to get Post and Thread Count Reports and Statistics from vBulletin Admin
I couldn’t choose a post/thread count report / statistics tool while in the vBulletin admin interface, so I threw together this query, which reports a person’s thread counts along with post counts collected by month since the forum was designed: Code: DECIDE ON p. period, p. discussions, t. threads COMING FROM (SELECT FROM_UNIXTIME(dateline, ‘%Y %M’) WHEN period, FROM_UNIXTIME(dateline, ‘%Y%m’) WHEN order_by, COUNT(*) WHEN posts FROM article GROUP BY period) BECAUSE p LEFT ENROLL IN (SELECT FROM_UNIXTIME(dateline, ‘%Y %M’) WHEN period, COUNT(*) WHEN threads FROM line GROUP BY period) BECAUSE t ON p. period of time = t. period of time ORDER BY p. order_by I figured other vBulletin owners could find it valuable. And here’s an extra report that exhibits current month’s posts and threads by way of day: Code: SELECT p. period of time, p. posts, capital t. threads FROM (SELECT FROM_UNIXTIME(dateline, ‘%Y-%m-%d’) WHEN period, COUNT(*) WHEN posts FROM article WHERE FROM_UNIXTIME(dateline, ‘%Y-%m’) = DATE_FORMAT(CURRENT_TIMESTAMP, ‘%Y-%m’) NUMBER BY period) BECAUSE p LEFT ENROLL IN (SELECT FROM_UNIXTIME(dateline, ‘%Y-%m-%d’) WHEN period, COUNT(*) WHEN threads FROM line WHERE FROM_UNIXTIME(dateline, ‘%Y-%m’) = DATE_FORMAT(CURRENT_TIMESTAMP, ‘%Y-%m’) NUMBER BY period) BECAUSE t ON p. period of time = t. period of time ORDER BY p. period … Continue reading
Posted in Web Design
Tagged Count Reports, Dateline, Interface, Line Group, Period Of Time, Post Tool, Report Statistics, Thread Count, threads, Time T, Vbulletin
Leave a comment