madcaesar
Forum Replies Created
-
I’m having the same issues. Massive amounts of 404 not found. I looked at firebug and there is a problem in where iThemes Security is looking for files.
It’s looking here: https://www.mydomain.com/C:vhostsmydomain.comwp-contentpluginsbetter-wp-securitymodulesfreefile-change/js/admin-file-change-warning.js?ver=4002
Why is it doing this? Instead of just going to: https://www.mydomain.com/wp-contentpluginsbetter-wp-securitymodulesfreefile-change/js/admin-file-change-warning.js?ver=4002
It’s adding my root directory as well: C:pubvhostsmydomain.com so it’s having all kinds of problems.
Forum: Plugins
In reply to: [Preserved HTML Editor Markup] Forcing SSL Breaks PluginOk for anyone else running into this issue, I looked through the plugin code and found this line (309):
wp_enqueue_script('emc2-pm-admin-js', WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__))."admin.js?v=".$cachebuster);Change that line to this:
wp_enqueue_script('emc2-pm-admin-js', plugins_url().'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__))."admin.js?v=".$cachebuster);That will fix it. The problem is the use of WP_PLUGIN_URL. I hope plugin creator will fix this in his next update.