找到/include/arc.archives.class.php文件夹然后找到
$preR = $this->dsql->GetOne("Select id From `#@__arctiny` where id<$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id desc");
$nextR = $this->dsql->GetOne("Select id From `#@__arctiny` where id>$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id asc");
改成
$preR = $this->dsql->GetOne("Select id From `#@__archives` where click<'{$this->Fields['click']}' And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by click desc");
$nextR = $this->dsql->GetOne("Select id From `#@__archives` where click>'{$this->Fields['click']}' And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by click asc");
即可