• Resolved questions4wp

    (@questions4wordpress)


    I just upgraded to 3.7 on a couple of non-essential sites (cleared caches, disabled all plugins, backed up database + files, made sure none of the plugins are the ones mentioned in the Master List post), and for some reason now any WordPress files stored in /wp-admin/ are inaccessible.

    For instance, upon finishing the update, I click on the “Return to updates” page, which should bring me to mydomain.com/wp-admin/update-core.php, but when visiting that page, I get the standard WordPress 404 error page, with my site’s theme. Similarly, going back into the dashboard and clicking on the Plugins tab should bring me to mydomain.com/wp-admin/plugins.php, but instead I get the same 404 page.

    I can confirm that all the files are actually on the server (and are their most updated versions). Any advice?

Viewing 9 replies - 16 through 24 (of 24 total)
  • epicdiyom

    (@epicdiyom)

    Adding this line to .htaccess solved my problem, as well:

    AddHandler application/x-httpd-php5 .php

    It would be nice if future WordPress releases included a fix for this, because it took a while to stumble across this solution.

    embrownny

    (@embrownny)

    I have been searching high and low to find a resolution to this problem. I added that line of code to the .htaccess file but I’m still getting the Error-4o4 message on the archive page…https://www.mediastarpro.com/page/2/

    The home page is fine and all the other pages. But when you click and the “next” link from the homepage video gallery the Error-404 message still comes up. Any other ideas?

    Did I not put the
    AddHandler application/x-httpd-php5 .php in the right place?`

    Thank you!! I put this line at the top right below the # BEGIN line and it fixed the problem. Appreciate the help.

    SOLUTION

    Edit the .htaccess file in your ROOT (/) not WordPress folder (/public_html/) to force PHP 5.5 instead of 5.2

    CHANGE:

    # Use PHP52 as default
    AddHandler application/x-httpd-php52 .php

    TO:

    # Use PHP52 as default
    AddHandler application/x-httpd-php55 .php

    FINAL ANSWER! (;

    hy my site with php5.3 was working fine in localhost and in server as well but when i upgrade my wamp with php5.5.12 now my site is not working in localhost even i am just able to login in admin panel ie wp-admin and no tabs of admin panel is working they are just clickable and nothing displayed there i have also followed same sugeestions prvided by other here but still no luck can someone please help me

    my htaccess file is : # BEGIN WordPress

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

    when i changed it to:

    # BEGIN WordPress
    
    AddHandler application/x-httpd-php54.php
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /AlFerdous/admin/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /AlFerdous/admin/index.php [L]
    
    </IfModule>
    
    # END WordPress

    now its giving me error:

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator at [email protected] to inform them of the time this error occurred, and the actions you performed just before this error.

    More information about this error may be available in the server error log.
    Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80

    I had a same issue, thanks

    wp-admin side tabs are failed to work in php5.4 when i was using php5.3 with wordpress $wp_version = ‘3.3.2’; it was working fine while right now trying to use php5.4 with same wp version now my admin-panel links are not working

    If you require assistance then, as per the Forum Welcome, please post your own topic instead of tagging onto someone else’s topic.

    I am now closing this 6 month old, resolved, topic

Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘3.7 Upgrade Loses wp-admin/*.php Pages’ is closed to new replies.