Hello, I use Lucee on a Windows Server with IIS and MySQL.
There are problems with certain character sets that appear in the German alphabet but not in the English alphabet.
For example, “ß” causes problems. I was able to solve the problem with with the following code:
SELECT Tabelle, Fußnote, Fußnotentext, Reihenfolge
FROM Fußnoten WHERE Tabelle = #tabelle# ORDER BY Reihenfolge
But here he can’t handle the #Fußnote# variable because it has a “ß” in it:
<p class="cSchrift_klein">
<cfif #Fußnote# = "hallo">
</cfif>
</p>
What else can I do, I also changed the encoding to utf-8 bom in visual studio.
There are hints on the internet that it might be the web server. Somewhere there still needs to be a switch to UTF-8, but where?
At ISS, lucee-server.xml?
Or are variables not allowed to contain a “ß” character?