How does AWStats estimate how many people have bookmarked my site?

Status
Not open for further replies.


RTFM. ;)
AWStats Documentation - Glossary

It uses the number of times favicon.ico is downloaded. A few years ago, that used to be a fairly accurate measure but it no longer is today because IE6, IE7, and Firefox all seem to download that file automatically.
 
  • Like
Reactions: John
I track my own bookmarks, and I can tell you, no where near what Awstats is, thanks arz for the link
 
method of tracking

You could always have an old hidden forum... that feeds to a cgi-script that redirects back to whatever page they were on.

Then use the javascript
window.external.AddFavorite(urlAddress,pageName)

and also have it submit the forum

document.myform.submit();

The cgi script can then write out a counter++; and then the date, and walla you have add to bookmark stats (too bad theres no way to track them doing using there browser gui.
 
You could always have an old hidden forum... that feeds to a cgi-script that redirects back to whatever page they were on.

That's soooooo web 1.0 :)

Another way would be to use an AJAX call directly from your javascript bookmark-setting function to ping your page that does the counting. That way you don't have to do any redirecting of the user away from and back to whatever page they're on.
 
Status
Not open for further replies.