View file myshare/readme.txt

File size: 1.21Kb
thank you for trying out my update ill
be writing some more new updates as i go along i find wapmotor a nice script better then lavalair.
So far ive translated 70% of wapmotor into proper english.
the logs will appear as 

IP: 
Broswer:
Referer:
Session Id 
Session Id:
Time: 

------------------------------------------------
to change the log time that is recorded simply edit it in the logs.php page

in your index.php page add the following

require_once ("logs.php"); 


copy the iplog.dat into your local folder.

in mpanel/index.php page add the followling link

 echo '<div class="link"><div class="link-space" style="padding-left:10px;text-align:left;"><img src="../images/img/act.gif" alt="image" /> <a href="visitlogs.php?'.SID.'">Visitor Logs</a> ['.stats_visitorlogs().']</div></div>';


now to get the stats counter to show the ammount of logs recorded open up your includes/functions.php page
and add the following

function stats_visitorlogs() {
$file = file(DATADIR."iplogs.dat");
$file = array_reverse($file);
$total = count($file);
return $total;
}

//////////////////////////////////////////

and in includes/start.php we need to add

$config['postvisitlogs'] = $con_data[17];