Mobile app version of vmapp.org
Login or Join
Cugini213

: Why is there a DNS lookup from Bootstrap CDN that is no longer installed on my site? I am having a BIG problem. Most of the DNS lookups are suppose to be on the following site: http://gtmetrix.com/reports/ytadvisers.com/6

@Cugini213

Posted in: #Bootstrap #Cdn #Plugin #Wordpress

I am having a BIG problem. Most of the DNS lookups are suppose to be on the following site: gtmetrix.com/reports/ytadvisers.com/6eIsggZE
Again this one DNS lookup URL will not go away.
netdna.bootstrapcdn.com

I was using the Bootstrap CDN plugin for WordPress. I have uninstalled it and this annoying thing is still there. Did I forget database files? Is there something I have to edit? It is messing up my Adsense plugin as well.

Anything to try is greatly appreciated, I need it gone.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Cugini213

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kevin317

I figured it out, it was the speed booster pack plugin. The remove extra Font Awesome was on, turned off and everything was fine.

10% popularity Vote Up Vote Down


 

@Chiappetta492

In this situations, this is what I will do,

login to the server using ssh, and goto wordpress installation directory, and use the following command to find out in which file the cnd link is used,

grep 'netdna.bootstrapcdn.com' -lr wp-content


So from the file list you will know from which plugin or theme the link is added.

If above command doesn't return any file, then it must be coming either from cache or from database. But it is very unlikely to come from database when the plugin is un-installed.

Edit:
In case you cannot login using ssh, add a simple php file in wordpress directory and add the following code in it,

<?php
echo exec("grep 'netdna.bootstrapcdn.com' -lr wp-content");
?>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme