Jpoke5 Posted January 3, 2011 Share Posted January 3, 2011 Is there any way to up the Recent Client Activity setting from 5 to 10 or more. I would like the log to post more client logins. it only shows the last 5 and I want more. also... anyone know what data base table has the login ip logs. One of my clients accounts was hacked and trying to get the second to last log in ip for that account to get the hackers ip to ban. 0 Quote Link to comment Share on other sites More sharing options...
GGWH-James Posted January 3, 2011 Share Posted January 3, 2011 You could edit the "admin/templates/{your_theme_here}/homepage.tpl" file to use your own query to the database, pulling however many records you would like. The lines below are the ones pertaining to the Recent Client Activity output. {foreach from=$recentclients item=activity} <tr bgcolor="#ffffff" style="text-align:center;"><td><a href="clientssummary.php?userid={$activity.id}">{$activity.firstname} {$activity.lastname}</a></td><td><a href="http://www.geoiptool.com/en/?IP={$activity.ip}" target="_blank">{$activity.ip}</a></td><td>{$activity.lastlogin}</td></tr> {foreachelse} <tr bgcolor="#ffffff"><td align="center" colspan="3">{$_ADMINLANG.global.norecordsfound}</td></tr> {/foreach} If you need some help with it, let me know, and I will help you out. The other option would be for WHMCS to make the number of results configurable. 0 Quote Link to comment 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.