<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: Some people can't comment - get blank wp-comments-post.php page</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: Some people can't comment - get blank wp-comments-post.php page</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 09:34:34 +0000</pubDate>

<item>
<title>danmld on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1280356</link>
<pubDate>Fri, 13 Nov 2009 17:54:09 +0000</pubDate>
<dc:creator>danmld</dc:creator>
<guid isPermaLink="false">1280356@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i had the same problem.. in explorer&#60;/p&#62;
&#60;p&#62;into the wufoo.js edit this lines:&#60;/p&#62;
&#60;p&#62;//var activeForm = document.getElementsByTagName('form')[0];&#60;br /&#62;
//addEvent(activeForm, 'submit', disableSubmitButton);&#60;/p&#62;
&#60;p&#62;it works fine now
&#60;/p&#62;</description>
</item>
<item>
<title>liuxyon on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1266680</link>
<pubDate>Mon, 02 Nov 2009 02:12:48 +0000</pubDate>
<dc:creator>liuxyon</dc:creator>
<guid isPermaLink="false">1266680@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;davesnothere&#60;br /&#62;
Member&#60;br /&#62;
Posted 7 months ago #&#60;br /&#62;
Probably not the best solution, but if this is a showstopper -- most likely is ;) -- and you need a workable hack, here's what worked for me:&#60;/p&#62;
&#60;p&#62;1. open wp-comments-post.php (this is in the wordpress root.)&#60;br /&#62;
2. at the bottom, line 88 for me (wp 2.7), comment out wp_redirect($location);&#60;br /&#62;
3. replace it with header(&#34;Location:$location&#34;);&#60;/p&#62;
&#60;p&#62;So, you should have this at the end:&#60;/p&#62;
&#60;p&#62;#wp_redirect($location);&#60;br /&#62;
header(&#34;Location:$location&#34;);CAUTION, this most likely will not survive an update and will have to be redone.&#60;/p&#62;
&#60;p&#62;Anyone know where the wp_redirect function lives?
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;OK. the way has may fix in WP2.8.5&#60;/p&#62;
&#60;p&#62;Have you find better others ways?
&#60;/p&#62;</description>
</item>
<item>
<title>nublooo on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1232299</link>
<pubDate>Fri, 02 Oct 2009 02:39:14 +0000</pubDate>
<dc:creator>nublooo</dc:creator>
<guid isPermaLink="false">1232299@http://wordpress.org/support/</guid>
<description>&#60;p&#62;This problem can occur when you are logged in to WP as an administrator and are viewing a post that is not published, but has the post_status set as a draft. This, combined with custom permalinks being set for posts (such as /%category%/%postname%), can cause wp-comments-post.php to go blank. I know this because I too have stared at the blank screen and didn't know why the hell it would do that.&#60;/p&#62;
&#60;p&#62;There are quite a few themes which e.g. display five random posts in the sidebar or footer (hardcoded widget), and where the post's status isn't checked prior to retrieving it from the database. I think this might be the issue for a lot of you who posted here - scenario: you are logged in and view a post. Then you log out of WP in one browser tab, but don't refresh the post in the other tab. When you try to post a comment like that, your &#34;logged&#34; cookie has already been nuked and you wouldn't be seeing the post (draft) in the first place. That is why wp-comments-post.php ends up not being able to process the comment.&#60;/p&#62;
&#60;p&#62;I hope this helps some of you.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1167297</link>
<pubDate>Fri, 07 Aug 2009 22:59:33 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1167297@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For those who posted on my blog I have NO idea how it fixed its self. I updated my blog to the new version of Wordpress and the issue corrected its self. &#60;/p&#62;
&#60;p&#62;Every now and then I get the SAME problem for a week and then it goes away. I am getting to frustrated with WP.
&#60;/p&#62;</description>
</item>
<item>
<title>h4xnoodle on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1154360</link>
<pubDate>Tue, 28 Jul 2009 19:02:58 +0000</pubDate>
<dc:creator>h4xnoodle</dc:creator>
<guid isPermaLink="false">1154360@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When I was making my comment form, I disregarded the comment_id_fields() function as it seemed to only be for the fancy javascript stuff I wasn't interested in. Upon closer inspection, it's incredibly important to the functionality of the comment for.&#60;/p&#62;
&#60;p&#62;I added a comment_id_fields() before the end of the form tag, and my comment form suddenly works, and does not redirect me to wp-comments-post as a blank page. &#60;/p&#62;
&#60;p&#62;If you read: &#60;a href=&#34;http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7/Enhanced_Comment_Display&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7/Enhanced_Comment_Display&#60;/a&#62;, it will tell you that comment_id_fields() serves to let the wp-comments-post file know what to do with your input by providing the post ID and parent comment (for those with threading).
&#60;/p&#62;</description>
</item>
<item>
<title>justinmyoung on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1150564</link>
<pubDate>Sat, 25 Jul 2009 04:26:23 +0000</pubDate>
<dc:creator>justinmyoung</dc:creator>
<guid isPermaLink="false">1150564@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm having the same trouble, except only in a new page I created...the single.php page is working fine.  but when I attempt to use the &#38;lt;?php comments_template(); ?&#38;gt; on a page I created, it goes to a blank page...
&#60;/p&#62;</description>
</item>
<item>
<title>bsmooth on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1143453</link>
<pubDate>Sun, 19 Jul 2009 06:34:34 +0000</pubDate>
<dc:creator>bsmooth</dc:creator>
<guid isPermaLink="false">1143453@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I encountered the same problem while upgrading a theme for threaded comments capability.&#60;/p&#62;
&#60;p&#62;Then I moved the &#60;/p&#62;
&#60;p&#62;&#38;lt;?php comment_id_fields(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;after the submit buttons and before &#38;lt;/form&#38;gt; and it worked fine.
&#60;/p&#62;</description>
</item>
<item>
<title>Cool Free Games on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1141770</link>
<pubDate>Fri, 17 Jul 2009 14:50:20 +0000</pubDate>
<dc:creator>Cool Free Games</dc:creator>
<guid isPermaLink="false">1141770@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have noticed this problem a lot of websites, however i haven't had any problems with my wordpress installation... &#60;/p&#62;
&#60;p&#62;Perhaps its some plugins that cause the blank page to appear... Or then again perhaps the theme that you've installed modified something in comment posting... be sure to check if its some spam comment filtering plugin that stops bots in their way that is reacting by putting out a blank page or it is the theme... &#60;/p&#62;
&#60;p&#62;Try removing all or installing some new things... If i get the problem on my blog later on and i resolve it, i will let you know...&#60;/p&#62;
&#60;p&#62;Hope this helps...
&#60;/p&#62;</description>
</item>
<item>
<title>samboll on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1124710</link>
<pubDate>Fri, 03 Jul 2009 11:15:20 +0000</pubDate>
<dc:creator>samboll</dc:creator>
<guid isPermaLink="false">1124710@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;This particular thread was started 4 months ago and is still unresolved. Need I ask again?
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;hardly anyone comes back and resolves the threads they start and you have jumped in the middle of a thread that is sort of old&#60;br /&#62;
why didn't you start your own thread?&#60;br /&#62;
Also as this is volunteers only - your gripes are grating to us that spend a lot of time trying to help. If wordpress does not work for you - use something else.&#60;br /&#62;
If you want to be patient and ask for help instead of thinking your problem is paramount it may happen.&#60;br /&#62;
Almost 1.5 million downloads of 2.8 and way less than 1% have problems sort of belies your - &#34;this is a widespread problem&#34; argument.&#60;/p&#62;
&#60;p&#62;Now if you really want help - start a thread with a concise explanation of problem and things you have done to deal with it.
&#60;/p&#62;</description>
</item>
<item>
<title>robbaker on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1124444</link>
<pubDate>Fri, 03 Jul 2009 02:11:09 +0000</pubDate>
<dc:creator>robbaker</dc:creator>
<guid isPermaLink="false">1124444@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Wow. Okay, first I want to make it clear that I'm not trying to knock any of the members here...apparently, there are many of us in the same boat. I also understand that this is a free program, so I'm not trying to make any undo demands here&#60;/p&#62;
&#60;p&#62;but...&#60;/p&#62;
&#60;p&#62;This is where I was directed for support. Where the hell is the support on this issue? I have seen this particular bug popping up on more and more blogs by the day. Blogs that I used to comment regularly on now no longer show anything but a blank page when I attempt to leave a comment. I have the same problem on my own blog. Some visitors can leave comments, others can not. This is very frustrating from both ends, as an admin of my own blog and as a visitor of other blogs.&#60;/p&#62;
&#60;p&#62;This seems like a pretty big bug and so widespread that you would think someone who has their hands in the project could help to resolve. I have searched this &#34;support&#34; forum and am finally frustrated enough to quit searching. All I can find on here is post after post &#34;Not resolved.&#34; I ask again. Where the hell is the support? &#60;/p&#62;
&#60;p&#62;Someone with some knowledge of the problem should lend a hand to help resolve this issue once and for all. Either that or maybe just take the easier road and rename this forum the &#34;Gripe about your problem and get no support&#34; forum. But for crying out loud, let's put this in perspective here. This particular thread was started 4 months ago and is still unresolved. Need I ask again?&#60;/p&#62;
&#60;p&#62;If an administrator or a moderator cannot help me to resolve this issue, can someone please at least tell me where I can go to get support?
&#60;/p&#62;</description>
</item>
<item>
<title>rafikmassoud on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1076770</link>
<pubDate>Mon, 18 May 2009 05:58:24 +0000</pubDate>
<dc:creator>rafikmassoud</dc:creator>
<guid isPermaLink="false">1076770@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i was having the same problem. found this and solved my problem. thought it might help:&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/support/topic/228247&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/228247&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kavitamm on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1075283</link>
<pubDate>Fri, 15 May 2009 21:34:55 +0000</pubDate>
<dc:creator>kavitamm</dc:creator>
<guid isPermaLink="false">1075283@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have same problem as Deceth, I can not comment while logged in. RunningSpirit and Deceth, did you find out why this is happening.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1035654</link>
<pubDate>Fri, 03 Apr 2009 16:02:24 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1035654@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have the opposite problem. I can comment logged in but can't comment when I am logged out.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1027340</link>
<pubDate>Thu, 26 Mar 2009 14:56:01 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1027340@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I also renamed comments.php in my theme's folder and now when I try to comment it keeps telling me that my e-mail isn't vaild even through I know it is.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1027338</link>
<pubDate>Thu, 26 Mar 2009 14:54:32 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1027338@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I tried doing what you suggested and it still comes up with a blank page.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.unique-honor.net/wp-comments-post.php&#34; rel=&#34;nofollow&#34;&#62;http://www.unique-honor.net/wp-comments-post.php&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1027331</link>
<pubDate>Thu, 26 Mar 2009 14:51:11 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1027331@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks for the suggestions I'm off to try them out!
&#60;/p&#62;</description>
</item>
<item>
<title>t31os on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1021640</link>
<pubDate>Fri, 20 Mar 2009 18:08:14 +0000</pubDate>
<dc:creator>t31os</dc:creator>
<guid isPermaLink="false">1021640@http://wordpress.org/support/</guid>
<description>&#60;p&#62;wp-includes\pluggable.php&#60;/p&#62;
&#60;p&#62;Line 834
&#60;/p&#62;</description>
</item>
<item>
<title>davesnothere on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1021457</link>
<pubDate>Fri, 20 Mar 2009 15:46:50 +0000</pubDate>
<dc:creator>davesnothere</dc:creator>
<guid isPermaLink="false">1021457@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Probably not the best solution, but if this is a showstopper -- most likely is ;) -- and you need a workable hack, here's what worked for me:&#60;/p&#62;
&#60;p&#62;1. open wp-comments-post.php (this is in the wordpress root.)&#60;br /&#62;
2. at the bottom, line 88 for me (wp 2.7), comment out &#60;code&#62;wp_redirect($location);&#60;/code&#62;&#60;br /&#62;
3. replace it with &#60;code&#62;header(&#38;quot;Location:$location&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So, you should have this at the end:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#wp_redirect($location);
header(&#38;quot;Location:$location&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;CAUTION, this most likely will not survive an update and will have to be redone.&#60;/p&#62;
&#60;p&#62;Anyone know where the wp_redirect function lives?
&#60;/p&#62;</description>
</item>
<item>
<title>t31os on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1021456</link>
<pubDate>Fri, 20 Mar 2009 15:46:34 +0000</pubDate>
<dc:creator>t31os</dc:creator>
<guid isPermaLink="false">1021456@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Seems to me that the comment form is the problem...&#60;/p&#62;
&#60;p&#62;If you have a comments.php in your theme, try just renaming it temporarily so it defaults to the default themes comments.php &#60;/p&#62;
&#60;p&#62;If the problem goes away then you know where the problem is...
&#60;/p&#62;</description>
</item>
<item>
<title>davesnothere on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1021412</link>
<pubDate>Fri, 20 Mar 2009 15:07:29 +0000</pubDate>
<dc:creator>davesnothere</dc:creator>
<guid isPermaLink="false">1021412@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've got the same issue. Things work fine on my development box, but not on the clients. Same WP install, 2.7
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1018614</link>
<pubDate>Tue, 17 Mar 2009 20:24:22 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1018614@http://wordpress.org/support/</guid>
<description>&#60;p&#62;bump. Can someone PLEASE help me figure this out?&#60;/p&#62;
&#60;p&#62;I've checked the page and it's there. There doesn't seem to be anything missing from the file!
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1008263</link>
<pubDate>Sat, 07 Mar 2009 14:55:47 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1008263@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I checked the file and it is there.
&#60;/p&#62;</description>
</item>
<item>
<title>dlmfisher on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1005765</link>
<pubDate>Thu, 05 Mar 2009 00:42:11 +0000</pubDate>
<dc:creator>dlmfisher</dc:creator>
<guid isPermaLink="false">1005765@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I think a file is missing from your install. I emailed you about it using the email address listed on your site yesterday or the day before.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1005745</link>
<pubDate>Thu, 05 Mar 2009 00:11:06 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1005745@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anyone at all?
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1002250</link>
<pubDate>Sun, 01 Mar 2009 21:41:59 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1002250@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can anyone help me?
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1001861</link>
<pubDate>Sun, 01 Mar 2009 11:47:29 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1001861@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Yes you can see the comment block however if you try to leave a comment it takes you to a  blank page and the comment won't show up.
&#60;/p&#62;</description>
</item>
<item>
<title>dlmfisher on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1001636</link>
<pubDate>Sun, 01 Mar 2009 04:19:47 +0000</pubDate>
<dc:creator>dlmfisher</dc:creator>
<guid isPermaLink="false">1001636@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I looked at your site and see no problems. I click on comment and see the post and the comment block.
&#60;/p&#62;</description>
</item>
<item>
<title>RunningSpirit on "Some people can't comment - get blank wp-comments-post.php page"</title>
<link>http://wordpress.org/support/topic/248522#post-1001547</link>
<pubDate>Sun, 01 Mar 2009 01:33:32 +0000</pubDate>
<dc:creator>RunningSpirit</dc:creator>
<guid isPermaLink="false">1001547@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've been having a problem with my comments since January. For some reason one day they just stopped working.&#60;/p&#62;
&#60;p&#62;If I log into the admin panel I can comment on my own posts. However if I log out and try to leave a comment I get a blank wp-comments-post.php page. I have tried to re-install version 2.7.1 to see if that helped but it didn't. &#60;/p&#62;
&#60;p&#62;Can anyone help?&#60;br /&#62;
My blog url is - &#60;a href=&#34;http://www.unique-honor.net/&#34; rel=&#34;nofollow&#34;&#62;http://www.unique-honor.net/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
