Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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!

    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>

    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

Viewing 3 replies - 1 through 3 (of 3 total)