gweeks
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: menu arrow missingI’m not that familiar with unix permissions but I think 444 would prevent the code from getting injected again. See http://codex.ww.wp.xz.cn/Changing_File_Permissions
Forum: Fixing WordPress
In reply to: menu arrow missingnortonnj, I would check all those files for the injected php again and remove it if it’s back. You’ll also need to change the permissions of the affected files so that they can’t be modified. Otherwise the injected php will keep returning.
Forum: Fixing WordPress
In reply to: menu arrow missingUnfortunately this means your installation of WordPress has been hacked. Check the following files too and delete everything after
<?phpon the first line:index.php
wp-config.php
wp-admin/includes/template.php
wp-admin/index.php
wp-admin/network/index.php
wp-admin/user/index.php
wp-content/index.php
wp-content/plugins/index.php
wp-content/themes/index.php
wp-includes/functions.php
wp-includes/template.php
wp-includes/theme-compat/header.phpAfter doing this you’ll need to change the permissions on the WordPress files so that this won’t happen again.
Forum: Fixing WordPress
In reply to: menu arrow missingCheck the first line of your wp-config.php file. There might be a lot of blank spaces followed by injected php there.
Forum: Fixing WordPress
In reply to: menu arrow missingI manually edited /wp-admin/admin-header.php and added “<body>” in front of the body tag on line 173. Obviously this is just a bandaid but WordPress is now creating a body tag with the right class attribute and I can see the arrows again.
Forum: Fixing WordPress
In reply to: menu arrow missingIt turns out that the reason I can’t see the arrows is because the body tag of the page has no class attribute. This is causing the arrows not to appear along with other subtle CSS issues. It turns out that the body tags on all my WordPress pages are missing the class attribute. I’m not sure why yet. Reinstalling WordPress didn’t fix it.
Forum: Fixing WordPress
In reply to: menu arrow missingI’m having the same issue. I also tried reinstalling WordPress, deleting all plugins, and using a default theme.