Hey gyes, I have a simmiliar problem :
I read all you had done here, but it does'n help in this particular case!
I dont have mine previos/next buttons on my main page, but only for a single post.
How can I add them to the main page?!
Here is the site:
http://www.myfilmchallenge.com/
and my index.php file:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<ul class="post">
<b>FRESH</b> / LATEST POSTS
<?php while (have_posts()) : the_post(); ?>
<li id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?>
<?php if ( function_exists('the_excerpt_reloaded')) :?>
<span>
<?php the_excerpt_reloaded(15, '', 'excerpt', FALSE, '[more]', FALSE, 1, TRUE); ?>
</span>
<?php endif; ?>
<?php endwhile; ?>
<p class="post"><?php next_posts_link('« Previous Entries') ?></p>
<p class="post"><?php previous_posts_link('Next Entries »') ?></p>
<?php else : ?>
<ul class="post">
<b>FOUR OH FOUR</b> / FILE NOT FOUND
Things change. What you're looking for has probably been moved, changed, delted or *gasp* lost. While you're here, though, why not have a look around?
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div><!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>