I found another thread on this issue, but I'm still seeing the issue. The following error appears in my Firefox Error Console:
Error: The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must to be declared in the document or in the transfer protocol.
I want to figure out a way to hide or filter this error. I checked the various Firebug options, but nothing seems to work. Any suggestions?
On Monday, September 17, 2012 4:33:29 PM UTC+2, Starquest wrote:
> I found another thread on this issue, but I'm still seeing the issue. The > following error appears in my Firefox Error Console:
> Error: The character encoding of the HTML document was not declared. The > document will render with garbled text in some browser configurations if > the document contains characters from outside the US-ASCII range. The > character encoding of the page must to be declared in the document or in > the transfer protocol.
> I want to figure out a way to hide or filter this error. I checked the > various Firebug options, but nothing seems to work. Any suggestions?
Mine is unchecked, yet I'm still getting the errors. The errors are appearing in firefox's console. I get to that console by this url: chrome://global/content/console.xul
> On Monday, September 17, 2012 4:33:29 PM UTC+2, Starquest wrote:
>> I found another thread on this issue, but I'm still seeing the issue. >> The following error appears in my Firefox Error Console:
>> Error: The character encoding of the HTML document was not declared. The >> document will render with garbled text in some browser configurations if >> the document contains characters from outside the US-ASCII range. The >> character encoding of the page must to be declared in the document or in >> the transfer protocol.
>> I want to figure out a way to hide or filter this error. I checked the >> various Firebug options, but nothing seems to work. Any suggestions?
Ah, I missed that you're talking about the Firefox Error Console. We don't influence the output of that console and it's unrelated to Firebug.
The error message already gives a hint for what to do to avoid it:
"The character encoding of the page must to be declared in the document or in the transfer protocol."
So either set a <meta> tag like <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> or add an HTTP header like Content-Type: text/html; charset=utf-8.
Or if you really just want to filter that message out, I suggest you install Console² <https://addons.mozilla.org/firefox/addon/console%C2%B2>.
On Tuesday, September 18, 2012 5:31:10 PM UTC+2, Starquest wrote:
> Mine is unchecked, yet I'm still getting the errors. The errors are > appearing in firefox's console. I get to that console by this url: > chrome://global/content/console.xul
> On Monday, September 17, 2012 4:57:08 PM UTC-5, Sebastian Zartner wrote:
>> On Monday, September 17, 2012 4:33:29 PM UTC+2, Starquest wrote:
>>> I found another thread on this issue, but I'm still seeing the issue.
>>> The following error appears in my Firefox Error Console:
>>> Error: The character encoding of the HTML document was not declared. The >>> document will render with garbled text in some browser configurations if >>> the document contains characters from outside the US-ASCII range. The >>> character encoding of the page must to be declared in the document or in >>> the transfer protocol.
>>> I want to figure out a way to hide or filter this error. I checked the >>> various Firebug options, but nothing seems to work. Any suggestions?