i have a problem with the page navigation, on the homepage of my website page navigation not working, when i click on page number 2 or 3 it says "Not found".
But in the categories page is working fine, only on the homepage gives this problem.
Actually im using the default permalinks.
Here is the website if you want to try and test it www.onstreaming.net
Here is the index:
<?php get_header(); ?>
<div id="content">
<?php
$postct = get_option('dion_postnum');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args=array('post_type' => 'videos','post_status'=> 'publish','posts_per_page' =>$postct,'caller_get_posts' =>1,'paged' =>$paged,);
query_posts($args);
if (have_posts()) : while (have_posts()) : the_post();
?>
<div class="box rounded <?php if (++$counter % 4 == 0) { echo "lastbox"; }?>" id="post-<?php the_ID(); ?>">
<?php require('postcover.php'); ?>
</div>
<?php endwhile; ?>
<div class="clear"></div>
<div id="navigation">
<?php
if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
?>
</div>
<?php wp_reset_query();?>
<?php else : ?>
<div class="title"><h2>Oops.. Nothing Found !</h2></div>
<div class="cover"> <p>I think what you are looking for is not here or it has been moved. Please try a different search..</p> </div>
<?php endif; ?>
</div>
<?php get_footer(); ?>
So i hope somebody can help me with this big problem, thanks a lot.