From: anthony.baker@... (Anthony Baker) Date: 2004-10-31T03:23:55+09:00 Subject: Running Multiple Versions of Instiki on Same Host? Hey Folks, Am wondering if anyone has any pointers to info on how to run multiple versions of Instiki on a single host. What I'd like to be able to do is install three separate copies of Instiki under the same domain, each in its own directory. As Instiki runs by default on Port 2500, I'm assuming I'd have to configure each copy to run on a separate port, yes? Would editing instiki.rb be enough -- modifying the following: OPTIONS = { :server_type => fork_available ? Daemon : SimpleServer, :port => 2500, :storage => "#{cdir}/storage", :pdflatex => pdflatex_available } to be something like OPTIONS = { :server_type => fork_available ? Daemon : SimpleServer, :port => 2505, :storage => "#{cdir}/storage", :pdflatex => pdflatex_available } on the new install? Would love someone who's done something similar to offer any pointers/tips they might have on the subject. Thanks in advance, Anthony