Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.

Products.TinyMCE 1.4.3 uninstall issue #136

Open
hvelarde opened this issue Apr 4, 2016 · 0 comments
Open

Products.TinyMCE 1.4.3 uninstall issue #136

hvelarde opened this issue Apr 4, 2016 · 0 comments

Comments

@hvelarde
Copy link
Member

hvelarde commented Apr 4, 2016

if, by mistake, you installed this version on a Plone 4.3 site and want to replace it with a version of the 1.3 branch you will have an issue while uninstalling as wysiwyg_editor attribute in portal_memberdata is set to Kupu, which no longer exists.

the easiest way to solve that is open a debug session and do something like this:

>>>  memberdata_tool = api.portal.get_tool('portal_memberdata')
>>> memberdata_tool.wysiwyg_editor
'Kupu'
>>> memberdata_tool.wysiwyg_editor = ''
>>> import transaction
>>> transaction.commit()
>>> app._p_jar.sync()

we could remove also memberdata_properties.xml from the uninstall profile but I don't know if that makes sense now that 1.4 branch is abandoned.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant