首页 \ 问答 \ 从Sitecore 6.x升级到6.6(Upgrade path from Sitecore 6.x to 6.6)

从Sitecore 6.x升级到6.6(Upgrade path from Sitecore 6.x to 6.6)

我们目前正在使用的网站是使用Sitecore 6.5,我们希望将其升级到6.6,以便测试该版本中可用的新功能。

通常,Sitecore会发布描述如何从旧版本升级的详细信息,但我找不到6.6版本的任何此类信息。 我假设这与发布仍在技术预览版中的事实有关。

我们可以安装6.6 CMS的干净版本并为我们的站点构建顶部代码,但我们希望找到的是数据库更新脚本和/或Sitecore更新包,其中包含6.6版本中的所有新项目。

最糟糕的情况是,我们必须将整个数据库序列化为升级的一部分,但我们希望避免由于数据库的庞大规模而必须这样做。

有没有人遇到过任何升级细节,或者我们是否要等到技术预览版6.6?


The site we are working on at the moment is using Sitecore 6.5 and we would like to upgrade it to 6.6 in order to test the new features that are available in that version.

Normally, Sitecore releases details describing how to upgrade from older versions but I can't find any such information for the 6.6 release. I'm assuming that this has to do with the fact that the release is still in Technical Preview.

We can install a clean version of the 6.6 CMS and build the code for our site over the top, but what we are hoping to find is a database update script and/or a Sitecore update package that includes all the new items in the 6.6 release.

Worst case we'll have to serialize our entire database as part of the upgrade but we were hoping to avoid having to do that due to the sheer size of the database.

Has anyone come across any upgrade details or do we have to wait until 6.6 comes out of Technical Preview?


原文:https://stackoverflow.com/questions/13021355
更新时间:2022-11-29 21:11

最满意答案

浏览器检测到代码中的跨站点脚本漏洞。

它的源代码在请求中找到

表示浏览器未运行脚本,因为脚本的内容是在$ _POST中发送的。 如果您确定您的页面不受XSS漏洞的影响,请在文件开头添加以下PHP:

<?php
    header("X-XSS-Protection: 0");
?>

The browser detected cross-site scripting vulnerabilities in your code.

its source code was found within the request

indicates that the browser didn't run the script because the content of the script was sent in $_POST. If you are sure your page is safe from XSS vulnerabilities, add the following PHP at the beginning of the file:

<?php
    header("X-XSS-Protection: 0");
?>

相关问答

更多