| Home > Computer & I'net > Logging with PHP... |
Logging with PHP | ||||||||||||||||||||||
Figuring out where your hits are coming from and which pages are being viewed is not too difficult if you use a good log analyzer like Analog or something similar, but if you want to pull up reports on the fly at any time, you need to take a different route. For about six months, I was importing my Apache logs into an SQL database and then running ad-hoc queries against that. Unfortunately, that requires me to go out and manually grab those log files, tweak the format a bit, then import. I wanted something better - something that was continually updated, flexible enough to simultaneously support multiple sites, and multiple actions (page view, ad click, click-in, click-out, plus more if needed). I sat down and came up with the following table: create table tbl_activity_log ( Someone who really knows what they're doing would have used a timestamp field rather than int fld_date, but this works for me. You could also add another column to hold the $PATH_INFO, but I decided the Special column gives me what I want. INDEXES The next step was getting the info into the tables. It would be a perfect world if all pages were served through PHP and all of your various web sites existed on one box. Unfortunately, I have an array of servers scattered all over the country, and I want to collect this info from every server for every page view 24 hours a day. So that required me to use the 1x1 pixel GIF trick. I have a GIF on every page that looks like this: <IMG SRC="http://www.yourserver.com/util/gif11.php?c=4&s=phpbuildercom&b=77" height=1 width=1> gif11.php is a simple script that resides on my central server. I have included the source on the next page. Since the gif is on each page, and is forced to load due to the random number at the end (the b=xxxx), a request is sent back to the central server for each and every page view. If all of your pages and the database reside on one server, you don't need to use the GIF trick - you can insert the logging code into the header of your page. <A HREF="http://www.yourserver.com/util/adclick.php?c=4&goto= * > Just replace * with the URL you want to redirect to. Again here, the $c variable should be changed for each web site. ReportingReporting all this information is easy with PHP - just write up some SQL, execute it and use the ShowResults class to display it. So now the system is in place and I can run a report at any time and get statistics up to the minute for any given site. Here's a sample report from Friday on PHPBuilder.com:
Overall, I'm pretty impressed with this system. There's really no limit to its flexibility - in fact, I am expanding it to keep track of ad banners, and I may write up an article on that later. Please use the sample code on the next page and tell me how you used it, or if you added anything interesting to it. <!-- //gif11.php accepts these parameters: <?php //gif11.php Header( "Content-type: image/gif"); $logger_action=5; //impression include('connect.inc'); //connect to the DB SERVER ?> PHP Code to generate the GIF URL: <?php srand((double)microtime()*1000000); connect.inc: <?php //
//I use a persistent connection instead of opening if (!$conn) { ?> logger.inc: <?php // if (!$logger_action) {echo "error in logger"; exit;} // $logger_sql="insert into tbl_activity_log values (".date("Ymd", mktime()).", ". //PHP method to build date $res_logger = pg_Exec ($conn, $logger_sql); if (!$res_logger) { ?> adclick.php: <?php $goto_location="Location: ".$goto."&b=".$b; Header($goto_location); $logger_action=2; //adclick include('connect.inc'); ?> reporter.php: <?php // Function ShowResults($result) { //I apologize to the author of this code - if ($result) { echo( "<table border=1>\n"); // $report_sql="SELECT fld_date, fld_special, count(*) AS IMPRESSIONS ". $res_click_report = pg_Exec ($conn, $report_sql); if ((!$res_click_report) || (pg_NumRows($res_click_report) < 1)) { ShowResults($res_click_report); } ?> Please feel free to play around with this code, add your own features, change it how you like, but please come back and tell us what you did with it. ----------------- Tim is available for consulting and programming on database architecture, java, web applications, and Open Source Software. | ||||||||||||||||||||||
| Articles |
•Auto & Trucks•Business•Computer & I'net·General·Apache·CSS·Database·Hardware·HTML·Javascript&DHTML·Linux·MySQL·Operating System·Perl / CGIPHP·Programming·Publishing·Search Engines·Software Problems·SSI·Tips & Tricks·Utilities·Web Design•Family•Food & Drink•Gardening•Health•Other•Pets•Psychology•Spiritual•Travel•Women |
| Calculators |
|