
05-10-2006, 01:11 PM
|
|
|
Join Date: Feb 2006
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
You have to increase the refresh time.
Quote:
Originally Posted by tqvn2004
It is server intensive because it is refreshing too often (in every 10 second!). This rate can be changed to a lower value, let's say in every 2 or 5 minutes.
To change the rate, find in forumhome_vbshout template:
Code:
setTimeout('requestShouts()', 10000)
and replace with
Code:
setTimeout('requestShouts()', 120000)
Note:
1/ 120000 milisecond = 2 minutes
2/ For those who put the shout box in front page with Advanced CMS hack, find and replace the adv_portal_vbshout template (or whichever the name you use).
|
|