Questions tagged [hitcounter]

A web counter or hit counter is a computer software program that indicates the number of visitors, or hits, a particular webpage has received. Once set up, these counters will be incremented by one every time the web page is accessed in a web browser.

A web counter or hit counter is a computer software program that indicates the number of visitors, or hits, a particular webpage has received. Once set up, these counters will be incremented by one every time the web page is accessed in a web browser.

The number is usually displayed as an inline digital image or in plain text or on a physical counter such as a mechanical counter. Images may be presented in a variety of fonts, or styles; the classic example is the wheels of an odometer.

The counter is often accompanied by the date it was set up or last reset, otherwise it becomes impossible to estimate within what time the number of page loads counted occurred.

Some websites have been known to offer prizes to the visitor who makes the web counter roll over to a specific number. Such an event is known as a kiriban.

Source:http://en.wikipedia.org/wiki/Web_counter

109 questions
0
votes
1 answer

PHP match_preg_all error (Found sulution)

I'm currently working on a hit counter that counts whenever a new visitor visits the page, So for each new visitor i create a new .txt file. The file is stored as "hits/".$_SERVER['REMOTE_ADDR'].".txt". Here's my code:
robin00212
  • 91
  • 1
  • 12
0
votes
2 answers

How to record who uses java program

I was wondering if there is a way to record who runs your program. Currently I have been using htmlunit, but that puts an extra 10MB on the program that's only 700KB. The reason I want to know the programs usage Anonymously is because this will be…
Loligans
  • 497
  • 9
  • 24
0
votes
1 answer

Hit counter - do I need a dedicated table?

I have been reading about a variety of ways which I can take to implement a hit counter. The one that I liked the most was having a session/cookie flag for a specific user to indicate if he/she visited a specific page. If the flag is not set, I…
Sayak Banerjee
  • 1,954
  • 3
  • 25
  • 58
0
votes
1 answer

Adding a hit counter to Desktop Intelligence/Xi 3/Business Objects webpage?

for my company I am making a report in Xi3/Desktop Intelligence that pulls data via free hand SQL and makes a html file displaying the data, updating every 20mins. We want to incorporate a hit counter that will show us the number of times this…
Justin
  • 55
  • 1
  • 5
0
votes
1 answer

How do I count how many times a Div is viewed?

I need to count how many times a div is viewed. Most hit counters count how many times a page is loaded but I want to count how many times a div is viewed. There are different pages that this div is located on and I need to know how many times it…
user2152326
  • 279
  • 1
  • 3
  • 7
0
votes
1 answer

Article hit counter and Joomla 2.5.x cache?

There was a comment on Adding in a hit counter to Joomla that the cache impacts the stock hit counter. Do you have any idea how I can fix that bug in Joomla or where I can start to look in the code? I see it's submitted in the bug tracker but nobody…
Paul van Jaarsveld
  • 1,524
  • 1
  • 10
  • 9
0
votes
2 answers

Hidden web hit counter

I would like to know how can I implement a hidden hit counter. I want to do this because I want to have an raspberry pi project were a light goes on every time the website get a hit, but I don't want to show the counter on the website.
amb1s1
  • 1,995
  • 5
  • 22
  • 26
0
votes
2 answers

Session.isnewsession

Am doing an application, where i need to display no of visitors... It should display in home page .. And my home page is default.aspx... If i set a session at default home page as visitor = 1 for session... , it gets incremented for single visitor…
apeksha
0
votes
1 answer

How to Execute Task in BackGround or After Some Condition meets in ASP.NET?

I'm having about 50 Application Variables for Each Search Data Bases. Total 50 Search Db which are querid from Single Search.aspx page depending upon the QueryString passed in URL it connects to Specific DB. Eg: if Search.aspx?li=1 then Connect to…
SHEKHAR SHETE
  • 5,964
  • 15
  • 85
  • 143
0
votes
2 answers

Why Does Hit Counter(Application Variable) from Global.asax set to '0' after some time in ASP.NET?

I have about 50 application variables for each search database. In total 50 searchDB which are queried from single Search.aspx page, depending upon the query string passed in the URL it connects to Specific DB. Eg: if Search.aspx?li=1 then connect…
0
votes
1 answer

How to Set the Total Visitors count in ASP.NET for different Databases that are accessed from same Page?

I am having a Search.aspx page which is going to display the records from user entered search criteria. It get the connects to the Specific Database amongst 50 SQLServer Databases. Depending upon the QueryString passed i.e Search.aspx?ID=1 it will…
SHEKHAR SHETE
  • 5,964
  • 15
  • 85
  • 143
-1
votes
4 answers

web counters in files?

How do I store counters in php script without DB? Always was using DB but now I want simpler configuration... Using files seems to be problematic due to file locks. Let's say that there are many concurrent connections and I want to count number of…
-1
votes
1 answer

PHP - Simple Hit Counter

What is the best way to create a hit counter for multiple pages, and to optimize performance at the same time. For example, I would like a unique hit counter on each different blog post, as well as the main page. To make it unique, I would have to…
Luke
  • 1
  • 1
-1
votes
1 answer

Hit Counter PHP, TXT, Image and Imagick

Some days Ago I started to create a SaaS Hit counter System, I founded some problems but solved, in the last answer about this I just talked about the problem so no codes have been posted with the solution... Well, I have 95% created but I need to…
Sophie
  • 410
  • 3
  • 10
-1
votes
1 answer

How to UPDATE a column only once per ip/session?

I'm trying to make a hit counter, but this hit counter update the column counter every time the page is loaded. $mread = $conn->prepare("UPDATE bn_publicacao SET counter = counter + 1 WHERE id = :id"); $mread->bindParam(':id', $id,…
Natalie
  • 77
  • 10