Mr_J Posted March 14, 2011 Share Posted March 14, 2011 Hi all, I have a small script I found somewhere but after I changed hosting, it just stop to work. I just want to record the user IP and Referrer etc. in a .txt file using fopen. It helps to see what users searched for in search engine etc. The headers are there but no data... Please help?? session_start(); if($session["logged"] != "yes") { $agent = $_SERVER['HTTP_USER_AGENT']; $uri = $_SERVER['REUEST_URI']; $ip = $_SERVER['REMOTE_ADDR']; $ref = $_SERVER['HTTP_REFERER']; $visitTime = date("r"); $logLine = "$visitTime - IP: $ip || User Agent: $agent || Page: $uri || Refererrer: $ref\n\n"; $fp = fopen("indexLog.txt", "a"); fputs($fp, $logLine); fclose($fp); $_SESSION["logged"] = "yes"; } ?> Thanx in advance Jaco Quote Link to comment https://forums.phpfreaks.com/topic/230578-stoped-working-after-new-host/ Share on other sites More sharing options...
RussellReal Posted March 14, 2011 Share Posted March 14, 2011 awstats is pro as far as the problem not sure Quote Link to comment https://forums.phpfreaks.com/topic/230578-stoped-working-after-new-host/#findComment-1187283 Share on other sites More sharing options...
Mr_J Posted March 14, 2011 Author Share Posted March 14, 2011 Thanx RussellReal Quote Link to comment https://forums.phpfreaks.com/topic/230578-stoped-working-after-new-host/#findComment-1187285 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.