XF 2.3 Forum-Wide View/Visit Stats?

VisEntities

Active member
Licensed customer
Is there an overall view/visit statistics for the entire forum available in the statistics dashboard?
 
You could do this DB query for total thread views (would need to expand on it for other content types):
SQL:
SELECT SUM(view_count) as thread_views FROM `xf_thread`;

I don't think XF tracks visits, though.
 
Back
Top Bottom