|
From: Chris W. <ch...@cw...> - 2002-11-14 16:59:17
|
On Thu, 2002-11-14 at 10:34, Chris McDaniel wrote: > Hello again, > > Thanks for your suggestions. I changed the use lib as you suggested, and > the require for startup.pl is indeed after the <Perl> section. That alone > was not enough to fix it, but I did discover that if I changed the order of > the includes in httpd.conf something interesting happened. I have 2 > websites configured, my productions site, which wants OI-1.21 and this new > site which wants OI 1.54. If I do this is my httpd.conf: > Include /var/www/1.21-site/conf/httpd_modperl_solo.conf > Include /var/www/1.54-site/conf/httpd_modperl_solo.conf > ... Oh! I didn't realize you were running both sites in the same mod_perl instance. That won't work -- there are many, many more places where you'll run into the same sort of problems you had here. To do this you need to run two entirely separate mod_perl instances: one for the old site and one for the new. Chris -- Chris Winters (ch...@cw...) Building enterprise-capable snack solutions since 1988. |