Maybe only a new post is affected, not replies.
It shouldnt only be new posts.
I created a brand new test post a couple of nights ago in the FTTP section that includes inverted commas
https://forum.kitz.co.uk/index.php/topic,28096.0.htmlBoth of the following are standard chars should work fine. In fact any of the
standard ASCII characters work ok
DEC OCT HEX BIN Symbol HTML Number HTML Name Description
34 042 22 00100010 " " " Double quotes (or speech marks)
39 047 27 00100111 ' ' ' Single quote
96 140 60 01100000 ` ` ` Grave accent
Most UK keyboards just have a single & double inverted comma ( ' and " ) which should be OK.
------------------------------------
The problem is non-standard ASCII chars.
During previous testing the only character on a UK keyboard that has a problem is the UK currency pound sign. The pound symbol isnt a standard ASCII key. There are a few other non standard ASCII keys that could case problems such as the Euro symbol, the copyright symbol and the registered trademark. Although not on the keyboard they can be inserted using the designated number and the ALT key
For example
* Alt+0169 Euro sign
* Alt+0174 Registered
* Alt+0169 Copyright
-------------------------------
From the info in the error log yesterday it looks like the error is being caused by the single right hand quote mark.
This character is not on the keyboard nor is it a standard ASCII no. It's generated by certain software - usually Windows- such as Word or perhaps a html editor like Dreamweaver which uses the html ref no. If you copy and paste a character that has at some point in the past been edited in Windows software to use the html ref then it will throw the error.
We - or rather Meritas - has previously seen a problem with the left and right double quotes. Because all your error messages all say "
Incorrect string value: '\x92" then I think its a fair assumption to say that it is char hex 92 aka single right single quote. Replacing the windows generated guote marks with the ASCII symbols [ ' ] should fix it.
Windows left and right quotations marks
DEC OCT HEX BIN Symbol HTML Number HTML Name Description
145 221 91 10010001 * ‘ ‘ Left single quotation mark
146 222 92 10010010 * ’ ’ Right single quotation mark
147 223 93 10010011 * “ “ Left double quotation mark
148 224 94 10010100 * ” ” Right double quotation mark