Unable to access folders in same level as wordpress installation

It’s not clear from the .htaccess files you’ve posted why you can’t access files/folders outside of your WordPress installation (inside the /websiteWP subdirectory). In fact, you shouldn’t need to add specific exceptions in order to access physical files, since these directives shouldn’t apply to physical files. However, your .htaccess files are misconfigured… If the WordPress … Read more

Sorry, you are not allowed to access this page dashboard

Try to deactivate all your activated plugins 🙂 mainly your security plugins installed like wordfence. Check your .htaccess file, and your .htaccess file should look like – ‘ # 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 … Read more

Strange glyphs code error

If there is anything printed above the logo, then in most cases it’s caused by some errors in PHP. So somewhere in your theme or in one of plugins there is some bad code that is causing this. And these characters suggest that they’re some badly converted UTF characters or some other characters that are … Read more