Oct 20, 2018 No Comments 小米路由增强插件 Misstar Tools 进入管理后台,点开 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. 查了一下R2D 路由系统版本 “当前版本2.25.202,你的版本是最新的,无需升级。” Google了一下,发现有很多网友碰到有同样的问题。原因极有可能是升级后造成的。 临时解决办法: 在 /usr/lib/lua/luci/controller/web 目录下新建一个文件 index2.lua 内容如下: ``` 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 ``` 编辑起来挺麻烦的,直接放在服务器上,可以直接下载修复 ``` wget http://118.126.98.108/xiaomi/index2.lua -O /usr/lib/lua/luci/controller/web/index2.lua rm -rf /tmp/luci-indexcache ``` 最后更新于 2018-10-20 13:17:55 并被添加「」标签,已有 5397 位童鞋阅读过。 本站使用「署名 4.0 国际」创作共享协议,可自由转载、引用,但需署名作者且注明文章出处