hd.
hd.

Reputation: 18316

how to display node hit in drupal?

i want to add page hit to nodes on my drupal site.how can i do that?

Upvotes: 5

Views: 5949

Answers (4)

hmartens
hmartens

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

mikesir87
mikesir87

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

oadaeh
oadaeh

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

ceejayoz
ceejayoz

Reputation: 180075

The built-in Statistics module offers this.

Upvotes: 0

Related Questions