Posts: 3
Threads: 1
Joined: Nov 2013
Reputation:
0
Hello, I'm new here and my question is probably only for gerrman language important. I made a form in Form Tools and my problem is, that geman characters such as <öäü ÖÄÜ ß> written in text fields are not submitted to the database and not submitted by e-mail too. More ever, the string is cut before such characters.
I'm using the 2.2.5 version and my provider is STRATO. The database has a UTF-8 format. What can I do?
Posts: 415
Threads: 0
Joined: Mar 2009
Reputation:
3
Hi Pverbeek,
Please try the following:
- Ensure database is set to utf8_general_ci
- Check your /global/config.php file doesn't contain a $g_unicode = false; line and your /global/library.php does contain a $g_unicode = true; line (unicode is enabled by default, so unless you edited it this should be fine).
- Encoding of form is set in metatag in the header of your form document, please add this meta tag to your form: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- In the form tag add "accept-charset="UTF-8" to the form <form ... accept-charset="UTF-8">
Cheers,
Joe
Posts: 3
Threads: 1
Joined: Nov 2013
Reputation:
0
Hi Joe,
seemst to be exactly, what I need and searched for!
Thank you and have a nice weekend, I will try to implate these rules in my form and let you know.
Bye, Peter
Posts: 1
Threads: 0
Joined: Dec 2013
Reputation:
0
Dec 3rd, 2013, 3:29 AM
(This post was last modified: Dec 3rd, 2013, 3:32 AM by mwf.)
Bonjour !
I have (maybe) the same problem with sending mails and was happy to find a solution here - but this does not work for my problem:
It seems to me that mails (neither client nor administrator notification) will be send if their are special characters like the german äöüß or the french éèàâ in the client/administrator name (last name and/or first name).
For the administrator-name it's a minor problem - I have removed the 'ö' from my last-name, but how to deal with client-names?
I'm using the 2.2.5 version and my provider is 1and1.fr
Thanks in advance
Martin
Posts: 3
Threads: 0
Joined: Sep 2013
Reputation:
0
Check your /global/config.php file doesn't contain a $g_unicode = false; line and your /global/library.php does contain a $g_unicode = true; line (unicode is enabled by default, so unless you edited it this should be fine).