Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a ColdFusion equivalent of phpinfo()

Tags:

php

coldfusion

Is there a ColdFusion equivalent of phpinfo()? I don't know much about ColdFusion except that our university servers support it. I basically just want to know what version we are running.

like image 501
ubiquibacon Avatar asked Oct 05 '10 18:10

ubiquibacon


2 Answers

According to Checking The ColdFusion Version:

Checking your ColdFusion version could not be easier. All you have to do is dump out the SERVER scope. The version of ColdFusion is contained in a field titled "ColdFusion.ProductVersion." You should see a number like 7,0,1,116466. Additionally, the type license type of the system (ex. enterprise, developer, etc.) is in a field titled "ColdFusion.ProductLevel."

And there is also a code sample:

<!--- 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 />
like image 119
Justin Ethier Avatar answered Nov 03 '22 00:11

Justin Ethier


If you have access to your server's ColdFusion Administrator, this and more is also available under System Information. Log in and click white "i" in the blue circle in the upper right corner of the window.

like image 42
bpanulla Avatar answered Nov 03 '22 00:11

bpanulla