__('about') ?> 唯一的问题是它的输出如下: about 据我了解,如果同时-6ren">
gpt4 book ai didi

magento - 使用 http ://references 在 Magento 的浏览器中验证 SSL 密封

转载 作者:太空宇宙 更新时间:2023-11-03 13:18:54 27 4
gpt4 key购买 nike

因此,我的一位开发人员使用这样的函数为 Magento 电子商务网站制作自定义导航:

<li><a class="about" href="<?php echo $this->getUrl() ?>"><?php echo $this->__('about') ?></a></li>

唯一的问题是它的输出如下:

<li><a href="http://www.domain.com/about/" rel="nofollow">about</a></li>

据我了解,如果同时存在 http://和 https://引用,SSL 密封会在浏览器中失效。

我正在尝试寻找一种快速修复方法来解决这个问题,如果有人有比现有方法更好的方法来做到这一点,我会很高兴。

干杯!


修订:

谢谢大家,

我想我已经将范围缩小到一个名为 Jirafe 的已安装扩展。

输出代码为:

<noscript><p><img src="http://data.jirafe.com//piwik.php?idsite=#####" style="border:0" alt="" /></p></noscript>

我认为生成脚本的 php 文件是:

class Fooman_Jirafe_Model_JirafeTracker extends Piwik_PiwikTracker
{
protected function sendRequest($url)
{
$client = new Zend_Http_Client($url);
$response = $client->request();

//check server response
if ($client->getLastResponse()->isError()) {
throw new Exception($response->getStatus() .' '. $response->getMessage());
}
return $response;
}
}

我如何通过 SSL 请求图像?

提前致谢!

最佳答案

你可以使用

$this->getUrl('', array('_secure' => true));

$this->getUrl('', array('_forced_secure' => true));

让 Magento 使用配置的 web/secure/base_url

关于magento - 使用 http ://references 在 Magento 的浏览器中验证 SSL 密封,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9027885/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com