View Single Post
  #1  
Old 12th December 2011, 09:39
SpEnSeR SpEnSeR is offline
Senior Member
 
Join Date: Nov 2011
P2P
Posts: 48
Default Most Visited Users
hi mates,

How can I increase the number of Most visited users in the list.. coz only Top 5 Most visited users will be posted.. I tried to change the code. i set the LIMIT to 10.. but error.. any help?

Heres the code of the mostvisitedusers.php

Code:
if (!defined('TS_P_VERSION'))

{

    define('TS_P_VERSION', '1.1 by xam');

}

// Security Check.

if (!defined('IN_PLUGIN_SYSTEM'))

{

    die("<font face='verdana' size='2' color='darkred'><b>Error!</b> Direct initialization of this file is not allowed.</font>");

}



// BEGIN Plugin: mostvisitedusers

if (!defined('SKIP_CACHE_MESSAGE'))

{

    define('SKIP_CACHE_MESSAGE', true);

}

require_once(INC_PATH.'/functions_cache2.php');

if (!($mostvisitedusers=cache_check2('mostvisitedusers')))

{

    $mostvisitedusers = '<!-- begin mostvisitedusers -->';

    $query = sql_query("SELECT u.id, u.username, u.visitorcount, g.namestyle FROM users u LEFT JOIN usergroups g ON (u.usergroup=g.gid) WHERE u.visitorcount > 0 ORDER BY u.visitorcount DESC LIMIT 5") or sqlerr(__FILE__,__LINE__);

    while($mv=mysql_fetch_assoc($query))

    {

        $mostvisitedusers .= '<a href="'.ts_seo($mv['id'], $mv['username']).'">'.get_user_color($mv['username'], $mv['namestyle']).'</a> ('.ts_nf($mv['visitorcount']).')<br />';

    }

    $mostvisitedusers .= '<!-- end mostvisitedusers -->';

    cache_save2('mostvisitedusers', $mostvisitedusers);

}

// END Plugin: mostvisitedusers

?>
I highlighted the code that i edited.. but its not working.. pls help.. TIA
Attached Files
File Type: php mostvisitedusers.php (1.9 KB, 7 views)
Reply With Quote
The Following User Says Thank You to SpEnSeR For This Useful Post:
eckeO5 (8th January 2012)