Git Product home page Git Product logo

Comments (23)

iyuangang avatar iyuangang commented on May 23, 2024

你好,第一个问题,是因为openwrt 19.07luci v2openwrt snapshotluci v1 有不兼容。需要重新适配。 我的项目拷贝L大代码过来后都要检查一遍做一次适配。具体请比较代码
第二个问题,我的界面如下。请对比下。
图片

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

我下载了您的release中的vmdk,同样无法导入,问题2是正常的。
代码我还不是很熟悉,等下慢慢研究

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

release 中的可以正常导入。我自己用过好几周。有没有可能是你的网络配置问题?

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

我反复测试了几次,也换了浏览器,确实无法导入。网络是正常的,再说导入节点跟网络是否连通不相关吧。

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

看了下代码,好像只有两处差异
require 'uci' 删除
local ucic = luci._增加model.uci._cursor()

代码不太懂,纯外行

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

/usr/lib/lua/luci/controller/shadowsocksr.lua
这个文件似乎也有许多修改,其中的get_first函数应该是更新失败的原因,这个lean大之前提到过。
不过我还不懂怎么改,哈哈

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

比较奇怪,要不我弄个临时机器给你测试一下?

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

可以用虚拟机测试呀。不过总体上感觉意义不大,L大说了是get_first的问题,那可能所有用到这个函数的地方都需要修改,我目前没有能力解决这个···

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

可以用虚拟机测试呀。不过总体上感觉意义不大,L大说了是get_first的问题,那可能所有用到这个函数的地方都需要修改,我目前没有能力解决这个···

http://www.timyuan.net:32237 密码是你的github用户名 更新需要点 Update All Subscribe Severs

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

这个是有点误会的,我说的无法导入节点信息是指这里:
微信截图_20200327163348

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

哦,我都是用的订阅,没用过ssr 所以这方面不清楚。

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

不光是ssr,v2什么的都能导入的
我都是自己搭的,没有弄订阅链接

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

图片

哦,使用场景不一样。我看看日志。

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

导入确实不能用,我有空了看看能不能修复。

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

测试机器我销毁了哈

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

好的,谢谢了。话说你这个黑背景不错,自己做的吗

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

黑背景用的浏览器插件 Dark Reader
FireFox 和 chrome 都有用。

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

问题已修复,测试可以成功导入。
图片

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

问题已修复,测试可以成功导入。
图片

能请教下怎么做的吗

from openwrt.

iyuangang avatar iyuangang commented on May 23, 2024

getElementById 修改为 getElementByName 具体请看这个commit
已编译可用的版本为最新 Release

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

再请教下这种情况怎么处理
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
WARNING: Makefile 'package/lean/luci-app-dockerman/Makefile' has a dependency on 'docker-ce', which does not exist

我是用19.07.02的官方包加目前lean最新的pack,搜了半天也没弄明白怎么自己添加依赖。feeds update和install也都解决不了

ub@ub-vm:~/openwrt-19.07.2$ ./scripts/feeds install kmod-crypto-arc4
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
WARNING: No feed for package 'kmod-crypto-arc4' found

ub@ub-vm:~/openwrt-19.07.2$ make defconfig
Collecting package info: done
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
tmp/.config-package.in:150904:error: recursive dependency detected!
For a resolution refer to Documentation/kbuild/kconfig-language.txt
subsection "Kconfig recursive dependency limitations"
tmp/.config-package.in:150904: symbol PACKAGE_netopeer2-keystored is selected by PACKAGE_netopeer2-keystored
configuration written to .config

又发现/feeds/packages/kernel/ksmbd/makefile 与package/lean/ksmbd/Makefile不同,就是差了那一行 'kmod-crypto-arc4', 于是添加进去,这样/feeds/package.index中也出现了kmod-crypto-arc4,可是无论怎样update && install,也无法安装这个依赖

from openwrt.

tuTuStream avatar tuTuStream commented on May 23, 2024

再请教下这种情况怎么处理
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
WARNING: Makefile 'package/lean/luci-app-dockerman/Makefile' has a dependency on 'docker-ce', which does not exist

我是用19.07.02的官方包加目前lean最新的pack,搜了半天也没弄明白怎么自己添加依赖。feeds update和install也都解决不了

ub@ub-vm:~/openwrt-19.07.2$ ./scripts/feeds install kmod-crypto-arc4
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
WARNING: No feed for package 'kmod-crypto-arc4' found

ub@ub-vm:~/openwrt-19.07.2$ make defconfig
Collecting package info: done
WARNING: Makefile 'package/lean/ksmbd/Makefile' has a dependency on 'kmod-crypto-arc4', which does not exist
tmp/.config-package.in:150904:error: recursive dependency detected!
For a resolution refer to Documentation/kbuild/kconfig-language.txt
subsection "Kconfig recursive dependency limitations"
tmp/.config-package.in:150904: symbol PACKAGE_netopeer2-keystored is selected by PACKAGE_netopeer2-keystored
configuration written to .config

又发现/feeds/packages/kernel/ksmbd/makefile 与package/lean/ksmbd/Makefile不同,就是差了那一行 'kmod-crypto-arc4', 于是添加进去,这样/feeds/package.index中也出现了kmod-crypto-arc4,可是无论怎样update && install,也无法安装这个依赖

虽然有报 WARNING 但是没有任何我需要的软件依赖这个,所以忽略就好了。

from openwrt.

hmilye avatar hmilye commented on May 23, 2024

那个cifs的sever需要这个,我本来想试试的,没办法也只能放弃了

from openwrt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.