Colorbox failed to load when aggregation is enabled.

Created on 23 June 2021, almost 4 years ago
Updated 3 May 2023, almost 2 years ago

Problem/Motivation

Colorbox works nicely when aggregation is disabled in /admin/config/development/performance, but when enabled it opens colorbox on click and says it failed to load image.

Not sure how to fix that and why it happens.

The field is actually attached to ECK and ECK is displayed in node so maybe this might be an issue but I do not see why.

πŸ› Bug report
Status

Closed: cannot reproduce

Version

1.0

Component

Code

Created by

πŸ‡ΈπŸ‡°Slovakia lubwn

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΈπŸ‡°Slovakia lubwn

    Okay I solved this issue. It had probably nothing to do with colorbox at all but I am not sure. It looks like links to colorbox were rendered with subdomain instead of main domain. So basicly I had all the thumbnail images loaded properly with links like https://domain.tld and links were rendered with https://sub.domain.tld instead of only pointing to main domain.

    I am still not sure what triggered that, it looks like it has something to do with how the server is set up.

    Since I had no time digging into the server stuff and this was the only field having the problem I solved it in theme JS file with the following code:

    $('a[href^="https://sub."]').each(function(){ 
    	var oldUrl = $(this).attr("href"); // Get current url
    	console.log(oldUrl);
    	var newUrl = oldUrl.replace("https://sub.", "https://"); // Create new url
    	$(this).attr("href", newUrl); // Set herf value
    });
    

    I am just leaving the code here although it is highly unlikely someone will have the same problem.

Production build 0.71.5 2024