1

我是 plone 和 linux 的新手,我正在尝试在 plone 上安装新补丁(Plone Hotfix 20121106)

我使用 buildout 来安装这个,似乎当我检查我的日志时,它根本没有下载/安装补丁。

这是我的 buildout.cfg 的鸡蛋内容:

eggs = 
    Products.PloneHotfix20110928
    Products.Zope_Hotfix_20110622
    Products.PloneHotfix20121106

我所做的是先停止克隆服务然后再做

sudo ./bin/buildout -Nv

并再次启动我的克隆。

当我检查 instance.log

它只安装了 Products.PloneHotfix20110928 和 Products.Zope_Hotfix_20110622

有人帮我吗?

提前致谢。

4

2 回答 2

0

检查你的 egg 目录以确保 egg 已经下载到那里,如果没有重新运行 buildout 并观察/grep 控制台消息以确保它被成功下载。如果由于某种原因它没有出现,您可以手动下载它并将其添加到您的鸡蛋目录中。

那么,如果你在前台启动 Plone,你应该会在控制台消息中看到正在安装的修补程序,例如

bin/instance fg

那么您应该在控制台中看到一些输出,例如:

2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 registerConfiglet 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 setHeader 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 allow_module补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 get_request_var_or_attr 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 kssdevel 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix2266AppliedHot widget_traversal 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 gtbn 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 kupu_spellcheck 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix26应用membership_tool 补丁2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用queryCatalog 补丁2012-11-06 23:51:08 INFO Products。PloneHotfix20121106 应用 uid_catalog 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 renameObjectsByPaths 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用 at_download 补丁 20112-11-06 23: .PloneHotfix20121106 应用了 safe_html 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用了 python_scripts 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用了 getNavigationRootObject 补丁 2012-11-06 23: Products.PloneHotfix20121106 应用了 crypto_oracle 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用了 crypto_oracle_protect 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 应用了 ftp 补丁 2012-11-06 235: INFO Products.PloneHotfix20121106 应用在补丁 2012-11-06 23:51:08 INFO Products。PloneHotfix20121106 应用了 random_string 补丁 2012-11-06 23:51:08 INFO Products.PloneHotfix20121106 Hotfix installed

于 2012-11-09T01:49:45.710 回答
0
  1. 将补丁 (PloneHotfix20121106) 放到 Plone 上的 Products 文件夹中,

  2. 解压压缩包,

  3. 运行实例(bin/instance fg)

  4. 启动克隆服务

于 2012-11-15T02:59:34.203 回答