Questions tagged [plone]

Plone is a content management system (CMS) written in Python. Its strengths are in intranets, websites and document management. It has support for multilingual content and versioning.

Plone is free and open source content management system (CMS) written in Python. It is built on top of the Zope application server. Its strengths are in intranets, websites and document management. It has robust support for multilingual content, versioning and is easy to use.

The project has been actively developed since 2001, is available in more than 40 languages, and has the best security track record of any major CMS.

It is owned by the Plone Foundation, a not-for-profit organization that owns the code and trademarks.

Useful links:

2879 questions
1
vote
1 answer

ParseError: Token 'ATOM' required, u'AND' found on LiveSearch

adding the words AND, OR, NOT to a search query raises an error like this one in Plone 4.1: 2011-07-28 14:52:46 ERROR Zope.SiteErrorLog 1311882766.090.999612944712 http://localhost:8080/Plone/livesearch_reply Traceback (innermost last): Module…
hvelarde
  • 2,875
  • 14
  • 34
1
vote
0 answers

sphinx doesn't show any documentation (sphinx w/ plone)

i have 544 warnings like this . i try to dcument python(plone) code with sphinx 1.8.5 qoute WARNING: autodoc: failed to import module u'lims.workflow.worksheet' from module u'bika'; the following exception was raised: No module named App this my…
1
vote
1 answer

Why can't I add criteria to a collection?

I have added a Collection but when I click on the criteria tab and choose ANY fields such as Item Type or Location, then press the "add criteria" button, it show an error: "Criterion of type ${type} not added, it does not work with index Type." Also…
Adrian Garner
  • 5,235
  • 2
  • 23
  • 29
1
vote
2 answers

How do I know if an email was correctly sent on Plone? 'return host.send(mail_text)' always returns None

Following the Plone community-managed developer docs about sending e-mail: try: host = getToolByName(self, 'MailHost') return host.send(mail_text) except SMTPRecipientsRefused: # Don't disclose email address on failure raise…
1
vote
1 answer

I can't manage portlets

I Just migrated my portal to the newest version 4.0.7 from 3.3.5 I did a new install and migrate my Data.fs When i click to manage Portlets i can't view de Add Portlet Combo, and when i click on manage portlets i see this error and the site…
MLopez
  • 21
  • 1
1
vote
1 answer

301 redirect in Plone CMS (Zope)

I'm running a website hosted on Apache and Plone (based on Zope). My problem is that i have duplicate content with following urls: www.site.com www.site.nl/en www.site.com/nl and so on, every page shows the same content. Google Webmaster Tools also…
Klaas
1
vote
1 answer

How do you import the plone.importexport add-on correctly in plone?

i am trying to install the add-on: plone.importexport, but i found this error: user@wppi94:~/Plone/zinstance$ bin/buildout Unused options for buildout: 'deprecation-warnings'. Installing instance. Couldn't find index page for 'plone.importexport'…
1
vote
3 answers

quickinstaller.installProduct 'installs' stuff that doesn't even exist. How do I raise an exception?

I have a config.py in my product, having: DEPENDENCIES = ['bbbbbbbbbbbb'] #This doesn't exist And in my setuphandlers.py: for dependency in DEPENDENCIES: if not quickinstaller.isProductInstalled(dependency): …
1
vote
4 answers

How to restrict amount of special content_type objects in folderish type to only one object?

I am creating a folderish type (archetype 1) and I want to have possibility to add only a single object of (archetype 2) to this folder.
Hare
  • 11
  • 1
1
vote
2 answers

How can I setup Plone 4.0.7 for Diazo?

I would like to know the correct steps to setup Diazo in a Plone 4.0.7 installation. Thanks in advance. Alano
user838067
  • 53
  • 3
1
vote
2 answers

Vocabulary source, function is not iterable, with dexterity in Plone 4.1

I have a custom Dexterity content type with collective.z3c.datagridfield define in the following way: class ILanguageRow(Interface): # Interface that defines a datagrid row. lang = schema.Choice( title=_(u'Language'), required=True,…
Rigel Di Scala
  • 3,150
  • 2
  • 17
  • 23
1
vote
5 answers

How to override plone.app.caching operations for using Apache mod_cache with Plone

We're running Plone 4.1 with plone.app.caching behind Apache 2.2 with mod_cache and mod_disk_cache. The pre-defined operations that are available with plone.app.caching aren't quite suitable for this configuration as Apache won't cache responses if…
scarba05
  • 2,943
  • 1
  • 27
  • 29
1
vote
1 answer

Is it time.time() a safe approach when creating content types on plone programatically?

I have to use _createObjectByType on Plone. I have as an argument the id of the object. Is it going to be safe, in this scenario, to create an id based on time.time() to avoid collisions? Can two requests have exactly the same timestamp as shown by…
1
vote
1 answer

Archetypes AutoCompleteWidget for Plone4

My custom archetypes content types need autocomplete widget, but I do not yet find Plone 4 compatible product on this. Any suggestion? Or, if I have to upgrade those old widget products, any good examples or resources to hint?
marr
  • 861
  • 4
  • 19
1
vote
3 answers

A CMS as a front end to build an applications GUI

We need a Web-based front end for our C++ application. It's relatively simply (15 screens, simple requirements, database-centric) and should be customizable. We would like to have a workflow component... that's more complicated. Originally I thought…
1 2 3
99
100