• Good Day… I would REALLY appreciate any help here. My comments are not posting.. I can see them in administration side of the wordpress application but they will not appear on my pages under ‘comments’ – IT IS DRIVING ME NUTS! ??

    I have been working on this for three days strait and can not resolve it…

    PLEASE HELP ME!

    <?php
    if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Access denied.');
    if (!empty($post->post_password))
    {
    	if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { ?>
    
    		<p class="nocomments"><?php _e('Enter your password to view comments.'); ?></p>
    
    	<?php
    		return;
    	}
    }
    ?>
    <h2 id="comments"><?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?></h2>
    <?php if ($comments) : ?>
    	<ol class="commentlist">
    		<?php foreach ($comments as $comment) : ?>
    			<li id="comment-<?php comment_ID() ?>">
    				<big><?php comment_author_link() ?></big>
    				<?php if ($comment->comment_approved == '0') : ?>
    					<span class="await_mod">Await Moderation</span>
    				<?php endif; ?>
    				<span class="comment_data"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F j, Y') ?> @ <?php comment_time() ?></a></span>
    				<?php comment_text() ?>
    			</li>
    		<?php endforeach; ?>
    	</ol>
    <?php endif; ?>
Viewing 10 replies - 16 through 25 (of 25 total)
  • Also make sure you try it once with no plugins active so that you can confirm it’s not a plugin issue.

    It sounds like a theme problem, but you never know.

    Hi There!
    I have just updated to wp-2.2.2 hoping this would solve my wp-comment-post.php not working problem… But is does not. I have activated and deactivated all plugins and changed to different themes but non of them work. This looks like a serieus problem in WP…
    It would be verry nice if someone would come up with a real (working) sulution…

    Just looked at my WP with IE and it say’s (after submitting a comment:
    ———:
    The page you are looking for cannot be displayed because the address is incorrect.

    Please try the following:

    If you typed the page address in the Address bar, check that it is entered correctly.

    Open the matthijs.aandewiel.nl home page and then look for links to the information you want.
    Click Search to look for information on the Internet.

    HTTP 405 – Resource not allowed
    Internet Explorer
    ————–:

    Normaly I use FireFox but FF only return with a blank page…

    TheWheel – instead of hijacking a barely related thread, you might have MUCH more success starting your own.

    Thread Starter l1ght3mup

    (@l1ght3mup)

    That you moshu… I have changed the register requirement…

    Thanks to anyone that can help, it’s been such a pain in the ass… I am to the point that i’m willing to pay someone but i can’t find anyone that knows wordpress…

    i have shut off all widgets…

    i can not find the darn post in the forums, but everyone else with this theme was able to fix their problem, i have even emailed them but no reply… the code i posted was the code that there was supposed to be a flaw in..

    thanks for any help guy/gals..

    [moderated]

    Thread Starter l1ght3mup

    (@l1ght3mup)

    i am still in need of help.

    I am having the same exact problems here and every time I find a post about it NOBODY has any ideas… has anyone figured this out yet?

    I just isolated the problem to be that I was trying to ’embed’ the WP install into an application which makes heavy use of session, authentication, and database calls.

    I am at the point where I know the file which is causing the conflict however it is basically the controller which initiates my database connection object so… I don’t know what to do now but I pretty much have to figure it out soon.

    clearly 3 posts about the same topic will help, especially when the last includes bumping something thats 10 months old.

    I found the answer:

    https://www.webmasterworld.com/forum88/5485.htm

    Simply – I did not include the 4th parameter in the mysql_connect() function which is a boolean ‘1’ which allows multiple database connections (like mine + WP’s)

    This solved my problem completely, hope this helps.

    Hi Dennis-
    Can you walk me through this a bit more? I’m new to self-hosting and don’t quite understand what to change?
    I would really appreciate the help!!
    THanks-
    Lisa

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘No Comments – Been Working on This For 3 Days’ is closed to new replies.