[Plugin: WP Security Scan] 404 error in user profile pages
-
Not obvious at first, but the WP Version css removal function is calling non-existent address causing a 404 record. It creates an incorrect link e.g.
https://www.website.com/usr/home/../../wp-content/plugins/wp-security-scan/js/remove_wp_version.js?ver=3.3.1
The
usr/home/../..
bit causing the problem. Maybe because you’re usingWP_PLUGIN_DIR
inlibs\function.php
line 201-202 instead ofplugin_dir_url('remove_wp_version.css', __FILE__)
andplugin_dir_url('remove_wp_version.js', __FILE__)
respectively, removing the initial slashes from the following quoted urls? However,remove_wp_version.css
doesn’t appear to exist in the css folder anyway.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: WP Security Scan] 404 error in user profile pages’ is closed to new replies.