1

I have been able to get other system information, but how do I get FW/1 version info? I have tried

Application info

<cfoutput>
<p><b>Java Version:</b> #CreateObject("java", "java.lang.System").getProperty("java.version")#</p>
<p><b>ColdFusion Version:</b> #server.ColdFusion.ProductVersion#</p>
<p><b>FW/1 Version:</b> </p>

</cfoutput>

<cfdump var="#application#">

Application Info Dump

Leigh
  • 28,765
  • 10
  • 55
  • 103
James A Mohler
  • 11,060
  • 15
  • 46
  • 72

1 Answers1

1

You can look it up in framework.cfc. It's in the variables scope:

#variables._FW1_VERSION#
Richard Osseweyer
  • 1,693
  • 20
  • 25