Uncaught SyntaxError: JSON.parse: unterminated string at line 1 column 12162 of the JSON data
wp-content/plugins/td-composer/assets/js/js_files_for_wrapper.min.js?ver=8b696c143e3bac57b8492b1871ec539b:43
The line with the issue:
var h=JSON.parse(tdcUtil.b64DecodeUnicode(b));
What could this possibly be?
Same here. Just installed 12.3 and I can’t edit any page.
Error at zones: 6(models) : 0(dom). The model does not match the content Current state has involved an issue. You could try an UNDO operation (CTRL+Z / CTRL+SHIFT+Z)
Same on PHP8.1 as well as PHP 8.0
It’s related to a strict security policy.
Change
Header set Content-Security-Policy “frame-ancestors ‘none'”
to
Header set Content-Security-Policy “frame-ancestors ‘self'”
and the builder will load
-
This reply was modified 3 years by
chrisfoxatx. Reason: fix included
It fixed it for me.
Open up Developer Tools in Chrome and see what the error is.
For me it showed it could not access the frame.
I remember that I spent a full day earlier hardening my WP install, which was a bit too strict. Allowing self fixed it for me.
For who doesn’t know what I’m talking about, look for this in your .htaccess file.
Make a backup of that file first đ
-
This reply was modified 3 years by
chrisfoxatx.