phpbb 有在 search.php 設計一個 '限制器' (limiter)
發表於 : 2006-06-15 , 1:43
phpbb 有在 search.php 設計一個 '限制器' (limiter) 預設最多 5000 筆結果
http://phpbb-tw.net/phpbb/viewtopic.php?t=44751
為了避免系統負擔太大, 只有建議減少 (decrease) 該值, 不會建議增加.
http://phpbb-tw.net/phpbb/viewtopic.php?t=44751
代碼: 選擇全部
//
// Search ID Limiter, decrease this value if you experience further timeout problems with searching forums
$limiter = 5000;
$current_time = time();
為了避免系統負擔太大, 只有建議減少 (decrease) 該值, 不會建議增加.