Addons suddenly not working when logged out

Permalink
Hi,

The site I am building moved servers during the build and while I didn't notice it at first, at some point after moving, some of the add-ons stopped working when you aren't logged in (Pro Blog list doesn't display, Page Auto Redirect doesn't auto redirect.) As the site has gone live before I discovered this, I'm in kind of a panic. I've deleted the old project, relinked the site to the community and re-assigned all of the licenses. Any idea what's causing this and how to fix this? Thanks for any help

 
rockface replied on at Permalink Reply
rockface
This just happened to me! My Calendaar popup and dialog popups all stopped working when not logged in.

After doing a file compare of the page (one logged in and one not logged in) i found several lines of code were not present when not logged in...

Through process of elimination, found these lines were keeping stuff from working:
//REQUIRED for popup calendars
<script type="text/javascript" src="/concrete/js/jquery.ui.js?v=c756eb21f23af6e5eaef84cb3875fb85"></script>
//REQUIRED for popup div tags
<script type="text/javascript" src="/concrete/js/ccm.app.js?v=c756eb21f23af6e5eaef84cb3875fb85"></script>
//NEEDED to create a background container for both popups
<link rel="stylesheet" type="text/css" href="/concrete/css/jquery.ui.css?v=c756eb21f23af6e5eaef84cb3875fb85" />


I added the missing code (hard coded), just to test and it started working.

Obviously, this is no fix, because the code would be duplicated when logged in.

I'm still investigating a solution.