Broken Live Page (But works in Cornerstone)

Hi there,

One of the pages that we’ve been building broke down, but it still works and shows up just fine in the editor/cornerstone. We initially thought this had to do with max_input_vars but we upped that to 20000 as well as boosting some other settings, and upgrading PHP to 8.1… All did not help fix the issue.

Of course, I’ve cleared my cache, OP, and server Cache, as well as CloudFlare and our CDN. Nothing helped.

Here’s a video about the issue:

Hope you guys can help out.

Stefan

Hello Stefan,

Thank you for the very detailed post information. Please edit your page and find the element where you have inserted the iframe embed code. You have added this broken code:
<iframe loading="lazy" data-vimeo-defer src="https://player.vimeo.com/video/297997073?color=ffffff&title=0&byline=0&portrait=0" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen< iframe>

The correct iframe code is supposed to be this:
<iframe loading="lazy" data-vimeo-defer src="https://player.vimeo.com/video/297997073?color=ffffff&title=0&byline=0&portrait=0" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

Kindly let us know how it goes.

Ruenel,

Thanks, the issue was indeed the broken iframe/Vimeo embed, can’t remember I edited that element yesterday though, so it might have been sitting there for a while.

Old code was:

<iframe loading="lazy" data-vimeo-defer src="https://player.vimeo.com/video/297997073?color=ffffff&title=0&byline=0&portrait=0" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen</iframe>

It was missing the “>” behind the allowfullscreen in the embed

New code:

<iframe loading="lazy" data-vimeo-defer src="https://player.vimeo.com/video/297997073?color=ffffff&title=0&byline=0&portrait=0" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

Thanks again :slight_smile:

Stefan

Follow up, on checking other Vimeo embeds it seems that similar issues seem to show up.

Elements are not being closed correctly, I got a couple of Vimeo embeds within a Div and the divs were missing a “>”. This means it’s not properly closing the Div, resulting in more errors.

I’m 100% sure I didn’t touch these, any idea why this seems to center around the Vimeo embeds all of a sudden?

(I’ve fixed those too, not need to check)

Hello Stefan,

Glad that you were able to fix the issue by yourself. Please feel free to open a new thread if you have any more queries.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.