• Resolved BONE AGE DESIGN

    (@bone-age-design)


    After automatic updates to WP 4.2.4, the links to Plugins on all my websites go to PAGE NOT FOUND on the site. The Plugin editor still shows all the plugins, and everything works. Just no easy way to add or work with plugins.

    On one site that didn’t automatically update, the update link now goes to PAGE NOT FOUND on site.

    I can’t be the only one to whom this happened! What’s the mend?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    Do you still have the problem if you upgrade to 4.3? That was released over a week ago.

    Thread Starter BONE AGE DESIGN

    (@bone-age-design)

    Thanks, James.

    My upgrade link was also broken so I had to do my first manual upgrade. I uploaded 4.3 and replaced wp-admin and wp-includes folders plus all the php files in wp-content. Nothing changed. The plugins php is right where it’s supposed to be in wp-admin, but it still goes to PAGE NOT FOUND.

    funfloridakeys.com/wp-admin/plugins.php

    Erich

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    What is the contents of your .htaccess file?

    Thread Starter BONE AGE DESIGN

    (@bone-age-design)

    I don’t even know which one you mean. Here’s from the root directory:

    AddHandler application/x-httpd-php52 .php .php5 .php4 .php3

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

    # END WordPress

    Here’s from /wp-content/plugins/akismet

    # Only allow direct access to specific Web-available files.

    # Apache 2.2
    <IfModule !mod_authz_core.c>
    Order Deny,Allow
    Deny from all
    </IfModule>

    # Apache 2.4
    <IfModule mod_authz_core.c>
    Require all denied
    </IfModule>

    # Akismet CSS and JS
    <FilesMatch “^(form|akismet)\.(css|js)$”>
    <IfModule !mod_authz_core.c>
    Allow from all
    </IfModule>

    <IfModule mod_authz_core.c>
    Require all granted
    </IfModule>
    </FilesMatch>

    # Akismet images
    <FilesMatch “^(.+)\.(png|gif)$”>
    <IfModule !mod_authz_core.c>
    Allow from all
    </IfModule>

    <IfModule mod_authz_core.c>
    Require all granted
    </IfModule>
    </FilesMatch>

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    I don’t see any problems there, this is very odd.

    Have you asked your hosting provider about this?

    Thread Starter BONE AGE DESIGN

    (@bone-age-design)

    Wow, I did not see this as a hosting issue! They had to update my php files!?

    At least I learned how to do a manual update!

    THANKS, JAMES HUFF!

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    You’re welcome!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Plugin page missing after 4.2.4 update’ is closed to new replies.