XF 2.2 Giphy Error

shawn

Well-known member
Getting this pop-up error when scrolling down through the suggestions in giphy. Seems to be an issue on Chrome/Windows, but not on Chrome/Android:

"Oops! We ran into some problems. Please try again later. More error details may be in the browser console."

1609769204129.webp


It looks like a 404:

1609769291530.webp
 
It looks like it's related to this:


and this:


Since avatar editing is also broken. I've confirmed that adding a slash after account/avatar/ and /editor/insert-gif/ both fix the 404.

Nginx conf file has been switched to the 'official' xenforo syntax while troubleshooting this afternoon. It was previously:

Code:
 location ~ [^/]\.php(/|$) {
In the php-fpm section. The location directive for the file root is the same:

Code:
location / {
try_files $uri $uri/ /index.php?$uri&$args;
 
Top Bottom