One explanation for this: if you haven't quoted the tag name attribute, the tag is not recognized. ie:
<meta name=robots content="noindex,follow">
is no good. Make sure it is
<meta name="robots" content="noindex,follow">
or
<meta name='robots' content="noindex,follow">