Wordpress comment error, help needed

Discussion in 'WordPress' started by surya, Jan 11, 2009.

  1. #1
    this is my blog
    http://mobiletimes.in
    i can't post comments.. i get an error..
    can someone help me out with it?
    thanks
     
    surya, Jan 11, 2009 IP
  2. Big0ne

    Big0ne Well-Known Member

    Messages:
    2,615
    Likes Received:
    81
    Best Answers:
    0
    Trophy Points:
    165
    #2
    I've tried. Got an error.

    I assume your comments.php is not coded well.
     
    Big0ne, Jan 12, 2009 IP
  3. surya

    surya Peon

    Messages:
    720
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #3
    @bigone
    any idea of how to resolve it?
     
    surya, Jan 12, 2009 IP
  4. Big0ne

    Big0ne Well-Known Member

    Messages:
    2,615
    Likes Received:
    81
    Best Answers:
    0
    Trophy Points:
    165
    #4
    Yes, if you show me entire comments.php code.

    It's located in your current theme folder.
     
    Big0ne, Jan 12, 2009 IP
  5. surya

    surya Peon

    Messages:
    720
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #5
    ofcourse, here ya go
    <?php // Do not delete these lines
    	if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    		die ('Please do not load this page directly. Thanks!');
    
    	if (!empty($post->post_password)) { // if there's a password
    		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
    			?>
    
    			<p>This post is password protected. Enter the password to view comments.<p>
    
    			<?php
    			return;
    		}
    	}
    
    	/* This variable is for alternating comment background */
    	$oddcomment = 'comment';
    ?>
    
    <!-- You can start editing here. -->
    
    <?php if ($comments) : ?>
    
    <h2><?php comments_number('No Comments', 'One Comment', '% Comments' );?></h2>
    
    <?php foreach ($comments as $comment) : ?>
    
    					<div class="comment wrap"  id="comment-<?php comment_ID() ?>">
    						<div class="col-left">
    							<?php if (function_exists('gravatar')) { ?>
    							<img src="<?php gravatar('X', '48'); ?>" alt="<?php //_e('Gravatar'); ?>" />
    							<?php } ?>
    							<p><?php comment_author_link() ?><br /></p>
    							<p><i> <?php comment_date('M jS, Y'); ?></i><br /><?php edit_comment_link('Edit comment', '', ''); ?></p>
    						</div>
    						<div class="col-right">
    							<?php comment_text() ?>
    							<?php if ($comment->comment_approved == '0') : ?>
    							<p><em>Your comment is awaiting moderation.</em></p>
    							<?php endif; ?>
    						</div>
    					</div>
    
    	<?php /* Changes every other comment to a different class */
    		if ('comment' == $oddcomment) $oddcomment = 'alt';
    		else $oddcomment = 'comment';
    	?>
    
    	<?php endforeach; /* end for each comment */ ?>
    	
    
     <?php else : // this is displayed if there are no comments so far ?>
    
    	<?php if ('open' == $post->comment_status) : ?>
    		<!-- If comments are open, but there are no comments. -->
    
    	 <?php else : // comments are closed ?>
    		<!-- If comments are closed. -->
    		<!--<p class="nocomments">Comments are closed.</p>-->
    
    	<?php endif; ?>
    <?php endif; ?>
    
    
    <?php if ('open' == $post->comment_status) : ?>
    
    
    <h2>Leave a Comment</h2>
    
    
    <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
    <h2>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</h2>
    <?php else : ?>
    
    
    
    <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
    <div>
    <?php if ( $user_ID ) : ?>
    <p class="lc_logged">Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout</a></p>
    <?php else : ?>
    
    <label for="author" class="wrap"><input type="text" id="author" value="<?php echo $comment_author; ?>" size="27" tabindex="1" /> <span>Name <?php if ($req) echo "(required)"; ?></span></label>
    <label for="email" class="wrap"><input type="text" id="email" value="<?php echo $comment_author_email; ?>" size="27" tabindex="2" /> <span>Email <?php if ($req) echo "(required)"; ?> - will not be published</span></label>
    <label for="url" class="wrap"><input type="text" id="url" value="<?php echo $comment_author_url; ?>" size="27" tabindex="3" /> <span>Website (optional)</span></label>
    
    <?php endif; ?>
    
    <!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
    
    <textarea name="comment" rows="10" cols="50" tabindex="4"></textarea> 
    
    <input name="submit" type="image" id="submit" tabindex="5" src="<?php bloginfo('template_directory'); ?>/images/img_leave_comment.gif" />
    
    <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
    
    <?php do_action('comment_form', $post->ID); ?>
    </div>
    </form>
    
    
    <?php endif; // If registration required and not logged in ?>
    
    <?php endif; // if you delete this the sky will fall on your head ?>
    
    
    Code (markup):
     
    surya, Jan 12, 2009 IP
  6. surya

    surya Peon

    Messages:
    720
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #6
    guys.. anyone?
     
    surya, Jan 16, 2009 IP