I am having an issue displaying special characters like in French.
I am using utf8 on both the site and the database and have made several encoding combinations but it is still the same.
For your information, I do not have this issue when using Dreamweaver for example.
Thanks for your prompt reply @Teodor.
I have made several combinations in order to have this fixed so now both reasons may apply to my case.
How to fix this?
If I enter the information directly in to the database the issue is solved, but when using the original CMS Web interface (which by the way is not created with wappler but uses utf-8 as well), the issue is still here.
I am testing the public pages with wappler first and will switch the admin backend to later.
This is a common problem with these old scripts …
You need to add mysql_query('set names utf8', $connection); in your connection file, otherwise it won’t store them properly as utf-8.
just replace “$connection” with your connection name.
. Just as it is here:
Well, the problem is on your page.
Character encoding is not declared there (on the page), so the page is processed using windows-1252, which causes the copy-paste issue …
Even when you look at your page source code in the browser you can see it is wrongly processed. Maybe it is also wrongly stored in the db as well, or if it is not a dynamic data, copied from some editor like Word, etc.
Yeah. I am new to wrappler and want to migrate the public pages of my CMS first before the admin backend.
More questions coming from me in the next coming days, LoL. But I like what I see so far.