Support » Fixing WordPress » WordPress stuck on loading same page

  • My website seems to have a mind of it’s own lately where no matter what link you click on the navigational menu, wordpress loads the same page which is not the correct wordpress page/post. For example, if I click on “About Us”, wordpress will load “Our Services” page and then if I try to click on another page like “News”, the “Our Services” page loads again.

    The issue doesn’t occur every time but you can enter the site fine and navigate the menus find for a few seconds and then wordpress just gets a mind of it’s own and the menus start misbehaving.

    The address bar shows the correct URL (http://www.mysite.com/about) but the page that’s being loaded is of a different content.

    I’m using permalinks and the .htaccess has the correct content

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    I’ve also checked to make sure PHP 5 is loading apache 2 mod_rewrite module via the phpinfo page. I tried wipping out the .htaccess and updating it via the wordpress administration (ie Day and name to Month and name) but still the same issue.

    Apache 2 has for the directory “FollowSymLinks” and “AllowOverride All”:

    <DIRECTORY /var/www>
    OPTIONS  ExecCGI FollowSymLinks
    AllowOverride All
    </DIRECTORY>

    Does anyone else have any other suggestions as to the possible causes for this weirdness?

    Thanks,

    SW

Viewing 1 replies (of 1 total)
  • Have you tried:

    – deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    – switching to the default theme to rule out any theme-related problems?

Viewing 1 replies (of 1 total)
  • The topic ‘WordPress stuck on loading same page’ is closed to new replies.