I have one category for which I need to reverse the post order so that they appear ini chronological order - I did this by creating a template page adding this line before the Loop:
<?php query_posts('cat=8&order_by=date&order=ASC'); ?>
However, since there are more posts than can appear on one page, the navigational links appear at the bottom, but do not work correctly. One the first page, I only get "previous entries", which is supposed to go to page two, and it does indeed load what it thinks is page 2, but it's really the same page again. At this point it has both links (previous entries and next entries) but both links just keep loading the same 10 posts - it never goes to what would be the next 10 posts in order.
Any suggestions?