Cannot add new element or save page in tagdiv composer – console error

Posted in: Newspaper
Post count: 4

Dear Support!

Today, I tried to edit my home page that was created with tdcomposer, and when I’m trying to add a new element or save the page (even without changes), it just “loads infinetly”. This was not a problem before, I had no problems editing with the composer. I get the same error on new blank pages.

In the Development tools console, there is an error with the Job Manager (this happened when trying to add a row):

https://i.imgur.com/nFf0B0h.png

I tried reinstalling the tdcomposer plugin, it did not help. Any ideas? Thank you for your time.

Post count: 35449

Hi,

Please make sure that the theme system status is configured as mentioned in the requirements guide. Please follow the guide carefully
https://forum.tagdiv.com/requirements-for-newspaper/

Also please add this code in your .htaccess file.

<IfModule mod_substitute.c>
SubstituteMaxLineLength 10M
</IfModule>

Thank you.

Post count: 4

Hi, thank you for responding to my problem.

Unfortunately I’ve already tried these, and it did not solve the problem.
I’ve also tried to disable all other plugins to see if there is a conflict, but did not help. Is there anything else I can try?
Thank you for your time.

Post count: 35449

Try do set another page as homepage, and try to edit again that page.
Hope this will help you.
Thanks.

Post count: 4

Hi,

Thank you for trying to help. As it turned out, my colleague modified the htaccess file by hand, and it somehow broke the redirects for the composer. I restored it to an earlier state and it now works.

For anyone who experiences the “infinite element loading” problem, and nothing else helps, try to reset your wordpress permalinks, and set them again, or look at your .htaccess file and check (if you know what is that you’re looking for) if there is anything set up wrong.

Thank you for your support!

Post count: 10

hi! How exactly did you reset the permalinks? I have the same problem and cannot really solve it.
Thank you.
I checked permission file, I added the code on .htaccess file, I did everything suggested in forum, but still cannot import demos and have an infinite loading. :O

  • This reply was modified 7 years by MCDS.
Post count: 35449

Hi MCDS,

Open settings – permalinks, click on the type you already have selected and click save.
Helped for me with the same issue.

Please make sure that the theme system status is configured as mentioned in the requirements guide. Please follow the guide carefully
https://forum.tagdiv.com/requirements-for-newspaper/

Post count: 4

Hi MCDS,
Exactly what Calin said!

Also, if it helps you my .htaccess file looks something like this, please don’t forget to make backups before modifying anything! This shouldn’t contain anything particular other then getting rid of the index.php and redirecting 404s:

ErrorDocument 404 /index.php?error=404
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<IfModule mod_substitute.c>
SubstituteMaxLineLength 10M
</IfModule>

Hope you can solve your problem!

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.