Wiki Farms
- I am having trouble getting farms to work correctly and I think I might have to be running it with some other server other than the one that is buit in...something like Apache or IIS Found the following on mailing list:
wikis = [
('sicilewiki', r"^.[^/]*/sicilewiki/.*$")
,('yuhlwiki', r"^.[^/]*/yuhlwiki/.*$")
]
and when I go on the server:
http://fact.yuhl.com/sicilewiki/foo/FrontPage
http://fact.yuhl.com/sicilewiki/whatever/FrontPage
^
I got this behaviour with the url/
where I can put *whatever* here..
I'd like to have something like:
http://fact.yuhl.com/sicilewiki/FrontPage
2)
that one is maybe also related to the first one.
I have to add in the config for sicilewiki :
data_underlay_dir = '/var/www/sicilewiki/underlay/'
when famconfig.py
---%<---
class FarmConfig(DefaultConfig):
data_dir = './data/'
data_underlay_dir = './underlay/'
url_prefix = '/wiki' ####(mod_python)
---%<---
ls /var/www/sicilewiki/
data/ moin.cgi* password.file underlay/
so it shows that the ``data_dir'' directive from ``class FarmConfig(DefaultConfig)'' works well, except for the data_underlay_dir ???