Support Forum

Please note that this forum is only available to you in read only mode. In order to contribute to this conversation you will need to renew your subscription.

Where are template prerequisites being loaded from?

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

My Joomla 2.5 site is now using https instead of http.

I'm getting the typical warning "Mixed content" warning in most browsers. Chrome is blocking things like:

netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css

Now, the problem is WHERE is the script loading this stylesheet? I know it must be loaded by the template but I just can't find it.

Tried index.php both in the public_html and template folders but since they're just PHP files including other PHP files and libraries, including other scripts, etc... it seems impossible.

This is probably possible to fix using javascript. I tried the following to fix the IFrames:

iframes=document.getElementsByTagName('iframe');

for (i=0; i<iframes.length; i++){
var antigoURL=iframes.src;
var novoURL=antigoURL.replace("http:", "");
iframes.src=novoURL;
};
But since the script runs AFTER the page is loaded, I can't prevent the error to show up.

My site is www.portal-gestao.com

The template I'm using is Base3

I know this should be easy, but I'm still struggling.

Thanks for helping!

PS: This question is also asked in Stack Overflow here: stackoverflow.com/questions/28281279/where-are-template-prerequisites-being-loaded-from
  • nunonogueira's Avatar
  • nunonogueira
  • 3 Month Basic
  • 54 posts
  • 1 Thanks
  • Karma: 1
The administrator has disabled public write access.
Hi there,
The template shouldn't be loading any extra assets from a 3rd party server. You can test that by changing the theme to see if it's still loading the css file with a different theme.

The only other option is if you are using the Zen Shortcode plugin and have nominated that to use an external server.
Thanks!
  • Anthony Olsen's Avatar
  • Anthony Olsen
  • LIfetime Developer - Big Bamboo
  • 23925 posts
  • 788 Thanks
  • Karma: 433
The administrator has disabled public write access.

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Happy Campers