[Zope] ZODB Key error in root Zope database

2011-02-18 Thread Brian Brinegar
._objects if i['id'] != 'OffendingObject']) Same exception. Can't access the database. We've tried using _setOb to replace the object. Any suggestions? It seems as though it needs to be able to access _objects before it mounts the mounted databases. Thanks, -- Brian Brinegar Web Services

Re: [Zope] ZODB Key error in root Zope database

2011-02-18 Thread Brian Brinegar
().commit() It's quite the hack, but allowed us to get the database back. Brian Brinegar Web Services Coordinator Engineering Computer Network -- Brian Brinegar Web Services Coordinator Engineering Computer Network ___ Zope maillist - Zope@zope.org

[Zope] Zope Performance with Multiple Mount Points

2010-04-12 Thread Brian Brinegar
. Generally, our client machines will hover around 97%-99% memory usage and 90%-100% CPU (on a 2 CPU machine). We still experience periodic performance problems and are looking for any input that might help us address them. Thanks for your input, -- Brian Brinegar Web Services Coordinator Engineering

Re: [Zope] Zope Performance with Multiple Mount Points

2010-04-12 Thread Brian Brinegar
with less servers, in which case is there an upper limit on the number of storages a single server can reasonably handle? Thanks, -Brian Andreas Jung wrote: Brian Brinegar wrote: We've recently moved to a Zope configuration with approximately 30 separate databases mounted at mount points within

[Zope] Dieter Mauer's Reference Product

2010-03-16 Thread Brian Brinegar
this change occurred. Thanks for reading, -- Brian Brinegar Web Services Coordinator Engineering Computer Network ___ Zope maillist - Zope@zope.org https://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists

Re: [Zope] Dieter Mauer's Reference Product

2010-03-16 Thread Brian Brinegar
Dieter, You've just made my week! I'm glad that my failure to understand how all of this works has shed some light on the problem. Thank you, Brian Dieter Maurer wrote: Dieter Maurer wrote at 2010-3-16 17:42 +0100: Brian Brinegar wrote at 2010-3-16 10:12 -0400: Our university relies

[Zope] Maintain Last Modified during Copy

2010-02-10 Thread Brian Brinegar
to move objects from one storage to another. One option that works is to copy the entire database, remove everything I don't want, and then pack it. But this isn't ideal. Any suggestions? -- Brian Brinegar Web Services Coordinator Engineering Computer Network Purdue University

[Zope] Error in Copy/Import during Migration

2010-01-07 Thread Brian Brinegar
/ZEO/zrpc/connection.py, line 699, in call raise inst # error raised by server EOFError I don't seem to have any space issues on any devices, and the process works for smaller site. Any input would be greatly appreciated. Thanks, -- Brian Brinegar Web Services Coordinator Engineering Computer

[Zope] Connecting New Zope to old ZEO server

2009-12-10 Thread Brian Brinegar
('192.168.1.51', 17900) -- 2009-12-10T10:09:48 ERROR ZEO.zrpc.Connection(C) (192.168.1.51:17900) bad handshake 'Z303' Is it possible to have a new Zope connect to an old ZODB? Thanks, -- Brian Brinegar Web Services Coordinator Engineering Computer Network

[Zope] method call pre-attribute access

2007-05-09 Thread Brian Brinegar
? -- Brian Brinegar Web Systems Developer Engineering Computer Network ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce

[Zope] Client Disconnected

2007-01-29 Thread Brian Brinegar
and max-disconnect-poll are set to the default. It seems that the clients NEVER reconnect until Zope is restarted. Any suggestions on how to automate this? -- Brian Brinegar Web Systems Developer Engineering Computer Network ___ Zope maillist - Zope

[Zope] Re: debugging a wayward zope process

2007-01-26 Thread Brian Brinegar
be an altogether better way of approaching it. Just thought I'd throw this in. And looking at it, I'm not sure that you need to import ZServer or os, I came up with this and didn't really refine it once it worked. -- Brian Brinegar Web Systems Developer Engineering Computer Network

[Zope] Integrating METAL into Zope Product

2007-01-10 Thread Brian Brinegar
on integrating METAL into a product? Thanks, -- Brian Brinegar Web Systems Developer Engineering Computer Network ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

[Zope] Zope 2.9.5 - 2.9.6 DateTime Change

2006-12-14 Thread Brian Brinegar
. Is this an intended change? We have hundreds of developers working independently within our system so it's not possible to adapt each application to account for this change. Any advice on moving to Zope 2.9.6? In the mean time I my try to back port specific bug fixes into 2.9.5. Thank you, -- Brian

[Zope] Zope 2.6.4 - 2.10.0 Migration (PageTemplates, Unicode, etc.)

2006-11-01 Thread Brian Brinegar
this upgrade? Should we move to an older version (2.8? 2.9?) first and then onto 2.10? Thanks, -- Brian Brinegar Web Systems Developer Engineering Computer Network ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

[Zope] Re: ZEO with Multiple Storages

2006-09-14 Thread Brian Brinegar
One ZEO server can deal with multiple storages just fine. Transactions involving multiple storages commit just fine. Caveat: You buy nothing by having a single ZEO process serve several ZODBs when you're trying to decrease commit times. You should run a ZEO process per ZODB you're serving

[Zope] ZEO with Multiple Storages

2006-09-13 Thread Brian Brinegar
for how to set something like this up? Lastly, any thoughts on how we could split up our existing data.fs file? One thought I had was to attempt to import/export data. Thank you, Brian Brinegar Web Systems Developer Engineering Computer Network Purdue University

[Zope] Preventing Zope Spinning?

2006-05-25 Thread Brian Brinegar
of the number of developers/maintainers. Can anyone make suggestions for providing a more stable environment? Thank you, Brian Brinegar Web Systems Developer Engineering Computer Network ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope

Re: [Zope] Preventing Zope Spinning?

2006-05-25 Thread Brian Brinegar
are dead it would cause complete down time while the clients startup. We made the decision that having the server be slow was better than having it be completely unavailable for an extended period of time. I would like to prevent the clients from ever needing to be restarted. Brian Brinegar Web

[Zope] request.set('AUTHENTICATED_USER',...

2006-01-13 Thread Brian Brinegar
We are running Zope 2.6.x and I noticed yesterday that I could do the following: acl_users = container.acl_users user = acl_users.getUser('test_user') request.set('AUTHENTICATED_USER',user) print request.AUTHENTICATED_USER.getUserName() This isn't a huge deal since it doesn't seem to

[Zope-dev] Parameter referencing bug in Python Scripts?

2004-03-22 Thread Brian Brinegar
the script. I have some security concerns since I can change the default parameters for other users on the server. Or so it seems. Suggestions? Brian Brinegar Engineering Computer Network Purdue University ___ Zope-Dev maillist - [EMAIL PROTECTED] http

[Zope-dev] UndoSearch Timeout

2003-08-14 Thread Brian Brinegar
? Thanks, Brian Brinegar Engineering Computer Network (ECN) Purdue University ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman

[Zope-dev] Object Type Assocation And Death To index_html

2003-07-18 Thread Brian Brinegar
Hello All, There is a proposal in the Zope 2.6 plan called Object Type Assocation and Death To index_html the status listed is incomplete. Is this still on the table for future versions of Zope? If part of the proposal was implemented what parts?

[Zope-dev] Untrusted developers

2003-07-17 Thread Brian Brinegar
that would ever make it into a zope release if I was to work on a patch? Thank you, Brian Brinegar Engineering Computer Network Purdue University ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts

[Zope-dev] Re: Untrusted developers

2003-07-17 Thread Brian Brinegar
Just being able to kill processes when their requests have been terminated would improve the situation dramatically. It would also allow termination policies to be implemented in the front-end server (Apache). This would not be as nice as the suggestion you made, but we could whip up a simple

Re: [Zope-dev] WebDAV File Descriptor Leak

2003-05-30 Thread Brian Brinegar
It seems to occur when WebDAV clients initially connect, not during file transfer. I was able to produce the problem with Cadaver as well as several other WebDAV clients. -Brian Andreas Jung wrote: I checked the corresponding code and the temporary files should be closed automatically when

[Zope-dev] WebDAV File Descriptor Leak

2003-05-27 Thread Brian Brinegar
Hello, We've run into a problem where we get messages like this in our Zope logs: 2003-05-23T18:56:08 PROBLEM(100) ZServer Server accept() threw an exception we occasionally get a lot of these and then restart Zope on the ZEO Client and everything is okay. After a little more investigation we

Re: [Zope-dev] WebDAV File Descriptor Leak

2003-05-27 Thread Brian Brinegar
with 2.6.2? -aj --On Dienstag, 27. Mai 2003 11:07 Uhr -0500 Brian Brinegar [EMAIL PROTECTED] wrote: Hello, We've run into a problem where we get messages like this in our Zope logs: 2003-05-23T18:56:08 PROBLEM(100) ZServer Server accept() threw an exception we occasionally get a lot

Re: [Zope-dev] WebDAV File Descriptor Leak

2003-05-27 Thread Brian Brinegar
to move to 2.6.2 I will work on a way of monitoring this on or production server. Thank you, Brian Brinegar ECN Web Systems Developer Purdue University Andreas Jung wrote: --On Dienstag, 27. Mai 2003 11:26 Uhr -0500 Brian Brinegar [EMAIL PROTECTED] wrote: Don't have a 2.6.2 setup right now

[Zope-dev] REQUEST.args

2003-02-24 Thread Brian Brinegar
Hi, I'm using some of Casey Duncans code that I got off of zopelabs.com in a product that I created. The code allows you to call any object generically. The code is listed below this message. The problem I have is if my object is called from a DTML Method like dtml-var object the args

Re: [Zope-dev] REQUEST.args

2003-02-24 Thread Brian Brinegar
, -Brian Brian Brinegar wrote: Hi, I'm using some of Casey Duncans code that I got off of zopelabs.com in a product that I created. The code allows you to call any object generically. The code is listed below this message. The problem I have is if my object is called from a DTML Method like dtml-var