magento - SSL 错误!,您的连接已使用现代密码学加密

标签 magento ssl encryption

您好,当您输入 https://www.limitx.com.mx 时,我的域和 SSL 有问题你可以看到 ssl 加密错误,你的连接是用现代密码学加密的,我该如何解决这个问题?我不知道如何解决这个问题,我希望能帮助我。问候大家!

最佳答案

您的主页上有两个资源是通过 HTTP(混合内容)提供的。

Mixed Content: The page at 'https://limitx.com.mx/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Roboto:400,900,300,700'. This request has been blocked; the content must be served over HTTPS.

这来自生成 HTML 的主文件:

<link href='fonts.googleapis.com/css?family=Roboto:500,300'; rel='stylesheet' type='text/css'>

你需要把它改成

<link href='https://fonts.googleapis.com/css?family=Roboto:500,300'; rel='stylesheet' type='text/css'>

Mixed Content: The page at 'https://limitx.com.mx/' was loaded over HTTPS, but requested an insecure image 'http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png'. This content should also be served over HTTPS.

这来自https://limitx.com.mx/skin/frontend/ultimo/default/css/styles.css

.form-search .button {
...
background-image: url(http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png);
...
}

您不能使用此 URL 的 HTTPS 版本作为 http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png 的证书与主机不匹配。

您可以在本地复制此文件 (buscar.png),也许在 skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/下并将 CSS 更改为

.form-search .button {
...
background-image: url(../images/infortis/_shared/generic-nav/buscar.png);
...
}

关于magento - SSL 错误!,您的连接已使用现代密码学加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30353056/

相关文章:

php - 区分具有相同 url 的页面

url - magento 显示请求地址

magento - 更改管理网格中的自定义产品选项卡位置 Magento

encryption - 从 MagTek iDynamo 加密读卡器解密数据

c - 使用给定算法解密消息

magento - magento中的重定向

node.js - 安装错误 - libcurl 不支持或禁用协议(protocol) "https"

http - 由于标准 Google Chrome 脚本导致的 SSL 错误

ssl - 如何验证证书确实是 DER 格式?

php - 在PHP中解密由openssl_encrypt加密的AES-256-CBC密文时出现坏 block 大小错误