No… not global warming.

Developing on your local environment is quite often very different to what is actually running at your hosts end. I am not going to tell you how to get around the issues with different combinations of CF, database server and web server but instead, here is a little script that you can upload to your host and see what they are running compared to yourself if you run into any ‘environment’ issues. Hopefully armed with this info and google you can find someone who has the same issue, goodluck:

<cfquery name="q" datasource="#application.dsn#">
	SELECT version() AS MYSQLversionNo
</cfquery>
<cfoutput>
	<html>
		<style type="text/css">
			body{
				font-family: verdana;
			}
		</style>
		<body>
			<h2>CF - #server.coldfusion.PRODUCTVERSION#</h2>
			<h2>MYSQL - #q.MYSQLversionNo#</h2>
			<h2>WEBSERVER - #CGI.SERVER_SOFTWARE#</h2>
		</body>
	</html>
</cfoutput>
 

Post a Comment

*
*