Is there a ColdFusion equivalent for phpinfo ()

Is there a ColdFusion equivalent for phpinfo ()? I don’t know much about ColdFusion, except that our university servers support it. I just want to know which version we are launching.

+5
source share
3 answers

According to ColdFusion version check :

Checking the version of ColdFusion couldn't be simpler. All you have to do is unload the SERVER area. The version of ColdFusion is contained in a field called "ColdFusion.ProductVersion". You should see a number like 7,0,1,116466. In addition, the type of system license type (for example, enterprise, developer, etc.) is located in a field called "ColdFusion.ProductLevel".

And there is also a code example:

<!--- Dump out the server scope. --->
<cfdump var="#SERVER#" />

<!--- Store the ColdFusion version. --->
<cfset strVersion = SERVER.ColdFusion.ProductVersion />

<!--- Store the ColdFusion level. --->
<cfset strLevel = SERVER.ColdFusion.ProductLevel />
+12
source

If you have access to the ColdFusion Administrator server, this and many more are also available in the System Information section. Log in and click on the white “i” in the blue circle in the upper right corner of the window.

+1
source

ColdFusion.

Http:///CFIDE/administrator/index.cfm

, .

0

All Articles