在 Plone 4.1 中安装 Pageturner

发布于 2024-12-09 19:28:15 字数 475 浏览 0 评论 0原文

我们已将 Plone 网站更新至版本 4.1

我们还希望在网站中安装 Pageturner PDF 查看器,以便为我们的用户提供更多关于以 PDF 形式发布的医学文章的功能。

我们在构建文件中添加了两部分:

eggs = 
     .......
     wc.pageturner

zcml = 
     .......
     wc.pageturner

我们还在 Ubntu 服务器计算机上安装了 swftools,命令如下:

$ sudo apt-get install swftools

运行构建进展顺利,没有任何错误。 启动 zinstance 后,Plone 站点在浏览器中不可用。

如果您有兴趣,我们可以编写一些功能文档以随产品一起添加到 plone.org 上。

我能做些什么?错误在哪里?我错过了什么吗?

We have updated our Plone sites to version 4.1

We would like to install also the Pageturner PDF viewer in the site to give our users more functionality on medical articles which are published as PDFs.

We added in the buildout file two parts:

eggs = 
     .......
     wc.pageturner

zcml = 
     .......
     wc.pageturner

We also installed on our Ubntu server machine the swftools with the command:

$ sudo apt-get install swftools

Running buildout is going well without any errors.
After starting the zinstance the Plone sites are not available within the browser.

If you are interested we could write some functional documentation to add on plone.org with the product.

What can I do? where is the error? Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫雨熙 2024-12-16 19:28:15

这似乎是与 Plone 4.1 中处理权限的方式相关的常见问题。

只需添加以下内容:

<include package="Products.CMFCore" file="permissions.zcml"
    xmlns:zcml="http://namespaces.zope.org/zcml"
    zcml:condition="have plone-41"
    />

在每个提到 CMF 权限(cmf.ManagePortal、cmf.ModifyPortalContent 等)的configure.zcml 文件中。

It seems a common problem relative to the way permissions are handled in Plone 4.1.

Just add the following:

<include package="Products.CMFCore" file="permissions.zcml"
    xmlns:zcml="http://namespaces.zope.org/zcml"
    zcml:condition="have plone-41"
    />

in every configure.zcml file where CMF permissions (cmf.ManagePortal, cmf.ModifyPortalContent, etc.) are mentioned.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文