What is the best user folder replacement for the following ...
I am storing user information in a postgresql database. I need a login form and an easy to customize 'user creation' form/script. What is the best user folder replacement to achieve the above? -- Edward Muller Interlix - President Web Hosting - PC Service & Support Custom Programming - Network Service & Support Phone: 417-862-0573 Cell: 417-844-2435 Fax: 417-862-0572 http://www.interlix.com
Oh yeah ... I forgot... I am also using Zope 2.6.1 if it matters. On Thu, 2003-03-13 at 23:03, Edward Muller wrote:
I am storing user information in a postgresql database. I need a login form and an easy to customize 'user creation' form/script.
What is the best user folder replacement to achieve the above? -- Edward Muller
Interlix - President Web Hosting - PC Service & Support Custom Programming - Network Service & Support Phone: 417-862-0573 Cell: 417-844-2435 Fax: 417-862-0572 http://www.interlix.com
EM> I am storing user information in a postgresql database. I need a login EM> form and an easy to customize 'user creation' form/script. EM> What is the best user folder replacement to achieve the above? exUserFolder is a good option. It has ok support for postgreSQL out-of-the-box and is widely used. Also has some neat extra features, like caching and property-handling for users. http://www.zope.org/Members/TheJester/exUserFolder -- Geir Bækholt
I just went with exUserFolder for a similar project. The alternative would be Chris Withers' SimpleUserFolder, but I wanted caching support. --On Thursday, March 13, 2003 11:03:33 PM -0600 Edward Muller <edwardam@interlix.com> wrote:
I am storing user information in a postgresql database. I need a login form and an easy to customize 'user creation' form/script.
What is the best user folder replacement to achieve the above?
-- Edward Muller
Interlix - President
Web Hosting - PC Service & Support Custom Programming - Network Service & Support
Phone: 417-862-0573 Cell: 417-844-2435 Fax: 417-862-0572
_______________________________________________ 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 http://mail.zope.org/mailman/listinfo/zope-dev )
Dan L. Pierson wrote:
I just went with exUserFolder for a similar project. The alternative would be Chris Withers' SimpleUserFolder, but I wanted caching support.
What's wrong with using a RAM cache manager on your SUF methods? cheers, Chris - inventing one set of wheels is enough for me...
Hmm, interesting idea. I never thought of using a RAM cache manager to cache user data. Have you tried it? --On Monday, March 17, 2003 09:06:37 AM +0000 Chris Withers <chrisw@nipltd.com> wrote:
Dan L. Pierson wrote:
I just went with exUserFolder for a similar project. The alternative would be Chris Withers' SimpleUserFolder, but I wanted caching support.
What's wrong with using a RAM cache manager on your SUF methods?
cheers,
Chris - inventing one set of wheels is enough for me...
Dan L. Pierson wrote:
Hmm, interesting idea. I never thought of using a RAM cache manager to cache user data. Have you tried it?
No, but it's what RAM cache managers were designed for ;-) If you're coming from SQL you don't even need them, ZSQL methods do their own caching... cheers, Chris
participants (4)
-
Chris Withers -
Dan L. Pierson -
Edward Muller -
Geir Bækholt