You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(416) |
Nov
(381) |
Dec
(404) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(603) |
Feb
(688) |
Mar
(790) |
Apr
(680) |
May
(756) |
Jun
(828) |
Jul
(821) |
Aug
(679) |
Sep
(862) |
Oct
(1081) |
Nov
(941) |
Dec
(1149) |
2004 |
Jan
(1276) |
Feb
(1418) |
Mar
(1927) |
Apr
(1552) |
May
(1332) |
Jun
(1339) |
Jul
(1268) |
Aug
(1353) |
Sep
(1491) |
Oct
(1466) |
Nov
(1424) |
Dec
(1470) |
2005 |
Jan
(1417) |
Feb
(1079) |
Mar
(1756) |
Apr
(1643) |
May
(1402) |
Jun
(1239) |
Jul
(1199) |
Aug
(1574) |
Sep
(1600) |
Oct
(1414) |
Nov
(1480) |
Dec
(1249) |
2006 |
Jan
(1635) |
Feb
(1332) |
Mar
(1607) |
Apr
(1302) |
May
(1264) |
Jun
(1760) |
Jul
(1411) |
Aug
(1569) |
Sep
(1521) |
Oct
(1732) |
Nov
(1698) |
Dec
(1274) |
2007 |
Jan
(1354) |
Feb
(1341) |
Mar
(1141) |
Apr
(1333) |
May
(1597) |
Jun
(1343) |
Jul
(1311) |
Aug
(1425) |
Sep
(1429) |
Oct
(1523) |
Nov
(1253) |
Dec
(1499) |
2008 |
Jan
(1601) |
Feb
(1420) |
Mar
(1295) |
Apr
(1414) |
May
(1177) |
Jun
(1167) |
Jul
(1221) |
Aug
(988) |
Sep
(1045) |
Oct
(1196) |
Nov
(1104) |
Dec
(728) |
2009 |
Jan
(883) |
Feb
(1114) |
Mar
(996) |
Apr
(934) |
May
(818) |
Jun
(770) |
Jul
(634) |
Aug
(604) |
Sep
(761) |
Oct
(725) |
Nov
(746) |
Dec
(722) |
2010 |
Jan
(832) |
Feb
(734) |
Mar
(805) |
Apr
(475) |
May
(772) |
Jun
(691) |
Jul
(587) |
Aug
(627) |
Sep
(693) |
Oct
(627) |
Nov
(471) |
Dec
(375) |
2011 |
Jan
(475) |
Feb
(442) |
Mar
(365) |
Apr
(340) |
May
(500) |
Jun
(419) |
Jul
(343) |
Aug
(386) |
Sep
(486) |
Oct
(419) |
Nov
(334) |
Dec
(294) |
2012 |
Jan
(285) |
Feb
(295) |
Mar
(324) |
Apr
(201) |
May
(178) |
Jun
(234) |
Jul
(329) |
Aug
(300) |
Sep
(254) |
Oct
(492) |
Nov
(310) |
Dec
(219) |
2013 |
Jan
(252) |
Feb
(280) |
Mar
(217) |
Apr
(268) |
May
(377) |
Jun
(273) |
Jul
(304) |
Aug
(297) |
Sep
(265) |
Oct
(201) |
Nov
(132) |
Dec
(205) |
2014 |
Jan
(112) |
Feb
(95) |
Mar
(111) |
Apr
(98) |
May
(123) |
Jun
(66) |
Jul
(91) |
Aug
(89) |
Sep
(78) |
Oct
(92) |
Nov
(37) |
Dec
(32) |
2015 |
Jan
(46) |
Feb
(56) |
Mar
(105) |
Apr
(149) |
May
(61) |
Jun
(39) |
Jul
(15) |
Aug
(12) |
Sep
(21) |
Oct
(14) |
Nov
(7) |
Dec
(8) |
2016 |
Jan
(7) |
Feb
(3) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(3) |
Oct
(4) |
Nov
|
Dec
|
From: <Ke...@Sy...> - 2015-10-17 20:28:57
|
Hello! New message, please read <http://compareukshops.azurewebsites.net/going.php?g> Ke...@Sy... |
From: dieter <di...@ha...> - 2015-10-17 06:31:06
|
aschmitz <al...@an...> writes: > ... so I exported each one to its own ZEXP file. > > I'm getting an error on two of the sites, when I try to import them: > > Error Type: ImportError > Error Value: No module named CacheSetup.content.caching_policy_manager > ... > Based on the export I think the ID of the problem object is 1648800. With "ID" you hopefully mean "ZODB object id" - even though, this looks strange as ZODB object ids usually are represented as hexadecimal values (beeing 8 byte binary numbers). > Can I > use this information to delete this object from the ZODB, so the export will > be importable again? The ZODB does not have a function to delete selected objects -- as this presents the danger of "dangling references". Instead, you modify other objects that "point to" the object to be deletd and remove there the reference to the object. Then "packing" will eventually delete the object once it is no longer referenced. Thus, the answer is "no". You will find in the export also the objects referencing the problematic object. Those you can load from the ZODB via code like the following, modify them (no longer to reference the object) and commit. This will allow you to clean up - if Kim's advice does not give you an easier way: # in "bin/{instance|client1} debug" from ZODB.utils import p64 obj = app._p_jar[p64(oid)] # load object with oid "oid" |
From: T. K. N. <ng...@pl...> - 2015-10-17 01:32:09
|
Look for wildcard.fixpersistentutilities and this example: http://stackoverflow.com/questions/10364026/how-to-clean-unused-add-ons-from-a-plone-site You may also want to post questions like this in either stackoverflow.com or community.plone.org. This mailing list is deprecated :) Kim On Oct 16, 2015, at 6:03 PM, aschmitz <al...@an...> wrote: I have a Zope server that hosts roughly a dozen Plone sites. These sites started out on Plone 3, and they've been upgraded a few times. They've been running Plone 4.3.1 for over a year. Now I need to split these sites onto separate servers, so I exported each one to its own ZEXP file. I'm getting an error on two of the sites, when I try to import them: Error Type: ImportError Error Value: No module named CacheSetup.content.caching_policy_manager While these sites were on Plone 3, they used Products.CacheSetup. All of the CacheFu related products were uninstalled on all of the sites before they were upgraded to Plone 4 and plone.app.caching was installed. Apparently two of the sites still contain a single object that references Products.CacheSetup, so they can't be imported. I exported one of the sites to an XML file and extracted the references to the CacheSetup content caching_policy_manager. The XML is available here: http://pastebin.com/9vgRNu0p Based on the export I think the ID of the problem object is 1648800. Can I use this information to delete this object from the ZODB, so the export will be importable again? Thanks, Alan -- View this message in context: http://plone.293351.n2.nabble.com/import-error-and-deleting-an-object-from-the-ZODB-tp7574345.html Sent from the General Questions mailing list archive at Nabble.com. ------------------------------------------------------------------------------ _______________________________________________ Plone-Users mailing list Plo...@li... https://lists.sourceforge.net/lists/listinfo/plone-users |
From: aschmitz <al...@an...> - 2015-10-16 15:22:35
|
I have a Zope server that hosts roughly a dozen Plone sites. These sites started out on Plone 3, and they've been upgraded a few times. They've been running Plone 4.3.1 for over a year. Now I need to split these sites onto separate servers, so I exported each one to its own ZEXP file. I'm getting an error on two of the sites, when I try to import them: Error Type: ImportError Error Value: No module named CacheSetup.content.caching_policy_manager While these sites were on Plone 3, they used Products.CacheSetup. All of the CacheFu related products were uninstalled on all of the sites before they were upgraded to Plone 4 and plone.app.caching was installed. Apparently two of the sites still contain a single object that references Products.CacheSetup, so they can't be imported. I exported one of the sites to an XML file and extracted the references to the CacheSetup content caching_policy_manager. The XML is available here: http://pastebin.com/9vgRNu0p Based on the export I think the ID of the problem object is 1648800. Can I use this information to delete this object from the ZODB, so the export will be importable again? Thanks, Alan -- View this message in context: http://plone.293351.n2.nabble.com/import-error-and-deleting-an-object-from-the-ZODB-tp7574345.html Sent from the General Questions mailing list archive at Nabble.com. |
From: Nestor A. D. <ne...@ti...> - 2015-10-13 22:49:21
|
Hi, I finally was able to install plone 5, just executing: # pip install setuptools --upgrade However, when working with the interface I got the attached error when trying to install the product: archetypes.multilingual So I have to undo that from the management console and then install all archetypes products before that. Next test is triying to make it work under relstorage under postgresql, then nginx + uwsgi + emperor and that's all for now. AttributeError('portal_factory',) (Also, the following error occurred while attempting to render the standard error message, please see the event log for full details: portal_factory) 2015-10-13 17:37:52 ERROR root Exception while rendering an error message Traceback (most recent call last): File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/OFS/SimpleItem.py", line 242, in raise_standardErrorMessage v = s(**kwargs) File "/usr/local/plone5.0/eggs/Products.CMFCore-2.2.10-py2.7.egg/Products/CMFCore/FSPythonScript.py", line 127, in __call__ return Script.__call__(self, *args, **kw) File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/Shared/DC/Scripts/Bindings.py", line 322, in __call__ return self._bindAndExec(args, kw, None) File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/Shared/DC/Scripts/Bindings.py", line 359, in _bindAndExec return self._exec(bound_data, args, kw) File "/usr/local/plone5.0/eggs/Products.PythonScripts-2.13.2-py2.7.egg/Products/PythonScripts/PythonScript.py", line 344, in _exec result = f(*args, **kw) File "Script (Python)", line 35, in standard_error_message File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/Shared/DC/Scripts/Bindings.py", line 322, in __call__ return self._bindAndExec(args, kw, None) File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/Shared/DC/Scripts/Bindings.py", line 359, in _bindAndExec return self._exec(bound_data, args, kw) File "/usr/local/plone5.0/eggs/Products.CMFCore-2.2.10-py2.7.egg/Products/CMFCore/FSPageTemplate.py", line 237, in _exec result = self.pt_render(extra_context=bound_names) File "/usr/local/plone5.0/eggs/Products.CMFCore-2.2.10-py2.7.egg/Products/CMFCore/FSPageTemplate.py", line 177, in pt_render self, source, extra_context File "/usr/local/plone5.0/eggs/Zope2-2.13.23-py2.7.egg/Products/PageTemplates/PageTemplate.py", line 87, in pt_render showtal=showtal) File "/usr/local/plone5.0/eggs/zope.pagetemplate-3.6.3-py2.7.egg/zope/pagetemplate/pagetemplate.py", line 132, in pt_render strictinsert=0, sourceAnnotations=sourceAnnotations File "/usr/local/plone5.0/eggs/five.pt-2.2.3-py2.7.egg/five/pt/engine.py", line 93, in __call__ return self.template.render(**kwargs) File "/usr/local/plone5.0/eggs/z3c.pt-3.0.0a1-py2.7.egg/z3c/pt/pagetemplate.py", line 163, in render return base_renderer(**context) File "/usr/local/plone5.0/eggs/Chameleon-2.22-py2.7.egg/chameleon/zpt/template.py", line 258, in render return super(PageTemplate, self).render(**vars) File "/usr/local/plone5.0/eggs/Chameleon-2.22-py2.7.egg/chameleon/template.py", line 191, in render raise_with_traceback(exc, tb) File "/usr/local/plone5.0/eggs/Chameleon-2.22-py2.7.egg/chameleon/template.py", line 171, in render self._render(stream, econtext, rcontext) File "f3457a3a9c62802ca8feae3703a9c900.py", line 1492, in render File "d4e82480045353e8920168e093a0555a.py", line 1192, in render_master File "/usr/local/plone5.0/eggs/z3c.pt-3.0.0a1-py2.7.egg/z3c/pt/expressions.py", line 71, in render_content_provider cp.update() File "/usr/local/plone5.0/eggs/zope.viewlet-3.7.2-py2.7.egg/zope/viewlet/manager.py", line 112, in update self._updateViewlets() File "/usr/local/plone5.0/eggs/zope.viewlet-3.7.2-py2.7.egg/zope/viewlet/manager.py", line 118, in _updateViewlets viewlet.update() File "/usr/local/plone5.0/eggs/archetypes.multilingual-3.0.1-py2.7.egg/archetypes/multilingual/browser/viewlets.py", line 27, in update if self.context.portal_factory.isTemporary(self.context): AttributeError: portal_factory - Expression: "provider:plone.abovecontent" - Filename: ... egg/Products/CMFPlone/browser/templates/main_template.pt - Location: (line 67: col 63) - Source: ... ^ - Arguments: repeat: {...} (0) template: <ImplicitAcquisitionWrapper default_error_message at 0x7d54cd0> modules: <instance - at 0x26aff80> here: <ImplicitAcquisitionWrapper front-page at 0x7617370> user: <ImplicitAcquisitionWrapper - at 0x7035eb0> nothing: <NoneType - at 0x8879c0> container: <ImplicitAcquisitionWrapper Plone at 0x7831aa0> default: <object - at 0x7fc457c0b4f0> request: <instance - at 0xb521560> wrapped_repeat: <SafeMapping - at 0xb89a260> traverse_subpath: <list - at 0x997dbd8> loop: {...} (0) context: <ImplicitAcquisitionWrapper front-page at 0x7617370> translate: <function translate at 0x96b4c08> root: <ImplicitAcquisitionWrapper Zope at 0x6caa4b0> options: {...} (9) target_language: <NoneType - at 0x8879c0> slds. -- Typed on my key64.org keyboard Nestor A Diaz |
From: Nestor A. D. <ne...@ti...> - 2015-10-13 16:42:22
|
Hello Everybody, I am following these instructions for plone5: http://docs.plone.org/manage/installing/requirements.html in order to install plone5 for my own joy but I got the following error running buildout. p.d. The same machine is used for running plone4 and works ok. (plone5.0)plone-demo@plone:/usr/local/plone5.0/zinstance$ ./bin/buildout While: Installing. Checking for upgrades. Getting distribution for 'zc.buildout==2.4.3'. An internal error occurred due to a bug in either zc.buildout or in a recipe being used: Traceback (most recent call last): File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/buildout.py", line 1992, in main getattr(buildout, command)(args) File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/buildout.py", line 515, in install self._maybe_upgrade() File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/buildout.py", line 950, in _maybe_upgrade allow_hosts = self._allow_hosts File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 848, in install return installer.install(specs, working_set) File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 635, in install for_buildout_run=for_buildout_run): File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 477, in _get_dist dist, avail = self._satisfied(requirement) File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 234, in _satisfied return None, self._obtain(req, source) File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 420, in _obtain if _final_version(dist.parsed_version) File "/usr/local/plone5.0/zinstance/eggs/zc.buildout-2.4.4-py2.7.egg/zc/buildout/easy_install.py", line 1407, in _final_version return not parsed_version.is_prerelease AttributeError: 'tuple' object has no attribute 'is_prerelease' -- Typed on my key64.org keyboard Nestor A Diaz |
From: Jean J. <jea...@gm...> - 2015-10-04 11:09:44
|
On Thu, Oct 1, 2015 at 1:06 AM, sven <sv...@so...> wrote: > > libjpeg62-turbo-dev And to get hold of that, `apt-cache search libjpeg62` is useful. -- jean . .. .... //\\\oo///\\ |
From: T. K. N. <ng...@pl...> - 2015-10-02 14:51:10
|
A major push at the Bucharest conference sprint will be on updating add-ons to work with P5. Join the sprint online at IRC #sprint if you can't be there in person! Kim > On Oct 2, 2015, at 9:33 AM, Eric Bréhault <ebr...@gm...> wrote: > > It depends on what you mean by "stability etc." (and more specifically by "etc." :) ). > Plone 5 is stable and I do use it in production. > Nevertheless, a lot of add-ons are not available yet on Plone 5 (or are not stable enough), so you might prefer to use Plone 4.3 for a while because of that. > > And yes there is an upgarde guide: http://docs.plone.org/manage/upgrading/version_specific_migration/p4x_to_p5x_upgrade.html <http://docs.plone.org/manage/upgrading/version_specific_migration/p4x_to_p5x_upgrade.html> > > Eric > > On Fri, Oct 2, 2015 at 3:54 PM, Carsten Agger <car...@ma... <mailto:car...@ma...>> wrote: > Does that mean that Plone 5 is now the officially recommended Plone > release, or is 4.3.7 still recommended for stability etc. > > And are their any good 4->5 upgrade guide available? > > Best regards > Carsten > > Den 29-09-2015 kl. 02:48 skrev Carl Brewer: > > No-one seems to have announced it here, but I just noticed it on the > > Plone website. Good-o! > > > > https://plone.org/products/plone/releases/5.0 <https://plone.org/products/plone/releases/5.0> > > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > > Plone-Users mailing list > > Plo...@li... <mailto:Plo...@li...> > > https://lists.sourceforge.net/lists/listinfo/plone-users <https://lists.sourceforge.net/lists/listinfo/plone-users> > > -- > Carsten Agger > Magenta ApS > Incuba, Åbogade 15 > DK-8200 Aarhus N > > Tlf +45 3336 9699 <tel:%2B45%203336%209699> > Dir +45 5060 1476 <tel:%2B45%205060%201476> > Mob +45 2086 5010 <tel:%2B45%202086%205010> > > http://www.magenta.dk <http://www.magenta.dk/> > car...@ma... <mailto:car...@ma...> > > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... <mailto:Plo...@li...> > https://lists.sourceforge.net/lists/listinfo/plone-users <https://lists.sourceforge.net/lists/listinfo/plone-users> > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users |
From: Eric B. <ebr...@gm...> - 2015-10-02 14:33:59
|
It depends on what you mean by "stability etc." (and more specifically by "etc." :) ). Plone 5 is stable and I do use it in production. Nevertheless, a lot of add-ons are not available yet on Plone 5 (or are not stable enough), so you might prefer to use Plone 4.3 for a while because of that. And yes there is an upgarde guide: http://docs.plone.org/manage/upgrading/version_specific_migration/p4x_to_p5x_upgrade.html Eric On Fri, Oct 2, 2015 at 3:54 PM, Carsten Agger <car...@ma...> wrote: > Does that mean that Plone 5 is now the officially recommended Plone > release, or is 4.3.7 still recommended for stability etc. > > And are their any good 4->5 upgrade guide available? > > Best regards > Carsten > > Den 29-09-2015 kl. 02:48 skrev Carl Brewer: > > No-one seems to have announced it here, but I just noticed it on the > > Plone website. Good-o! > > > > https://plone.org/products/plone/releases/5.0 > > > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > > Plone-Users mailing list > > Plo...@li... > > https://lists.sourceforge.net/lists/listinfo/plone-users > > -- > Carsten Agger > Magenta ApS > Incuba, Åbogade 15 > DK-8200 Aarhus N > > Tlf +45 3336 9699 > Dir +45 5060 1476 > Mob +45 2086 5010 > > http://www.magenta.dk > car...@ma... > > > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users > |
From: Carsten A. <car...@ma...> - 2015-10-02 14:25:37
|
Does that mean that Plone 5 is now the officially recommended Plone release, or is 4.3.7 still recommended for stability etc. And are their any good 4->5 upgrade guide available? Best regards Carsten Den 29-09-2015 kl. 02:48 skrev Carl Brewer: > No-one seems to have announced it here, but I just noticed it on the > Plone website. Good-o! > > https://plone.org/products/plone/releases/5.0 > > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users -- Carsten Agger Magenta ApS Incuba, Åbogade 15 DK-8200 Aarhus N Tlf +45 3336 9699 Dir +45 5060 1476 Mob +45 2086 5010 http://www.magenta.dk car...@ma... |
From: Steve M. <st...@dc...> - 2015-10-01 17:10:05
|
The "special sauce" is to make both plone_buildout and plone_daemon members of a common group. I use plone_group. Give that group read/write permissions for ./var, then set the group sticky bit so that new items created there will keep the group. That allows the buildout user to create ./var subdirectories for new parts when needed. Also, don't forget a precompiler step to compile all the .po and .mo files during buildout. Doing that during buildout allows you to block the daemon component from writing into the code space. On Thu, Oct 1, 2015 at 3:57 AM, Jens W. Klein <je...@bl...> wrote: > Hi Ralf, > > I dont know unified installer very well. But the base idea is to split > service and buildout user. Buildout user needs r/w access for all files, > while service user has no write access to files were read is enough - > for security reasons. > > I know several setups where only one user "zope" (or "plone") exists for > both roles - with r/w for the whole buildout. The service user is > defined in the buildout section(s) for the instance(s). Using the same > user is - afaik - officially not recommended. My personal opinion is, in > fact it does not matter that much. > > Anyway, with separate service user, it needs (in a standard buildout) > only write access for the ./var directory. Here are the zodb and blob > data, logging and pid files. This assumes precompiled python files > (pyc/pyo) and precompiled gettext translations files (po/mo). > Precompiling happens in buildout at buildout-time. > > hth > Jens > > On 2015-10-01 12:14, Ralf Hemmecke wrote: > > Hello, > > > > due to some restrictions I don't have root access to a linux box, but > > would like to install plone 5 in a similar way as it is done when > > running install.sh zeo (as root user) from the unified installer. > > In other words the plone maintainer is not the system administrator of > > the machine. > > > > The users plone_daemon and plone_buildout as well as the group > > plone_group exist in the system and the user 'plone' who is ower of the > > unified installer files and who is supposed to install Plone5 has sudo > > rights for plone_daemon and plone_buildout. > > > > What is the way to install Plone in such a case? > > Note that I would like the distinction between the daemon and buildout > user. > > > > It's probably easiest to simply do the install as user plone and > > afterwards change the user of the respective files. My problem, however > > is: which files should belong to plone_daemon and which to > > plone_buildout? Is there already a script that I can simply run? > > > > Thank you > > Ralf > > > > > ------------------------------------------------------------------------------ > > > > > -- > Klein & Partner KG, member of BlueDynamics Alliance > > > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users > |
From: Jens W. K. <je...@bl...> - 2015-10-01 10:58:07
|
Hi Ralf, I dont know unified installer very well. But the base idea is to split service and buildout user. Buildout user needs r/w access for all files, while service user has no write access to files were read is enough - for security reasons. I know several setups where only one user "zope" (or "plone") exists for both roles - with r/w for the whole buildout. The service user is defined in the buildout section(s) for the instance(s). Using the same user is - afaik - officially not recommended. My personal opinion is, in fact it does not matter that much. Anyway, with separate service user, it needs (in a standard buildout) only write access for the ./var directory. Here are the zodb and blob data, logging and pid files. This assumes precompiled python files (pyc/pyo) and precompiled gettext translations files (po/mo). Precompiling happens in buildout at buildout-time. hth Jens On 2015-10-01 12:14, Ralf Hemmecke wrote: > Hello, > > due to some restrictions I don't have root access to a linux box, but > would like to install plone 5 in a similar way as it is done when > running install.sh zeo (as root user) from the unified installer. > In other words the plone maintainer is not the system administrator of > the machine. > > The users plone_daemon and plone_buildout as well as the group > plone_group exist in the system and the user 'plone' who is ower of the > unified installer files and who is supposed to install Plone5 has sudo > rights for plone_daemon and plone_buildout. > > What is the way to install Plone in such a case? > Note that I would like the distinction between the daemon and buildout user. > > It's probably easiest to simply do the install as user plone and > afterwards change the user of the respective files. My problem, however > is: which files should belong to plone_daemon and which to > plone_buildout? Is there already a script that I can simply run? > > Thank you > Ralf > > ------------------------------------------------------------------------------ > -- Klein & Partner KG, member of BlueDynamics Alliance |
From: Ralf H. <hem...@gm...> - 2015-10-01 10:14:17
|
Hello, due to some restrictions I don't have root access to a linux box, but would like to install plone 5 in a similar way as it is done when running install.sh zeo (as root user) from the unified installer. In other words the plone maintainer is not the system administrator of the machine. The users plone_daemon and plone_buildout as well as the group plone_group exist in the system and the user 'plone' who is ower of the unified installer files and who is supposed to install Plone5 has sudo rights for plone_daemon and plone_buildout. What is the way to install Plone in such a case? Note that I would like the distinction between the daemon and buildout user. It's probably easiest to simply do the install as user plone and afterwards change the user of the respective files. My problem, however is: which files should belong to plone_daemon and which to plone_buildout? Is there already a script that I can simply run? Thank you Ralf |
From: sven <sv...@so...> - 2015-09-30 18:26:44
|
Hi, the docs are based on Ubuntu where the naming of packages is sometimes different. On Debian Jessie I usual use: libjpeg62-turbo-dev Cheers, Sven On 09/30/2015 07:54 PM, Ralf Hemmecke wrote: > On > http://docs.plone.org/manage/installing/installation.html#download-the-latest-plone-unified-installer > it is suggested to do > > sudo apt-get install libjpeg62-dev > > There is only libjpeg62 but no -dev available in the Debian8 archive. > > What should I do? > > Ralf > > ------------------------------------------------------------------------------ > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users |
From: Ralf H. <hem...@gm...> - 2015-09-30 17:54:15
|
On http://docs.plone.org/manage/installing/installation.html#download-the-latest-plone-unified-installer it is suggested to do sudo apt-get install libjpeg62-dev There is only libjpeg62 but no -dev available in the Debian8 archive. What should I do? Ralf |
From: Nathan V. G. <van...@gm...> - 2015-09-29 23:20:16
|
Plone 4 does not have the auto csrf protection. On Sep 29, 2015 6:05 PM, "Steve McMahon" <st...@dc...> wrote: > Please file a bug report at > https://github.com/plone/Products.CMFPlone/issues . This looks like an > inadvertent consequence of the new CSRF protection. > > On Tue, Sep 29, 2015 at 12:41 AM, Sébastien VINOT < > seb...@lo...> wrote: > >> I have the next error while connected as admin: >> >> An error was encountered while publishing this resource. >> >> *Error Type: Forbidden* >> *Error Value: incorrect CSRF token* >> ------------------------------ >> >> Troubleshooting Suggestions >> >> - The URL may be incorrect. >> - The parameters passed to this resource may be incorrect. >> - A resource that this resource relies on may be encountering an >> error. >> >> For more detailed information about the error, please refer to the error >> log. >> >> If the error persists please contact the site maintainer. Thank you for >> your patience. >> >> >> >> >> Le 29/09/2015 08:58, Luca Fabbri a écrit : >> >> On Tue, Sep 29, 2015 at 8:23 AM, Sébastien VINOT<seb...@lo...> <seb...@lo...> wrote: >> >> I found the admin user inside the root of the zope instance but the >> Password tool inside the Zope interface does not work. >> >> What is the way to change it ? >> >> >> This is the common way to change the admin password: what is not >> working for you? >> >> >> >> >> >> ------------------------------------------------------------------------------ >> >> _______________________________________________ >> Plone-Users mailing list >> Plo...@li... >> https://lists.sourceforge.net/lists/listinfo/plone-users >> >> > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users > > |
From: Steve M. <st...@dc...> - 2015-09-29 23:05:17
|
Please file a bug report at https://github.com/plone/Products.CMFPlone/issues . This looks like an inadvertent consequence of the new CSRF protection. On Tue, Sep 29, 2015 at 12:41 AM, Sébastien VINOT < seb...@lo...> wrote: > I have the next error while connected as admin: > > An error was encountered while publishing this resource. > > *Error Type: Forbidden* > *Error Value: incorrect CSRF token* > ------------------------------ > > Troubleshooting Suggestions > > - The URL may be incorrect. > - The parameters passed to this resource may be incorrect. > - A resource that this resource relies on may be encountering an error. > > For more detailed information about the error, please refer to the error > log. > > If the error persists please contact the site maintainer. Thank you for > your patience. > > > > > Le 29/09/2015 08:58, Luca Fabbri a écrit : > > On Tue, Sep 29, 2015 at 8:23 AM, Sébastien VINOT<seb...@lo...> <seb...@lo...> wrote: > > I found the admin user inside the root of the zope instance but the > Password tool inside the Zope interface does not work. > > What is the way to change it ? > > > This is the common way to change the admin password: what is not > working for you? > > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > Plone-Users mailing list > Plo...@li... > https://lists.sourceforge.net/lists/listinfo/plone-users > > |
From: T. K. N. <ng...@pl...> - 2015-09-29 19:06:49
|
https://plone.org/products/plone/security/advisories/20151006-preannouncement Patches to Plone for a variety of issues *Nature of vulnerability*: will be disclosed on Tuesday, October 6, 2015 at 15:00 UTC. The patch will be released on Tuesday, October 6, 2015 at 15:00 UTC. It will be available from https://pypi.python.org This patch will be compatible with all supported Plone versions. A workaround for Plone 1.x, 2.x, and 3.x will be described. |
From: T. K. N. <ng...@pl...> - 2015-09-29 16:23:24
|
Plone 5.0 has been officially released! Plone 5.0 is the culmination of years of persistence and hard work by so many developers, testers, themers, documenters, trainers, and writers. https://plone.org/news/plone-5-revealed-modern-powerful-and-user-driven Congratulations to all! |
From: espen <es...@me...> - 2015-09-29 15:34:21
|
Chaning the password in ZMI should work, but you can try: http://docs.plone.org/manage/deploying/zope.html#adding-users-from-command-line-reset-admin-password -- View this message in context: http://plone.293351.n2.nabble.com/Modify-plone-4-admin-password-tp7574288p7574293.html Sent from the General Questions mailing list archive at Nabble.com. |
From: Sébastien V. <seb...@lo...> - 2015-09-29 07:41:53
|
I have the next error while connected as admin: An error was encountered while publishing this resource. *Error Type: Forbidden* *Error Value: incorrect CSRF token* ------------------------------------------------------------------------ Troubleshooting Suggestions * The URL may be incorrect. * The parameters passed to this resource may be incorrect. * A resource that this resource relies on may be encountering an error. For more detailed information about the error, please refer to the error log. If the error persists please contact the site maintainer. Thank you for your patience. Le 29/09/2015 08:58, Luca Fabbri a écrit : > On Tue, Sep 29, 2015 at 8:23 AM, Sébastien VINOT > <seb...@lo...> wrote: >> I found the admin user inside the root of the zope instance but the >> Password tool inside the Zope interface does not work. >> >> What is the way to change it ? >> > This is the common way to change the admin password: what is not > working for you? > > |
From: Luca F. <lu...@ke...> - 2015-09-29 06:59:00
|
On Tue, Sep 29, 2015 at 8:23 AM, Sébastien VINOT <seb...@lo...> wrote: > I found the admin user inside the root of the zope instance but the > Password tool inside the Zope interface does not work. > > What is the way to change it ? > This is the common way to change the admin password: what is not working for you? -- -- luca twitter: http://twitter.com/keul linkedin: http://linkedin.com/in/lucafbb blog: http://blog.keul.it/ |
From: Sébastien V. <seb...@lo...> - 2015-09-29 06:50:31
|
Hello, I've build a Plone instance with an "admin" user written in the buildout and I'd like to modify its password. I found the admin user inside the root of the zope instance but the Password tool inside the Zope interface does not work. What is the way to change it ? Sebastien |
From: T. K. N. <ng...@pl...> - 2015-09-29 02:24:51
|
Sorry, we were too busy whooping it up! https://plone.org/news/plone-5-revealed-modern-powerful-and-user-driven Kim On Sep 28, 2015, at 7:48 PM, Carl Brewer <ca...@bl...> wrote: No-one seems to have announced it here, but I just noticed it on the Plone website. Good-o! https://plone.org/products/plone/releases/5.0 ------------------------------------------------------------------------------ _______________________________________________ Plone-Users mailing list Plo...@li... https://lists.sourceforge.net/lists/listinfo/plone-users |
From: Carl B. <ca...@bl...> - 2015-09-29 01:05:46
|
No-one seems to have announced it here, but I just noticed it on the Plone website. Good-o! https://plone.org/products/plone/releases/5.0 |