From: Reini U. <ru...@x-...> - 2002-01-15 19:46:37
|
Tim Bogart schrieb: > Can phpwiki be used to launch more than one wiki at a time on a single server > with a single address? I looked at the archives and did not see this > addresses. Maybe it's just me. Sure. just use different databases and different index.php files. easiest per virtual directory and a special .htaccess file. I have about 12 wiki's with same and different phpwiki versions on my windows test machine. conf/httpd.conf: Alias /phpwiki-dev-data "r:/php/phpwiki-dev/phpwiki/" www/test/.htaccess: Action x-phpwiki-page /phpwiki-dev-data/test.php SetHandler x-phpwiki-page DirectoryIndex /phpwiki-dev-data/test.php test.php: define('DATA_PATH', '/phpwiki-dev-data'); and so on. /phpwiki-dev-data is the basedir for the alpha version. /phpwiki-data for the stable version. -- Reini Urban http://atelier.akbild.ac.at/ (soon) http://xarch.tu-graz.ac.at/home/rurban/ (big) http://tv.mur.at/ (kulturelles) |