Hi Community,
I have a question regarding referer. I use XAMPP to test my file BEFORE uploading to the server ("Never change a running system"...) and now I want to implement a self-written referer statistic.
To test if I can get the refering information I use following two files (1.php & 2.php)
1.php:
2.php:
On my local computer (XAMPP) this is working fine.
On my webhost (united-domains [I know they are bad, but never mind...]) it is working with IE but not with FF.
So it is clearly a "problem" with Firefox. I know I can turn on referer in about:config, but I never turned it off...
So the visitors with a normal FF installation are not all trackable...
I also now that some firewalls block the referer.
I also know, that its not the best way of getting referer information by using the HTTP request...
But, people, tell me how the "big" tracking scripts retrieve the information of the referer (for e.g. traffic trading script or similar).
there must be a easy way, or? Please help me!
Have a nice day!
I have a question regarding referer. I use XAMPP to test my file BEFORE uploading to the server ("Never change a running system"...) and now I want to implement a self-written referer statistic.
To test if I can get the refering information I use following two files (1.php & 2.php)
1.php:
Code:
<html> <head> </head> <body> <a href="2.php">Hier gehts weiter</a> </body> </html>
Code:
<?php echo(getenv('HTTP_REFERER')); ?> <br /> <script>document.write(document.referrer)</script>
On my webhost (united-domains [I know they are bad, but never mind...]) it is working with IE but not with FF.
So it is clearly a "problem" with Firefox. I know I can turn on referer in about:config, but I never turned it off...
So the visitors with a normal FF installation are not all trackable...
I also now that some firewalls block the referer.
I also know, that its not the best way of getting referer information by using the HTTP request...
But, people, tell me how the "big" tracking scripts retrieve the information of the referer (for e.g. traffic trading script or similar).
there must be a easy way, or? Please help me!

Have a nice day!
Comment