BlueImp file upload not working after migration to host server
I am having trouble uploading files after migrating the site from local environment to the web. Following is the relevant section of code from a coldfusion function that uploads files using BlueImp:
<cffunction name="POST" access="private" returnformat="json">
<cfargument name="options" type="struct" required="true">
<cfargument name="listing_id" type="any" required="false" default="">
<cfset var result = 0 >
<cfset var vThumbnail = 0 >
<cfset var fileInfo = "" >
<cfset var fileName = "" >
<cftry>
<cfset fileInfo = GetFileInfo(form['files[]']) />
<!---<cfdump var="#fileInfo#"><cfabort>--->
...In my local environment, selecting a file produces the following, which is a dump of the form variables used by the function:
LOCAL DEV ENVIRONMENT

Then BlueImp does its thing via the POST function shown above and the <cfdump var="#fileInfo#"> in the above code returns something like the following:
LOCAL DEV ENVIRONMENT

But, after uploading the site to Hostek, the initial file selection produces a similar form variables dump to the local environment, i.e.
REMOTE (LIVE) ENVIRONMENT:

BUT, the <cfdump var="#fileInfo#"> just returns zero (0) in the network tab. There is no dump structure as with the local environment.
Any ideas what could be going on?

