openiv says end tag was not expected at this location
-
says end tag was not expected at this location fix
-
You have an open tag somewhere in the file's text.
-
what is an open tag
-
I'm not familiar with what you're doing, but this sounds like an XML problem. A tag in XML would be one of these:
<tag> </tag>
With the end tag being
</tag>
You must have too many of those somewhere in the file.
P.S.
</tag>
is just a placeholder name. It can be named anything (as long as it matches the open tag), e.g.</qwerty>
</gta>
</blah>
-
fixed it