The trophy points are updated by a cron:
Admin CP -> Tools -> Cron Entries -> Update User Trophies
But it only processes users who have been active recently which can be a problem after an import. I posted a suggestion about this:
http://xenforo.com/community/threads/trophy-cron-active-users.6976/
It is affecting users who are recently active. :/
If they are recently active then it should update their trophy points if you run that cron:
Admin CP -> Tools -> Cron Entries -> Update User Trophies
$users = $userModel->getUsers(array(
'user_state' => 'valid',
'is_banned' => 0,
'last_activity' => array('>', XenForo_Application::$time - 86400)
The cron also excludes users who are banned or awaiting moderation or email confirmation:
library/XenForo/CronEntry/Trophy.php
Code:$users = $userModel->getUsers(array( 'user_state' => 'valid', 'is_banned' => 0, 'last_activity' => array('>', XenForo_Application::$time - 86400)
If that doesn't explain your problem then I can take a look if you want to give me access to your forum and database.
Sure. Send me a personal conversation with your info. I will take a look.
We use essential cookies to make this site work, and optional cookies to enhance your experience.