DJFireCFH Posted January 13, 2015 Share Posted January 13, 2015 On the admin homepage, theres a box "Recent Client Activity". How can you make so that either 1. It shows more than just 5 there or 2. view a full page of the client activity I did find this post: http://forum.whmcs.com/showthread.php?34761-Recent-Client-Activity-Logs&highlight=Recent+Client+Activity+Logs from 2011... But that info isnt correct anymore. Where or how can set it up to do one of 2 items above? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 13, 2015 Share Posted January 13, 2015 to do 1) you will need to edit modules/widgets/client_activity.php and modify the line below... $result = select_query("tblclients","id,firstname,lastname,ip,lastlogin","","lastlogin","DESC","0,5"); change the 5 at the end of the line to however many entries you want to show in the widget. to do 2) you could probably just take the SQL query, create a new report (or adapt from an existing one) and replace the existing query with the above and then modify the output to display it - if you want to try it, the widget should give you a lot of clues with regards to output. 0 Quote Link to comment Share on other sites More sharing options...
DJFireCFH Posted January 14, 2015 Author Share Posted January 14, 2015 Great, thank you for the info. 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.