• I’m building my website using wordpress, for now I’m working on my computer (local using XAMPP), I was using 2.6.2 then I saw the new version and upgraded, now I have a few questions:

    1) in the admin panel (settings->discussion) I’ve checked “Break comments into pages” and set it to 6. I have a post that has 14 comments and wordpress just show all 14 of them under eachother without breaking it into pages.

    2) I can’t use permalinks cause when I change this and click on the title of an article in the homepage I get page not found. so I have to use the default settings, but one of the plugins I use won’t work unless you use the permalinks settings.

Viewing 8 replies - 1 through 8 (of 8 total)
  • 1) I don’t know.

    2) Do you have an htaccess file setup?

    For 1, do you use lots of plugins? If so try deactivating selectively.

    Thread Starter Christophe Debruel

    (@krike)

    yes I have htacces file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /deadly/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /deadly/index.php [L]
    </IfModule>
    
    # END WordPress

    yes and I have one specific for comments. I’ll deactivate it and see if it works then

    Thread Starter Christophe Debruel

    (@krike)

    I deactivated all plugins and I still have the problem

    Bummer! I’m of no more help here. 🙁

    Thread Starter Christophe Debruel

    (@krike)

    ah ok….

    well I’ll upload it to my website and see if I still have the problem.. maybe it’s the xampp thing.

    Thread Starter Christophe Debruel

    (@krike)

    ok permalinks are working on my website still have a problem with the comments tho…

    1) i use to have the same problem, in my case, i solve it with turning off paginated comments (i use it in my older version of wp), and i adapting the comments.php of my themes (i use cordobo green). wp 2.7 has a different way to run the comments loop.
    i just simply replace the comments loop with :

    <div class="navigation">
    		<div class="alignleft"><?php previous_comments_link() ?></div>
    		<div class="alignright"><?php next_comments_link() ?></div>
    	</div><br /><br />
    
    	<ol class="commentlist">
    	<?php wp_list_comments(); ?>
    	</ol>
    
    	<br /><div class="navigation">
    		<div class="alignleft"><?php previous_comments_link() ?></div>
    		<div class="alignright"><?php next_comments_link() ?></div>
    	</div>

    in my themes comments.php

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘comment pages & permalink problem’ is closed to new replies.