Hi,
I've searched the forum and found only dead ends, so i'm posting specifically what my problem is.
I've tried enabling paging on my category.php page:
<?php
global $query_string;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts( $query_string . "&contenttype=article&showposts=4&paged=$paged" );
?>
(contenttype is a custom taxonomy BTW)
For some reason though when I click the 'previous posts' link it gives me a 'Not Found' error from my 404.php page.
So far i've tried reseting my permalinks back to the default with no success.
What is strange is that if I try to use the '&paged=' param in the url it sends me to the 404 page. I'm not sure why this is.
My current theme is the Canvas theme.
Any suggestions on how to remedy this are greatly appreciated!
EDIT: Just tried to add &paged=1 and it did work. Anything greater than one gives me the errors i'm describing above.