I have a unique situation when I have a website with several thousand users who all fight with a client that does not support JavaScript or cookies.
It also cannot load normal image files, but instead loads only a special type of image, NTFT
<img src="http://example.com/image.ntft" height="1" width="1" />
The client is not a web browser as such, but renders a custom HTML form.
I want to use Google Analytics to get visitor information for my site and to get unique visitor information. I get several hundred thousand hits and about ~ 40 GB of traffic per day, so I'm very interested in information for unique visitors. I watched https://github.com/thomasbachem/php-ga but don't want anything like this: How can I get PHP-GA to stop the increase in visitors in real time in Google Analytics? to happen, since I will get "Unique Visitors", which are actually only one visit to the page.
I am using PHP. Can you offer a decent solution for measuring traffic from unique visitors (for example, unique IP addresses)?
source
share