2 replies
  • WEB DESIGN
  • |
I just installed a premium plugin on a client's site and now all the links 404.. I deactivated it and tried deleting the files but Wordpress says it can't delete them all... the site still 404's on all links.

This plugin works fine on all my own sites.

Any ideas what I can do? Is it possible the permalinks have become corrupted?
#needed #urgent
  • Profile picture of the author carleywatson
    you can do it uninstall. this plugin is not a popular plugin.
    {{ DiscussionBoard.errors[7116386].message }}
  • Profile picture of the author dwoods
    Sounds like the plugin might have goofed with the .htaccess file.
    Try copying the following into the .htaccess file that's in the root folder of the wordpress install.
    BE SURE TO MAKE A BACKUP COPY OF THE .HTACCESS FILE BEFORE MAKING THIS CHANGE!
    Code:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    {{ DiscussionBoard.errors[7117390].message }}

Trending Topics