Got my gwowroster installed and working finally. Here were my steps.
- properly installed and configured gwowroster through product/plugin manager & vbulletin options
- made the utf encoding changes in 'cron.gwowroster.charinfo.php' as stated in Souli's post above
- went to admincp -> Scheduled Task Manager
- manually ran 'gWoWRoster Guild Info Update' first (grabs data about your guild like whos in it)
- then manually ran 'gWoWRoster Guild Info Update'
Some of you may notice that through the 'gWoWRoster Guild Info Update', it is only updating maybe 1 or 2 characters per run. This is because the query limit is too sensitive. (Reason probably due to prevent bogging down systems). To fix this, locate the following line in 'cron.gwowroster.charinfo.php':
PHP Code:
$limit = ceil($count['count'] / 70);
and change the '70' to something like:
PHP Code:
$limit = ceil($count['count'] / 10);
I had 100 people in my guild that needed talent updating, so I just ran that cron job manually about 10 times to update everything after initial install.