Cloud - According to your post above, you set it to update the wrong post. The number should be the postid, not the threadid. Be sure you were using the postid in that query and if it still doesn't work let me know.
arracing - I can't guarantee how 'random' the polls will be since I've never had much luck with this function, but other people say it works fine so hopefully it will do the trick... Just open your myvbindex.php file and look for:
ORDER BY thread.pollid DESC LIMIT 1
Change that to:
ORDER BY RAND()
Sulaiti - Open your online.php file and look for:
case 'index.php':
Right Above that Add:
$userinfo[activity] = 'home';
break;
Then look for:
case 'index':
Right Above that Add:
case 'home':
$userinfo[where] = "Your Site Name Here <a href='/index.php?s=$session[sessionhash]'>Main Index</a>";
break;
Be sure to replace "Your Site Name Here" with the name of your site.
|