-
Notifications
You must be signed in to change notification settings - Fork 649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MacOS遇到的问题总结+解决方法 #169
Comments
tindy2013
added a commit
that referenced
this issue
Aug 5, 2022
Fix cannot upload text files in webgui mode. (#169) Update build scripts.
thanks |
➜ stairspeedtest cd /Users/57block/Downloads/stairspeedtest |
macos使用webserver.sh域名被劫持,后使用webgui.sh 报错,
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1.版本选择
我的配置是M1` mac,版本 macOS Monterey 12.5
Arm64版本不可用,使用Darwin64。
所以只要MacOS 就选Darwin64。
2.stairspeedtest不可用
不清楚
3..webserver.sh 打开127.0.0.1:10870会跳转。
使用webgui.sh
怀疑被劫持,建议使用webgui.sh。
4. 自带的
websocketd
在Mac 12 monterey上已经不能使用未实验,建议替换。
5. gui显示后端无法连接
直接把gui.html 中this.connect("ws://" + window.location.href)改成this.connect("ws://127.0.0.1:65430") 貌似不需要改端口,默认都是65430。
6.gui.html 无法上传文件
问题在于html,作者写了一个函数判断文件类型和大小的代码。
所以只能上传json和二进制文件。
代码修改为
beforeUpload(file) { // const isType = file.type === 'text/plain' || file.type === 'text/yaml' const fsize = file.size / 1024 / 1024 <= 2; /*if (!isType) { this.$message.error('选择的文件格式有误!'); } */ if (!fsize) { this.$message.error('上传的文件不能超过2MB!'); } //return isType && fsize; return fsize; },
即可上传所有类型文件,实测txt和yaml都可以识别。
The text was updated successfully, but these errors were encountered: