• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

How do you make "Edge Web Fonts" come from a secure "https" site?

New Here ,
Apr 13, 2017 Apr 13, 2017

Copy link to clipboard

Copied

MODERATOR'S UPDATE 2/27/2022:

Effective July 2022, Adobe Edge Fonts will be discontinued.

Please switch to Adobe Fonts or other suitable font replacement.

================

 

Hey all,

So my site is complete... I load it up onto the server... I have the SSL certificate installed but boom, error when loading the page, "Your connection to this site is not fully secure!"

 

Found that a couple of "Edge Web Fonts" that I'm using are reading from http and not https which is causing the problem. And from the searches online I could only find that I need to (after the site is loaded) go into each pages html and change the code for each of the fonts to https instead of http. Yeah, having to do that on a 40 page website every single time I upload changes, thats not happening.

 

I also hear that is I just "self-hosted" the fonts that they will then be secure... but how do I download all the webfont files from Edge to upload them on my own server?

 

Or other then having to go into every single text item and change the font to a standard system font... how else can I fix this?


Thanks all!

TOPICS
End of life , How to

Views

708

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 13, 2017 Apr 13, 2017

Copy link to clipboard

Copied

Hello,

You can find 'Edge Web Fonts' here: Google Fonts

You will have to download the TTF file (True Type Font) and convert them into WOFF, EOT and SVG.

After that you can install the font and use them.

But for 'Edge Web Fonts' Adobe using secure server... Are you sure your SSL installed correctly?

Regards

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

I just saw Bitter font on Google fonts site: <link href="https://fonts.googleapis.com/css?family=Bitter" rel="stylesheet">

And if you will follow the link:

/* latin-ext */

@font-face {

  font-family: 'Bitter';

  font-style: normal;

  font-weight: 400;

  src: local('Bitter-Regular'), url(https://fonts.gstatic.com/s/bitter/v10/Qt2dUzVlMd1bCOcZXl06LPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');

  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;

}

/* latin */

@font-face {

  font-family: 'Bitter';

  font-style: normal;

  font-weight: 400;

  src: local('Bitter-Regular'), url(https://fonts.gstatic.com/s/bitter/v10/zfs6I-5mjWQ3nxqccMoL2A.woff2) format('woff2');

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;

}

As you can see is under https

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

So I followed the link on 2 of my machines and both come back as:

-----------

/* latin-ext */

@font-face {

  font-family: 'Bitter';

  font-style: normal;

  font-weight: 400;

  src: local('Bitter-Regular'), url(http://fonts.gstatic.com/s/bitter/v10/Qt2dUzVlMd1bCOcZXl06LPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');

  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;

}

/* latin */

@font-face {

  font-family: 'Bitter';

  font-style: normal;

  font-weight: 400;

  src: local('Bitter-Regular'), url(http://fonts.gstatic.com/s/bitter/v10/zfs6I-5mjWQ3nxqccMoL2A.woff2) format('woff2');

  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;

}

---------------

Also, I downloaded, converted and installed the font families list... then in Muse went to Add/Remove Web Fonts > Self-Hosted > Add Fonts.... I add all the fonts and all have the green check mark next to their name.

So I then try to Upload the site again and now i'm getting error:

COULD NOT GENERATE CODE TO ENABLE ONE OR MORE WEB FONTS ON PAGE... ERROR 500

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 19, 2017 Apr 19, 2017

Copy link to clipboard

Copied

LATEST

ERROR 500 means Muse can't export fonts... Probably you haven't change the fonts in text fields. Your txt fields must have the old fonts. Update them with the new fonts.

Also, you can create a new page with 1 text field with the new font and check if it works properly about 'https' warning.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines