I have this installed but some sql querys are simply too much.
One example:
Code:
SELECT userid, usergroupid, displaygroupid, username, joindate, posts
FROM " . TABLE_PREFIX . "user AS user
WHERE userid > '0' $vsaexclgroups $vsatopstats_timecut_newmem
ORDER BY joindate DESC
LIMIT 0, $vsacb_resnr
Should be:
Code:
SELECT userid, usergroupid, displaygroupid, username, joindate, posts
FROM " . TABLE_PREFIX . "user AS user
WHERE userid > '0' $vsaexclgroups $vsatopstats_timecut_newmem
ORDER BY userid DESC
LIMIT 0, $vsacb_resnr
Can you rewrite the querys ?
best regards