tags:

views:

287

answers:

4

Hi guys and girls,

Can I install coldfusion 8 and coldfusion 9 on the same server and use them separately?

Great thanks.

A: 

Could be a question for Server Fault

Ben
+1  A: 

Yes it can.. the main issue here is how your webserver works out which one to use when. the best way to do this is to have two different webservers (apache and IIS) serving the two different versions of CF.

Other ways would be..

  • to have WSConfig point to the same proxy port for both versions of CF but then you could only run one at a time.
  • to have WSConfig bind two different sets of file extensions (ie .cfm8 goes to CF8 and .cfm goes to CF9

None of these are really great solutions but it depends on what you are trying to achieve.

LucasS
+2  A: 

Yes, absolutely. Basically there is no difference from using few instances of same version, like described in the Installing the J2EE Configuration help section.

P.S. Vote for ServerFault.

Sergii
+7  A: 

Here's how you do the install: Installing Multiple Versions of ColdFusion Together - Presentation at Philadelphia CFUG meeting by Daria Norris

Andreas Schuldhaus