Bad domain name generated on admin side.
-
I have a wordpress website that’s adding two URLs to the admin side’s <head> that I can’t locate. In the list of <script> tags, it’s adding an “s” at the end of the domain like this:
<script type="text/javascript" src="https://domain.tlds?ver=1.7"></script> <script type="text/javascript" src="https://domain.tlds?ver=1.7"></script>
That should be “domain.tld” but these two lines are adding an s and then ?ver=1.7
This is slowing down page loads on the admin side as the domain “domain.tlds” is looked for but not found.
I have searched the entire file structure and a full database dump and cannot located the string “domain.tlds” anywhere. Something is obviously concatenating “domain.tld” and “s?ver=1.7” somewhere, but I cannot determine where.
I’ve looked at all plugins and themes and have found not that are version 1.7.
Where is the code that actually generated the <script> tags in the admin side? What could it be misreading?
- The topic ‘Bad domain name generated on admin side.’ is closed to new replies.