How do I fix my Dashboard?
-
I just updated my sites to WordPress 4.0
After doing so, clicking on Dashboard or Updates in my admin would bring me to a 404 page.
I found this solution and applied it.
It solved the issue on one site. On the other site, it solved the problem for the Updates link.
But when I click on dashboard, I still get a 404. If I remove the ‘index.php’ from the link, then it goes to the correct dashboard page.
The .htaccess file for the install directory reads:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /portfolio/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /portfolio/index.php [L]
</IfModule># END WordPress
Can anyone tell me if there is something I should be changing to fix the problem?
- The topic ‘How do I fix my Dashboard?’ is closed to new replies.