Dear All, I'm new in Zope and right now I'm doing my final project about creating portal with ZOPE under Linux, there are some questions about zope : 1. Where can I find my files that I created in ZOPE (i.e index_html, login_html, etc) 2. Can I change my url of Zope from http://localhost:8080/portal to http://localhost/portal ? 3. Can I move my files from ZOPE under Linux to ZOPE under Windows without any configuration? 4. Can I created mail server / mailing list server under ZOPE? how? TIA PS : sorry if my english is not to good :-) -- God Bless You, Robby mailto:robbyg@i4te.com
1. Where can I find my files that I created in ZOPE (i.e index_html, login_html, etc)
Those aren't files: they're objects. They reside in the Zope Object Database, which by default is stored in zope/var/Data.fs though there are products to store such objects as files on your filesystem. LocalFS, for example.
2. Can I change my url of Zope from http://localhost:8080/portal to http://localhost/portal ?
You can set this by command-line parameters to z2.py, which is best done by editing your start script. Note that using a priviledged port (80) requires some security wrangling. Read docs/SETUID.txt for more info.
3. Can I move my files from ZOPE under Linux to ZOPE under Windows without any configuration?
Almost always. The CMF in the past has has some issues with this with regard to skins, and some products have platform dependancies. But non-core products aside, yes.
4. Can I created mail server / mailing list server under ZOPE? how?
Zope's a web server. It can provide clients (webmail) and administration for mail servers and lists (esp. mailman), and send mail (via the dtml-sendmail tag), but it won't be a mail server for you. Search the Products on zope.org for appropriate products, and read the Zope Book for more on sending mails from DTML through a MailHost. --jcc
On Tue, 8 Apr 2003, Robby Gunawan wrote:
Dear All,
I'm new in Zope and right now I'm doing my final project about creating portal with ZOPE under Linux, there are some questions about zope :
1. Where can I find my files that I created in ZOPE (i.e index_html, login_html, etc)
Those are saved in the database.
2. Can I change my url of Zope from http://localhost:8080/portal to http://localhost/portal ?
Yes, but you need to run the Zope in port 80 (Which is the default HTTP port)
3. Can I move my files from ZOPE under Linux to ZOPE under Windows without any configuration?
There is export/import feature which will probably answer your needs.
4. Can I created mail server / mailing list server under ZOPE? how?
I suppose it's possible easily, just make a product for it and share it with us ;)
TIA
PS : sorry if my english is not to good :-)
-- God Bless You, Robby mailto:robbyg@i4te.com
_______________________________________________ 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 )
Oliver Sakki wrote:
4. Can I created mail server / mailing list server under ZOPE? how?
I suppose it's possible easily, just make a product for it and share it with us ;)
Maybe you should checkout MailBoxer before starting to code your own mailinglist-manager. MailBoxer provides a stable mailinglist/newsletter/mailarchive-framework for Zope and can be used out of the box as mailinglist-manager for even large lists...:) http://www.zope.org/Members/mjablonski/MailBoxer The German Zope User Group (www.dzug.org) uses MailBoxer to run several mailinglists out of Zope with some hundred people. Cheers, Maik
participants (4)
-
J Cameron Cooper -
Maik Jablonski -
Oliver Sakki -
Robby Gunawan