Have you put your field definitions into the <appSettings> section of your web.config file correctly? Have a look in your log file and you should get more info on the problems you are getting.
I found out that the GET request for "/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias=" doesn't work because my application is hosted in a subfolder (www.mywebsite.com/subfolder).
The request should lead to: "/subfolder/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias=", but is leading to: "/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias="
No, that's the first that I've came across that one - you've broke new ground :-)
I think you might be able to work around it by creating redirects (e.g. using the 301 Url Tracker package hopefully makes this easy). N.B. you will have to add redirects for the other exposed methods as well: DeleteFormSubmissionRecord, DownloadFormSubmissions, and FetchFormSubmissionData as well as GetFieldsForAlias.
ERROR ON DEPLOY
I'm getting the follow error in deploy application:
"There is an error with the configuration of your submissions grid.".
Can someone help me?
Hi Douglas,
Have you put your field definitions into the
<appSettings>
section of your web.config file correctly? Have a look in your log file and you should get more info on the problems you are getting.Cheers,
Scott
Hi Scott.
I found out that the GET request for "/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias=" doesn't work because my application is hosted in a subfolder (www.mywebsite.com/subfolder).
The request should lead to: "/subfolder/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias=", but is leading to: "/Umbraco/Surface/FormStorage/ GetFieldsForAlias/?Alias="
Have you come across something like that?
Hi Douglas,
No, that's the first that I've came across that one - you've broke new ground :-)
I think you might be able to work around it by creating redirects (e.g. using the 301 Url Tracker package hopefully makes this easy). N.B. you will have to add redirects for the other exposed methods as well:
DeleteFormSubmissionRecord
,DownloadFormSubmissions
, andFetchFormSubmissionData
as well asGetFieldsForAlias
.Kind regards,
Scott
is working on a reply...