ExtraLicense - Buy, Sell, & Trade Your Licenses

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Intermediate fix for emoji loading issues

  • Thread starter Latest phpBB.com announcements
  • Start date
L

Latest phpBB.com announcements

Guest
    Thread Owner: Latest phpBB.com announcements
  • #1
Hi all,

We have noticed that the CDN that provides loading of emojis in phpBB has stopped working.
While a new version that takes care of this is already in the works, you will most likely notice issues with pages taking longer to load and issues with the display of emojis (see e.g. here: viewtopic.php?t=2634321).

Until the next version of phpBB is released, you can resolve this issue by applying the following fix that will be included in the next release:

Open phpbb/textformatter/s9e/factory.php

Find (~ line 359):

Code: Select all

[IMG alt="{.}"]https://twemoji.maxcdn.com/2/svg/{@tseq}.svg[/IMG]
Replace with:

Code: Select all

[IMG alt="{.}"]https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/{@tseq}.svg[/IMG]
Find (~ line 362):

Code: Select all

[IMG alt="{.}"]https://cdn.jsdelivr.net/gh/s9e/emoji-assets-twemoji@11.2/dist/svgz/{@seq}.svgz[/IMG]
Replace with:

Code: Select all

[IMG alt="{.}"]https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/{@seq}.svg[/IMG]
Afterwards go to the ACP and purge the cache.

Once the next version of phpBB is released, you should be able to simple overwrite this file again. Preparations for the next release are already underway and it will be published as soon as possible.

- The phpBB Team

Continue reading...
 
Top