Reputation: 18316
i want to add page hit to nodes on my drupal site.how can i do that?
Upvotes: 5
Views: 5949
Reputation: 33
What might work easier is "Node view count" module: http://drupal.org/project/nodeviewcount
I also came accross this other useful "Visitors" module: http://drupal.org/project/visitors
Hope this helps...options are always good :)
Upvotes: 2
Reputation: 1797
Use the built-in Statistics module to add a pure page count. If you want to display the number of unique visitors that visit a page, you will need to use the Statistics Advanced module .This module counts the number of unique IP addresses per visit, while the Drupal core Statistics module increments its count every time the node is viewed.
Upvotes: 6
Reputation: 31
After enabling the Statistics module, you can en/disable and configure it here: Administer -> Reports -> Access log settings (admin/reports/settings). The Statistics Advanced module's configuration is there, also.
Upvotes: 0