So I’m using the Newspaper theme on my self-hosted WordPress website which in turn runs on my own VPS. I’ve set the WP_Memory_Limit to 256M and have the WP_Debug set to false. max_input_vars = 5000, max_execution_time = 300 and post_max_size = 50M. I don’t make use of Suhosin nor any other WordPress plugins. The website runs over an HTTPS connection by Let’s Encrypt.
Yet, it’s not possible for me to use the build-in TagDiv composer. When trying to edit a page with the TagDiv composer, it always shows a gray screen with a never ending spinning circle in the middle.
Any help on this one would be great…
I believe that we are all feeling this pain I have two Web techs looking at it now.
I’m having the same issue. I’ve made multiple posts on this and no reply.
Hello,
Please use this method first: https://forum.tagdiv.com/topic/tagdiv-composer-not-working-11/
If this does not fix the composer, please contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this conversation so we can identify you.
Thank you!
I actually found the problem. It actually IS SSL! After changing the default X-Frame Option in /etc/httpd/conf.d/ssl.conf from DENY to SAMEORIGIN, I managed the TagDiv Composer to load.
If you’re not on a VPS but on a Shared Hosting, you can achieve this by adding the following lines to your .htaccess:
<IfModule mod_headers.c>
Header always append X-Frame-Options SAMEORIGIN
</IfModule>