[Zope-CMF] Re: CMFWiki installation problem
Tres Seaver
tseaver at zope.com
Thu Jul 8 08:20:33 EDT 2004
Vincent Derrien wrote:
> Hello,
>
> I'm a french developper and I've tried to install CMFWiki, a package of CMF
> Zope, but I obtain several errors that I paste below (these are the latest
> ligns) :
>
> File "/usr/local/zope/instance/Products/CMFWiki/__init__.py", line 1, in ?
> import CMFWikiPage
> File "/usr/local/zope/instance/Products/CMFWiki/CMFWikiPage.py", line 48,
> in ?
> from permissions import View
> File "/usr/local/zope/instance/Products/CMFWiki/permissions.py", line 10,
> in ?
> from Products.CMFCore.permissions import View
> ImportError: No module named permissions
>
>
> I don't really understand what happend and I wonder if you ahe already solve
> this problem. I hope you can help me quickly 'cause it's a hury professional
> work...
The head of CVS for CMFWiki has been updated to work with the head of
CVS for the rest of CMF. You could revert to an earlier version of
CMFWiki, or patch the file, e.g.:
try:
from Products.CMFCore.permissions import View
except ImportError:
from Products.CMFCore.CMFCorePermissions import View
Even better, why not just use the current ZWiki product
(http://zwiki.org). It has current CMF and Plone skins, and is much
better supported.
Tres
--
===============================================================
Tres Seaver tseaver at zope.com
Zope Corporation "Zope Dealers" http://www.zope.com
More information about the Zope-CMF
mailing list