Support » Fixing WordPress » WP-Admin Loading Page

Viewing 5 replies - 1 through 5 (of 5 total)
  • I’m having a similar prob. My admin is coming up as my webpage. Wonder if it’s a host problem. I’m using Hostgator.

    Doug

    I had been having the same problem. I solved it by adding this code to my .htaccess

    <Files index-extra.php>
    SecFilterInheritance Off
    </Files>

    Thread Starter cpoteet

    (@cpoteet)

    Thanks! That did it, but I wonder why it only happened in one of my instances. Odd.

    Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    The SecFilterInheritance Off bit turns off mod_security, which is broken. No easy way around it, unfortunately, mod_security doesn’t like AJAX.

    I recommend using this in your .htaccess:

    <IfModule mod_security.c>
    SecFilterEngine Off
    </IfModule>

    This completely turns off the rather useless and annoying mod_security, if your host uses it.

    Thread Starter cpoteet

    (@cpoteet)

    Thank you. Yeah it died when I tried to delete a comment for instance (the Ajax call).

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘WP-Admin Loading Page’ is closed to new replies.