Kevin
Kevin

Reputation: 327

Is it possible to run ColdFusion 9 alongside ColdFusion 11?

I am currently having problems about the PDF file that a cfdocument tag generates. Our main branch of the company is using CF9, and my local machine is using CF11. When they pull my git branches for testing, the PDF file layouts with the HTML varied a lot (e.g. CF9 table cells auto wrap texts, a 1 pixel border in CF11 is thicker than a 1 pixel border in CF9). I'm not sure if this is what it is supposed to be but I'd really like to know if it is safe to run CF9 and CF11 together or is it even possible? Thanks!

Update: An error occured while installing CF9.

ZeroGur: Windows DLL failed to load
    at ZeroGa4.b(DashoA10*..)
    at ZeroGa4.b(DashoA10*..)
    at com.zerog.ia.installer.LifeCycleManager.b(DashoA10*..)
    at com.zerog.ia.installer.LifeCycleManager.a(DashoA10*..)
    at com.zerog.ia.installer.Main.main(DashoA10*..)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.zerog.lax.LAX.launch(DashoA10*..)
    at com.zerog.lax.LAX.main(DashoA10*..)

Upvotes: 1

Views: 326

Answers (1)

Tushar Bhaware
Tushar Bhaware

Reputation: 2525

The best way to ensure that the code will work with a certain version of ColdFusion is to code and test on the same version of ColdFusion. You can install both CF9 and CF11 on your local machine. While working on this particular project, just start the CF9 server.

Upvotes: 1

Related Questions