• Hello, I just upgraded to the latest version of wordpress and now when I click through to go to the 2nd page of my blog (there are only 2 pages), I get a 404 error, page not found. I’m super new to wordpress, so not really sure where to even start looking to resolve this issue. Any help would be greatly appreciated!

    Thanks,
    Mikaela

Viewing 12 replies - 16 through 27 (of 27 total)
  • I have the same problem. It’s WP 3.4 that’s causing the 404 errors on pages beyond page 1. My 404 error appears on page 4. Hopefully they’ll have a fix for it soon, as it seems to be affecting a lot of people.

    Thread Starter mikaelajoy

    (@mikaelajoy)

    Oh that’s good to know! Thank you, I’ll keep my eyes up for a fix.

    I have a problem to install wordpress ..
    it shows

    “Forbidden”

    You don’t have permission to access /wordpress/wp-admin/setup-config.php on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.”

    How Can I solve it

    babu_fu, I think you should make a new topic regarding your issue. It’s not nice to hijack a thread.

    I found a solution to this issue. The solution comes from a previous topic.

    You need to add this to the theme’s functions.php file:

    function my_post_queries( $query ) {
    // not an admin page and it is the main query
    if (!is_admin() && $query->is_main_query()){
    if(is_home()){
    $query->set(‘posts_per_page’, 1);
    }
    }
    }
    add_action( ‘pre_get_posts’, ‘my_post_queries’ );

    It worked for me, and now my page 4 is showing up fine. Good luck!

    I have the same issue.

    I am also having the same issue. When I click NEXT PAGE on a category with more than one page I get a 404 error.

    If I use the default permalink structure it seems to work fine though but I want to use custom permalinks for SEO purposes.

    UPDATE: The issue seems to only happen when I use the /%category%/%postname%/ permalink structure and works with all other permalink structures.

    Anyone know a fix for this?

    I have a solution for at least some of you. I just started deactivating plugins one by one to see if any were the cause. Very first plugin I deactivated resolved the 404 on Blog pages issue.

    That plugin is WP Super Cache. Go try it – just deactivate, not delete.

    Probably useful if you report back so WP Super Cache people ca get a handle on extent of issue.

    I’m experiencing the same issue and have implemented near on all code examples and modified versions of them with no luck.

    I’ve posted the details on this post

    hi I have pronlem instaling word press I guess I ve done every thing exactly like the documantation said now I want to run instal.php I get this msg :

    Not Found
    The requested URL /info.php was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2 Server at 87.247.179.95 Port 80
    Im have no experience in web design or so … can anybody help me please …..

    Thread Starter mikaelajoy

    (@mikaelajoy)

    Initially, my issue had fixed itself when I added a new post, but now that I’m on to a 3rd page, it’s rearing its ugly head again.

    I looked into the WP Super Cache plugin and it’s already deactivated. I also tried adding the extra code to the functions.php file suggested above. Nothing seems to work this time (not even adding a new post).

    Back to the drawing board, I suppose.

    Thanks again for all the help & suggestions!

    hi
    this is what I v found .,… there was no problem at all I was just writting the urls wrong …. the url you must use is exactly what is written in docs … I did so and so far site is up and no problem ….

    Real quick, I had a similar problem and after a lot of Googling, hacking, trying, retrying, and a bit of swearing, I figured out the cause in my case.

    I had created the website with a section of pages without a parent. Then, we decided to move the entire section under a parent to organize the site better. A couple of weeks after launch, I got ONE report of a user with IE 8 that they couldn’t get to any of the pages that had been moved.

    Changing the permalinks from custom (/%category%/%postname%/) to Default worked but was undesirable. Eventually, I moved the entire section under “No Parent” again and it solved the problem.

    Just thought I would pass this information on as a possible solution for others in the same situation. Good luck, and thanks for the great discussion that helped me solve my problem!

Viewing 12 replies - 16 through 27 (of 27 total)
  • The topic ‘404 error on 2nd page of blog after 3.4 upgrade’ is closed to new replies.