我用的是R1D.2018年8月8日。小米路由器自己升级了固件。升级成了开发版2.25.202。网页后台点击 MT工具箱 居然报错。

提示:No page is registered at ‘/web/misstar/index’ .

If this url belongs to an extension, make sure it is properly installed.

If the extension was recently installed, try removing the /tmp/luci-indexcache file.

下面是解决办法。

1、ssh方root用户登录路由器后台;

2、执行命令: vi /usr/lib/lua/luci/controller/web/index2.lua

3、加入如下内容:

module(“luci.controller.web.index2”, package.seeall)

function index()

local page   = node(“web”,”misstar”)

page.target  = firstchild()

page.title   = (“”)

page.order   = 100

page.sysauth = “admin”

page.sysauth_authenticator = “jsonauth”

page.index = true

entry({“web”, “misstar”, “index”}, template(“web/setting/misstar/index”), _(“Tools”), 81)

entry({“web”, “misstar”, “add”}, template(“web/setting/misstar/add”), _(“Tools”), 82)

entry({“web”, “misstar”}, alias(“web”,”misstar”,”index”), _(“Tools”), 80)

entry({“web”, “misstar”, “ss”}, template(“web/setting/applications/ss/html/ss”), _(“Tools”), 85)

entry({“web”, “misstar”,”frp”}, template(“web/setting/applications/frp/html/frp”), _(“Tools”), 85)

entry({“web”, “misstar”,”aliddns”}, template(“web/setting/applications/aliddns/html/aliddns”), _(“Tools”), 85)

entry({“web”, “misstar”,”adm”}, template(“web/setting/applications/adm/html/adm”), _(“Tools”), 85)

entry({“web”, “misstar”,”koolproxy”}, template(“web/setting/applications/koolproxy/html/koolproxy”), _(“Tools”), 85)

entry({“web”, “misstar”,”rm”}, template(“web/setting/applications/rm/html/rm”), _(“Tools”), 85)

entry({“web”, “misstar”,”aria2″}, template(“web/setting/applications/aria2/html/aria2”), _(“Tools”), 85)

entry({“web”, “misstar”,”webshell”}, template(“web/setting/applications/webshell/html/webshell”), _(“Tools”), 85)

entry({“web”, “misstar”,”pptpd”}, template(“web/setting/applications/pptpd/html/pptpd”), _(“Tools”), 85)

entry({“web”, “misstar”,”ftp”}, template(“web/setting/applications/ftp/html/ftp”), _(“Tools”), 85)

entry({“web”, “misstar”,”kms”}, template(“web/setting/applications/kms/html/kms”), _(“Tools”), 85)

end

4、执行清理缓存命令: rm -rf /tmp/luci-indexcache

5、刷新前台页面即可

我的R1D 。不知道别的固件是不是可以使用。请自行尝试。为了方便  最好使用winscp  新建index2.lua,粘贴上面的这端代码。上传到/usr/lib/lua/luci/controller/web/   后   继续第4步。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。