We had our own server working with an app. We started hosting with a different provider and now we are getting the above-mentioned error.
On the same page, this works:
<cfsetcompTest=createObject("component", "components.search")>
<cfsetresult=compTest.search(1,10,1,"desc","")>
<cfdumpvar="#result#">
But this one does not
<cfformname="searchResultGridForm">
<cfgrid
name="searchResultGrid"
bindOnLoad="true"
bind="cfc:components.search.search({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{searchedWord@keyup})"
format="html"
selectMode="Row"
selectOnLoad="false"
width="790"
height="290"
colHeaderAlign="Center"
stripeRows="true"
pagesize="10">
<cfgridcolumnname="fileColor"header="Priority"width="50">
<cfgridcolumnname="idFile"header="ID"width="40">
<cfgridcolumnname="firstName"header="First Name"width="80">
<cfgridcolumnname="lastName"header="Last Name"width="80">
<cfgridcolumnname="email"header="Email"width="100">
<cfgridcolumnname="nextImportantDate"header="Next Important Date"width="70">
<cfgridcolumnname="statusName"header="Status"width="100">
<cfgridcolumnname="historyLastInsert"header="Last Note"width="100">
<cfgridcolumnname="fileAssignedTo"header="Assigned to"width="90">
<cfgridcolumnname="edit"header="Actions"width="60"dataAlign="Center">
</cfgrid>
</cfform>
We can't figure out why could that be. We keep getting the error mentioned on the title. Your help would be greatly appreciated