/tag/XXX only shows some posts tagged with XXX, I can see no relationship between all the posts that are missed, it seems totally random. I have tried saving them again, but no luck. I can't find anything related in the forum.
The code of my /tag page is:
<?php if (have_posts()) : ?>
<ul class='archive'>
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
(<?php the_date(); ?>)
</li>
<?php the_post(); ?>
<?php endwhile; ?>
</ul>
</div>