I've installed this for someone but there are small bugs in timeslips.php file
You need to rename tables name in your query coz if there is a prefix, the table's name will not be correct
Replace
PHP Code:
// Get total number of users
$userscount=$DB_site->query_first("SELECT COUNT(*) AS users
FROM " . TABLE_PREFIX . "user, " . TABLE_PREFIX . "userfield
$cond
AND user.userid = userfield.userid");
with
PHP Code:
// Get total number of users
$userscount=$DB_site->query_first("SELECT COUNT(*) AS users
FROM " . TABLE_PREFIX . "user AS user, " . TABLE_PREFIX . "userfield AS userfield
$cond
AND user.userid = userfield.userid");
And
PHP Code:
// Get users
$users=$DB_site->query("SELECT *
FROM " . TABLE_PREFIX . "user, " . TABLE_PREFIX . "userfield
WHERE user.userid = userfield.userid
$condition
ORDER BY $orderby $direction
LIMIT $pos,$perpage");
with :
PHP Code:
// Get users
$users=$DB_site->query("SELECT *
FROM " . TABLE_PREFIX . "user AS user, " . TABLE_PREFIX . "userfield AS userfield
WHERE user.userid = userfield.userid
$condition
ORDER BY $orderby $direction
LIMIT $pos,$perpage");
Now corrected and it works fine