Hi,
I have a rather large site running off of wordpress. We have about 2,000 posts so far. I've noticed that the archives pages do not show any posts. I've also noticed that if I go into the dashboard and filter the posts by month, I get zero results. However if I just browse through page by page all of the posts are there. Has anyone had this sort of problem before?
One quick note is that we are using a .htaccess file. I'll post its contents below. I'm not sure if it has anything to do with this issue, but wanted to at least mention it.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress