And removing unnecessary closing-opening PHP tags is pretty much always a good idea. They&#39;re completely unnecessary, and are bound to create problems.<div><br></div><div>Chip<br><br><div class="gmail_quote">On Mon, Jan 3, 2011 at 7:57 AM, Jay <span dir="ltr">&lt;<a href="mailto:furcifer@furcifer.me">furcifer@furcifer.me</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Blank lines be the devil, if you use an editor like Php Designer it has an option to automaticly remove all blank lines.<br>

<div><div></div><div class="h5"><br>
&quot;Otto&quot; &lt;<a href="mailto:otto@ottodestruct.com">otto@ottodestruct.com</a>&gt; wrote:<br>
<br>
&gt;On Mon, Jan 3, 2011 at 5:29 AM, Pritam P Hans &lt;<a href="mailto:pritam.hans@gmail.com">pritam.hans@gmail.com</a>&gt;<br>
&gt;wrote:<br>
&gt;&gt; Hi friends,<br>
&gt;&gt;<br>
&gt;&gt; A very happy new year to all. One of my WP themes (Shaan --<br>
&gt;&gt; <a href="http://wordpress.org/extend/themes/shaan" target="_blank">http://wordpress.org/extend/themes/shaan</a>) has been recently included<br>
&gt;in the<br>
&gt;&gt; theme repository. I have received a two complaints regarding not<br>
&gt;being able<br>
&gt;&gt; to log in to WP after installing the theme. Is it an error with the<br>
&gt;theme?<br>
&gt;&gt; Can you please help me solve the issue?<br>
&gt;<br>
&gt;<br>
&gt;Your main problem is this:<br>
&gt;<br>
&gt;&lt;?php //Retrieve Theme Options Data<br>
&gt;global $options;<br>
&gt;$options = get_option(&#39;p2h_theme_options&#39;);<br>
&gt;?&gt;<br>
&gt;<br>
&gt;&lt;?php<br>
&gt;$functions_path = TEMPLATEPATH . &#39;/functions/&#39;;<br>
&gt;//Theme Options<br>
&gt;require_once ($functions_path . &#39;theme-options.php&#39;);<br>
&gt;...<br>
&gt;<br>
&gt;See how it has the ?&gt; then the empty line, then the &lt;?php again? That<br>
&gt;will cause it to output a single blank line, which will break the<br>
&gt;login process because of the cookies being unable to be sent.<br>
&gt;<br>
&gt;The functions.php file should never, ever, ever, ever produce output<br>
&gt;on inclusion.<br>
&gt;<br>
&gt;-Otto<br>
&gt;_______________________________________________<br>
&gt;theme-reviewers mailing list<br>
&gt;<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
<br>
</div></div><font color="#888888">--<br>
Mobile, wolf is mobile.<br>
<a href="Http://furcifer.net" target="_blank">Http://furcifer.net</a><br>
</font><div><div></div><div class="h5">_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br></div>