在 Plone 4.1 中安装 Pageturner
我们已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是与 Plone 4.1 中处理权限的方式相关的常见问题。
只需添加以下内容:
在每个提到 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:
in every configure.zcml file where CMF permissions (cmf.ManagePortal, cmf.ModifyPortalContent, etc.) are mentioned.