Skip to content Skip to sidebar Skip to footer

The 'meta' Start Tag On Line 15 Does Not Match The End Tag Of 'head'. Line 177, Position 3

I have a piece of great software that I use but the owner deserted it a couple of years ago hence there has not been an upgrade or any maintenance. In one section I use it come up

Solution 1:

Sometimes <meta> and <link> tags may show these errors maybe because they're not closed properly.

Make sure that:

  1. Your meta tag is inside the <head></head> tags
  2. You do close your tag, like this:

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>

Solution 2:

This error probably comes from ClickOnce installer which tries to connect to the server which should contain application manifest and other binary files to be downloaded by setup executable.

Problem is, instead of manifest it receives pure HTML (probably some kind of 404 Not Found page) which is parsed (it's still XML after all) and of course the parse error is reported.

I know this is old answer but it came up with my Google search and seems most relevant to the problem I had. Might save someone some time. In my case it was server side security feature which prevents bots and other malicious software which might scrape our website (and download attachments) depleting available transfer limit.

Post a Comment for "The 'meta' Start Tag On Line 15 Does Not Match The End Tag Of 'head'. Line 177, Position 3"