Quote:
Originally Posted by _Lush_
easy fix just ssh into your site and grep -nr komexx.net /www/wordpress/wp-content
or whatever the path to your wp is on your server and find what plugin or theme contains instances of this domain and delete the whole plugin or theme.
|
I suggest adding -i (case insensitive compare) to the grep options, so it catches mixed capitalisation instances like "KoMexX.net" too.
grep -nri komexx.net /path/to/wp-content/
Also it's possible that the plugin has stashed a file outside of that directory, or obfuscated the name so that a simple text search won't find it (eg $domain = "kom"."exx".".net")