Having problems with paging

Correct me if I’m wrong.

I guess you use that code to custom display a category.

If that’s the case, right before this code:

<?php while (have_posts()) : the_post(); ?>

You will need to add query_posts():

<?php query_posts('cat={categoryID}&paged=' . $page); ?>