$.post("home/authenticate.cfm", { "organizationid": lid, "username": un, "password": pw },
function (data, status) {
$("#results").html(data).show();
});
The CF is automatically defaulting back to the root index.cfm file instead of the home/authenticate.cfm without ever processing the home/authenticate.cfm file. No errors are generated or displayed. The code in the home/authenticate.cfm file is:
<cfoutput>hi</cfoutput>The desired output is to have “Hi” written in the div with the ID of “results”.
I have run the same post method using “home/response.asp” as the url which returns simple html. It works perfectly. The issue seems to be narrowed down to ColdFusion or Fusebox. We are using ColdFusion Version: 7,0,0,91690 and Fusebox V.4. 1 on IIS 7 web server.
Do you have any suggestions on how I can make the .cfm file work?

New Topic/Question
Reply



MultiQuote




|