This depend of users viewing the activity stream isn't it ? I have something like 400-600 users on my board at the same time, but nomore than 10/20 users watching the activity stream, so the the server load should be negligible ? (Dedicated server)
--------------- Added [DATE]1338391354[/DATE] at [TIME]1338391354[/TIME] ---------------
Quote:
Originally Posted by Badshah93
you will need to edit these line in activitystream.js file
Change this line
Code:
if(this.options.refresh*60000>300000){this.idlerefresh=this.options.refresh*60000}else{this.idlerefresh=300000}
To
Code:
if(this.options.refresh*1000>60000){this.idlerefresh=this.options.refresh*1000}else{this.idlerefresh=60000}
now if you enter 5 in vB default setting, it will be treated as 5 seconds.
|
Thank you for your help, but that's not enough and this doesn't work.