Hello,
I have pretty strange situation. Hosting that I'm working on is forcing ISO-8859-2 encoding. I don't have any real access to it, just ftp to folder where I'm installing a site. None of htaccess solutions worked - have no idea why. The only thing that worked for me was adding
header("Content-Type: text/html;charset=UTF-8");
to every template. But ProcessWire backend is still encoded in ISO-8859-2 and messy.
How to write module that would add it to every ProcessWire pageload? Or to which PW file and where I need to paste it (probably it will never be updated)?
My php skills are really poor. Know only basics that allow me to ingrate processwire to site.