Thank you. This was really helpful. Feel free to delete it again now.
Now, I don’t like running in circles, but this really, really, turns out to be a server issue and is not an issue with the Web Stories plugin.
Citing a previous reply:
This error could be linked to these issues. The 414 error typically means the requested URL is too long. This is unusual because the requested URL here doesn’t look to be too long, and typically servers handle much longer URLs.
This is exactly what is happening here.
Something on your server does not allow longer URLs. Either on the firewall level, PHP level, or web server (LiteSpeed) level.
In fact, from what I can see, your server has a limit of 278 characters for request URLs. This is very unusual, as typically these limits are more in the area of 5000-10000 characters.
Pretty sure you will be able to verify this in the WordPress admin as well.
1. Go to Posts -> Add New
2. Open your browser dev tools via F12
3. Under “Console”, type await wp.apiFetch({ path: 'wp/v2/posts?embed=true&_fields=a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,a1,b1,c1,d1,e1,f1,g1,h1,i1,j1,k1,l1,m1,n1,o1,p1,q1,r1,s1,t12' })
and press Enter -> this will make a request to https://www.pokcas.com/wp-json/wp/v2/posts?embed=true&_fields=a%2Cb%2Cc%2Cd%2Ce%2Cf%2Cg%2Ch%2Ci%2Cj%2Ck%2Cl%2Cm%2Cn%2Co%2Cp%2Cq%2Cr%2Cs%2Ct%2Cu%2Cv%2Cw%2Cx%2Cy%2Cz%2Ca1%2Cb1%2Cc1%2Cd1%2Ce1%2Cf1%2Cg1%2Ch1%2Ci1%2Cj1%2Ck1%2Cl1%2Cm1%2Cn1%2Co1%2Cp1%2Cq1%2Cr1%2Cs1%2Ct12&_locale=user
(277 characters long) ->
4. Now type await wp.apiFetch({ path: 'wp/v2/posts?embed=true&_fields=a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,a1,b1,c1,d1,e1,f1,g1,h1,i1,j1,k1,l1,m1,n1,o1,p1,q1,r1,s1,t123' })
and press Enter -> this will be a 278 characters long URL -> see error message
Again, this happens even outside the Web Stories editor. It’s not an issue with the plugin, but with your server.
I’m pretty sure the same limit is causing the fonts in the font picker not to load. And pretty sure this will also be causing issues for you with the block editor.
but I found another one, it is duplicate meta descriptions
This is most likely not caused by the Web Stories plugin, but is coming from your theme or another plugin. Since you are using Yoast SEO, our plugin does not print any meta description because Yoast SEO does everything. But in your case, there’s still a second one. Plus, we have not changed anything regarding meta descriptions in months, so very unlikely that it’s caused by this update.
I suggest switching themes to see if this still happens, and then reach out to your hosting provider.