Link to home
Start Free TrialLog in
Avatar of mikegeorge2
mikegeorge2

asked on

Wordress Pagination Problem

I am a wreck right now... I just put so many hours tweaking this theme.

http://azwm.com

First, let me say this: I have searched the forum for answers,
I have disabled the WP-Navi plug-in,
I have set my permalinks to default,
I have changed category names and more...

Whether I use page-navi plug-in or not, the same thing happens:

As soon as pagination gets to the LAST page for a category, it gets a 404 error.

So, http://azwm.com/category/mortgage-questions/page/2/

works fine. But there are 3 pages.

http://azwm.com/category/mortgage-questions/page/3/ brings me to a dead link / 404 error.

In the category mortgage-news, there are two pages of posts. So, of course, this works: http://azwm.com/news/mortgage-news/

But this is dead:
http://azwm.com/news/mortgage-news/page/2/

I would be SO GRATEFUL for an answer. Thank you in advance.
Avatar of Sudaraka Wijesinghe
Sudaraka Wijesinghe
Flag of Sri Lanka image

It's possible that your theme or plugin code might have some thing that affect the  internal page number calculation or the main loop variables. Maybe a custom query?
Avatar of mikegeorge2
mikegeorge2

ASKER

The only plug-in that I feel could be a problem is called WP Page-Navi. However, when I disabled the plug-in, I still had the same problem.
Try changing the theme entirely, maybe to the default twentyten and see if the problem goes away. If so, the problem should be theme related and you will need to check the post/loop related template files.
I believe it is your permalink structure.

If you go to Settings>Permalinks, try clicking on the default settings and then update. This will let you see if ti is in fact a permalink problem. If it fixes it, but you would still like to use custom permalinks, let me know and I will help you troubleshoot why it isn't working.
Thanks for responding guys / gals.

@jeremyjared74: I changed the permalink structure to "default" and it is still doing it... So frustrated!
@jeremyjared74: Since I changed the permalinks and it did not fix the problem at all, I went back to my old structure.
Have you tried turning on WordPress debug mode?

You won't want to leave it on, but it may help you troubleshoot the problem.

Here is how:
Add this to your WP-config file:
if ( isset($_GET['debug']) && $_GET['debug'] == 'debug')
  define('WP_DEBUG', true);

Open in new window

Next you can check any page by adding "?debug=debug".
EXAMPLE:
http://azwm.com/category/mortgage-questions/page/2/?debug=debug

Open in new window


Alternatively you can use the WordPress plugin that the WordPress theme repository uses when allowing or rejecting themes:
http://wordpress.org/extend/plugins/theme-check/
I did exactly what you posted and now my whole site is down. I don't know how to fix it or what to do. I copied and pasted the code exactly.

Any ideas? Thanks.
Okay, I got it working again. It had something to do with comments not being commented out of the wp-config file because I used a text editor and it affected word wrap. I opened the CSS in Dreamweaver and hit return a few times and everything is back up.

So I am just going to add:

if ( isset($_GET['debug']) && $_GET['debug'] == 'debug')
  define('WP_DEBUG', true);

anywhere in the code, right?
Okay, I did it... But no bugs are showing up... Not that I can see.

Nothing is showing up actually. Just another 404 error.

http://azwm.com/news/mortgage-questions/page/3/?debug=debug

If I go to page 2, or "the second from the last page", I still do not have a problem, but I still don't see bug information.

http://azwm.com/news/mortgage-questions/page/2/?debug=debug
I just wanted to make sure...

Do you have enough articles or posts for there to be a third page?
maybe be the calculation of number of available pages is wrong?
Starting from 1 instead of 0 like things...
Right now, there are 12 posts under the category "mortgage questions." There are 5 posts on page 1 and page 2 and then page 3 is 404 not found.

This is very unusual right? It seems like there would be a simple solution.
ASKER CERTIFIED SOLUTION
Avatar of gwkg
gwkg
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial