Skip to main content
Known Participant
September 24, 2010
Question

form data in French not received

  • September 24, 2010
  • 3 replies
  • 699 views

I use the same process.cfm to process the form data submitted.

The form is slightly different in text for English and French but is otherwise the same.

The form data are received ok for English but no data is received for French.

process.cfm use the form data as follows:

<cflog file="log" text="FORM.Institution_Name #FORM.Institution_Name#">

...

FORM.Institution_Name is not received(defined) in French.

The http message is captured as follows,

English:

Institution_Name_Required=Please+enter+Name+of+Institution%0D%0A%0D%0A&Proposal_Title_Required=Please+enter+Title+of+production%0D%0A%0D%0A&Contact_Given_Name_Required=Please+enter+Given+Name%0D%0A%0D%0A&Contact_Surname_Required=Please+enter+Surname%0D%0A%0D%0A&Contact_Title_Required=Please+enter+Title%0D%0A%0D%0A&Contact_Email_Required=Please+enter+E-mail+Address%0D%0A%0D%0A&Proposal_Password_Required=Please+enter+Password%0D%0A%0D%0A&Institution_Name=Institution&Proposal_Title=Testing+Test13+Production&Contact_Salutation=Mr.&Contact_Given_Name=albert&Contact_Surname=Kao&Contact_Title=Web+Developer&Contact_Email=t%40t.com&Proposal_Password=zzz&Proposal_Password2=zzz&next=Continue+

French:
Institution_Name_Required=Veuillez+entrer+le+nom+de+l%27%E9tablissement.%0D%0A%0D%0A&Proposal_Title_Required=Veuillez+entrer+le+titre+de+la+production.%0D%0A%0D%0A&Contact_Given_Name_Required=Veuillez+entrer+le+pr%E9nom.%0D%0A%0D%0A&Contact_Surname_Required=Veuillez+entrer+le+nom.%0D%0A%0D%0A&Contact_Title_Required=Veuillez+entrer+le+titre.%0D%0A%0D%0A&Contact_Email_Required=Veuillez+entrer+l%27adresse+de+courriel.%0D%0A%0D%0A&Proposal_Password_Required=Veuillez+entrer+le+mot+de+passe.%0D%0A%0D%0A&Institution_Name=Testing+Test+Institution+French&Proposal_Title=Testing+Test+Production+French&Contact_Salutation=Mr.&Contact_Given_Name=albert&Contact_Surname=Kao&Contact_Title=Web+Developer&Contact_Email=t%40t.com&Proposal_Password=yyy&Proposal_Password2=yyy&next=Poursuivre+
This topic has been closed for replies.

3 replies

BKBK
Community Expert
Community Expert
October 7, 2010

My suggestion is related to Cyril's.  You might be POSTing the English form, but GETting the French one. If so, then the following should work for the French form:

<cflog file="log" text="FORM.Institution_Name #URL.Institution_Name#">

Cyril Hanquez
Participating Frequently
October 6, 2010

Did you put <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> in your Form just in case? I suppose that it's a copy/paste problem but I see spaces in the http message... It's a standard form using a POST method?

Known Participant
October 6, 2010

Greetings,

I will be out of the office on Wednesday, October 6, and will return by 6:00pm EST. I will respond to all emails when I return. In case of an emergency, you may reach me on my cell: 603-275-6358.

Thanks,

Ron Barth

Alternative Systems

www.altsystem.com

603.537.9473

Inspiring
September 24, 2010

Turn on debugging and see if you have any form variables at all.