Replies: 35 comments
-
可能是因为不能访问 环回地址的原因吧 |
Beta Was this translation helpful? Give feedback.
-
你可以禁用代理看是否正常。 |
Beta Was this translation helpful? Give feedback.
-
@jzp820927 |
Beta Was this translation helpful? Give feedback.
-
@SeaHOH 禁用代理正常,使用MEOW正常,原来的XXNET正常。就是确认了这点才来报bug的,困惑了好几天了。 |
Beta Was this translation helpful? Give feedback.
-
你用的是 Firefox,这个肯定是导入了 CA 证书的,但是证书安装到系统了吗? 如果还是不对,你的设置能否贴一份? |
Beta Was this translation helpful? Give feedback.
-
又搜索了一下,商店要不破解,要不就不要设置环回地址的代理。 或者监听地址改为 |
Beta Was this translation helpful? Give feedback.
-
@SeaHOH 按他说的 XXNET 正常,可能就不是环回地址的原因了,XXNET 也是用的 环回地址。 |
Beta Was this translation helpful? Give feedback.
-
估计他用的不是全局,而是 pac,这就绕过代理了。 |
Beta Was this translation helpful? Give feedback.
-
我觉得应用商店没必要走代理,所以没必要走全局。 |
Beta Was this translation helpful? Give feedback.
-
@jzp820927 |
Beta Was this translation helpful? Give feedback.
-
更新到了f9d9d4d,这个方法没用。 我有时候还是要用Edge和Chrome的,所以肯定是成功导入证书了。 禁用系统代理就能正常访问,不然我也无法确定是GotoX的问题。 |
Beta Was this translation helpful? Give feedback.
-
应该就只有 win10 有这个问题吧 |
Beta Was this translation helpful? Give feedback.
-
应用商店还有win8有,就没法测试了 |
Beta Was this translation helpful? Give feedback.
-
win8 没听谁说过有不能访问环回地址的问题,win10 到时有过案例。 |
Beta Was this translation helpful? Give feedback.
-
@ivysrono var Direct = 'DIRECT';
var GotoX = 'PROXY 127.0.0.1:8087';
function FindProxyForURL(url, host) {
//1、本机地址
if (
host == '127.0.0.1' || // 本机
isPlainHostName(host) // 不包含点
)
return Direct;
//2、文件协议及本地地址
var Protocol = url.split(':', 1)[0];
var hostsp = host.split('.'); // 前面已经检测过点了,所以长度肯定大于 1
if (
Protocol == 'ftp' || // ftp
Protocol == 'file' || // file
Protocol == 'gopher' || // gopher
hostsp[0] == '192' && // 局域网地址自行修改
hostsp[1] == '168' &&
hostsp[2] == '1'
)
return Direct;
if (host.indexOf('microsoft') == 0)
return GotoX;
else:
return Direct; |
Beta Was this translation helpful? Give feedback.
-
难道是 Windows 的 bug?你看到那几个返回 Direct 的判断没?尝试自己修改一下。 |
Beta Was this translation helpful? Give feedback.
-
我就是来报个bug,系统重装百废待兴ε=ε=ε=┏(゜ロ゜;)┛ |
Beta Was this translation helpful? Give feedback.
-
pac 失效的锅不背,我给你的那个 pac 应该是没啥问题的,除非微软改接口了。 |
Beta Was this translation helpful? Give feedback.
-
没听其他人反应过 win10 不能用 pac,XX 那边用 PAC 的,系统是 win10 的还是蛮多的。 |
Beta Was this translation helpful? Give feedback.
-
又看了下,上面那段 pac 结尾的确少了个大括号,至于能不能用,我没有 Win10。 |
Beta Was this translation helpful? Give feedback.
-
@ivysrono |
Beta Was this translation helpful? Give feedback.
-
太牛了,这个都能找到。 |
Beta Was this translation helpful? Give feedback.
-
机缘巧合,都是猿汾。 |
Beta Was this translation helpful? Give feedback.
-
我想要一份 onedrive 同步用到的域名,还有 win10子系统 ubuntu 下载时候用的域名。不知道你有没有 |
Beta Was this translation helpful? Give feedback.
-
@jzp820927 |
Beta Was this translation helpful? Give feedback.
-
加上大括号还是全部直连。 |
Beta Was this translation helpful? Give feedback.
-
我还没用过抓包软件,都是通过 chrome F12 分析。 |
Beta Was this translation helpful? Give feedback.
-
@ivysrono 还有,你是保存的 |
Beta Was this translation helpful? Give feedback.
-
我是用的 GotoX.pac 改成 txt 是因为 gayhub 对附件后缀名有限制。 |
Beta Was this translation helpful? Give feedback.
-
哦,没必要上传文件。直接描述修改就行了,或者直接贴出来。 |
Beta Was this translation helpful? Give feedback.
-
尚不清楚系统更新无法进行是否也是这个原因。
Win10 x64
Beta Was this translation helpful? Give feedback.
All reactions