Mixed content error - story assets served insecurely

Created on 17 March 2025, 17 days ago

Problem/Motivation

When serving a Shorthand story that's been downloaded to a Drupal site via the Shorthand API, some story assets are loaded over http and not https.

Sample console error: "Mixed Content: The page at 'https://website.org/node/99' was loaded over HTTPS, but requested an insecure script 'http://website.org/sites/default/files/shorthand/stories/busgTbaaXq/2025...'"

Steps to reproduce

After installing and configuring the Shorthand module, download a story to your Drupal site. Create a node that features that Shorthand story, then publish. Upon viewing the published node, the Shorthand story will load incorrectly with broken images and JS assets.

I then created the following patch to force https, unfortunately to no avail:

--- web/modules/contrib/shorthand/src/Entity/ShorthandStory.php	2025-02-19 17:14:24
 +++ web/modules/contrib/shorthand/src/Entity/ShorthandStoryPatched.php	2025-02-19 17:14:34
 @@ -520,6 +520,7 @@
      }
      $content = str_replace('./static/', $assets_path . '/static/', $content);
      $content = preg_replace('/.(\/theme-\w+.min.css)/', $assets_path . '$1', $content);
 +    $content = str_replace('http://','https://',$content);
  
      return $content;
    }

Any guidance or suggestions are be appreciated. Thanks in advance!

πŸ’¬ Support request
Status

Active

Version

4.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States ninabyte

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

Comments & Activities

Production build 0.71.5 2024