Only loading HEAD after upgrading docker, due to Babble plugin

Hey all, bit time sensitive as forum just won’t load after I upgraded Docker on the prompt in the web interface because it prompted me to do so.

https://members.minaal.com is site

Then it said I had to go to server and

cd /var/discourse
git pull
./launcher rebuild app

Ever since it hasn’t loaded - just the embed that’s iframed in before (the radio player lower right.

Where do I look for the errors? Only chrome dev tools errors seem innocuous.

The site loads in safe mode when the current theme is disabled. This means that the issue is related to your site’s theme. You should be able to access the site at this URL: https://members.minaal.com/?safe_mode=no_custom. Once you have accessed the site, you will need to fix or disable your current theme.

The error I see when I try loading the site without going into safe mode is $.cookie is not a function. Check your theme and theme components to see if you are calling $.cookie anywhere.

2 Likes

Thank you, super helpful. AFAIK not calling that, but having just pulled the radio embed player site seems to load. Assume they are calling it? Dropping code snippets below.

<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script><script src="https://public.radio.co/playerapi/jquery.radiocoplayer.min.js"></script>

<script>$('.radioplayer').radiocoPlayer();</script>

.ms-iframe {
  position: fixed;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 100000000000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ms-iframe-embed {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 600px;
  height: 100px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ms-iframe.dereks {
  left: auto;
  right: 0px;
}

FWIW this is the second update in a row this has happened for us as well.

Were you able to resolve your issue @cloudunicorn and if so what steps did you take? I can’t see anything on my website except the background. :confused:

Upon reviewing chrome console logs on my website and then another post on this forum I was able to confirm that the issue has to deal with the babble plugin for me so going to disable it and post an update.

Turns out babble was the problem in my case. Issue Resolved :smiley:

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.