Similar scripts in different directories

2000-10-17 Thread Andreas Schiffler
Hi there, quick question regarding script concurrency with mod_perl. If Ihave the same script name in different directories, will mod_perl treat them differently and can they be used concurrently? i.e. I have a production version and a development version of help.pm which gets called by help.pl

Re: Similar scripts in different directories

2000-10-17 Thread Gunther Birznieks
If the script is a module then no. If the script is a script being loaded by something else like Apache::Registry, there is code in Apache::Registry to mangle the namespace of the script so it appears to be different from a script of the same name running at a different URL. However, there