Cant save changes in Elementor, Document already in save progress - wordpress

when trying to save changes, update button stays green and changes are not saved. I’ve tried every single advice I could found (cache cleaning, disabling plugins, enabling healt-check plugin). The error ‘Document already in save progress’ apeears in browser console. This issue can be reproduced only on one page (the biggest one). Also, on different hosting everything works fine.
This are the only plugins I use, and the theme is “OceanWP”:
The error in browser console:

Can you try this:
Edit wp-config.php and insert the following lines:
define( 'WP_DEBUG', true);
define( 'WP_DEBUG_LOG', true);
define( 'WP_DEBUG_DISPLAY', false );
and check the debug log at /wp-content/debug.log afterwards.
Also try to enable the Elementor Debugger to see if there are some more detailed erros:
https://elementor.com/help/elementor-debugger/

I had a same problem and finally found the solution here :
update button not work

I was having the same issue, also I was getting an 524 error sometimes on the site, always on my browser console, for me it was related to reaching the resources limit on my hosting... Had to change to a hosting with bigger limits... I tested this by migrating my site from my current hosting to a local instance, everything worked just fine.

Related

Elementor Plugin on Wordpress keeps loading and I get a console error /wp-admin/admin-ajax.php 500

how are you?
My website was working well and now I'm unable to create or edit pages using elementor because the 'loading' keeps spinning and nothing happens.
I see a console error where I get /wp-admin/admin-ajax.php 500
How can I fix this? I don't know what caused it.
Thanks!
there are many reason for this. But the common one is WP memory limit issue.
To handle this, first you need to edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder, and you will need to use an FTP client or file manager in your web hosting control panel.
Next, you need to paste this code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’
define( 'WP_MEMORY_LIMIT', '256M' );
This code tells WordPress to increase the PHP memory limit to 256MB.
Once you are done, you need to save your changes and upload your wp-config.php file back to your server.
I had this problem too, I just disabled plugins one by one and I found the problem!
one of my plugins caused this problem.

WordPress - Media library shows 503 error in console

My media library is not working correctly when I want to upload a image i get a HTTP Error sometimes, not every time. When I look in my browser console I see multiple 503 errors and 404 errors. I dont know where they are coming from.
I tried, upping my memory limit and disabling all plugins.
Here is a screenshot of the errors in the console:
Thanks for your time!
To troubleshoot WordPress errors, you require to enable WordPress Debug, which can be done using wp-config.php.
You need to copy and paste the code in wp-config.php file shown below.
define( 'WP_DEBUG', true );
How To Debug And Log Errors In WordPress Site
Also, contact your web host.

Media Library and Featured Image Issue

I just downloaded a new version of WordPress 4.5.2 and started developing a theme but when I transferred it to the live I cannot upload images on the Post's featured thumbnail same as well on the Media Library.
When I try to upload an image on the Post's featured thumbnail I always got this error:
I have changed the file permission to 777 on /wp-content/uploads/, switch themes and disabled plugins but it still not working.
Any ideas from you guys would be great!
Thanks in advance.
There can be more then 1 reason for this issue.
Check your file size and check if that is too much for memory to process or not
In recent updates many themes has been broken. You can switch to default theme for sometime and after clearing cache check if the problem is resolved.
Permission issue you have already tried. (Suggestion: Use 755 instead of 777 for security)
Still if your issue persist add define( 'WP_DEBUG', true ); to your wp-config.php file and open your console. If there is any server side error you will get it directly on screen and in case of ajax in console.

Wordpress "white screen of death" unique issue, never seen before

I am trying to figure out why I am getting a white screen/blank page... I first experienced this when editing a page. After I hit update, the post.php page went blank. When I tried to access the site (top level) it was a blank white page. When I went home, to a new network, the site worked just fine. So I began editing the pages again. I hit update again, and got the white page again. Can't see the front end of the site either. If I access the site from my phone, not using wifi, I can see the site. But here is the kicker... If I try to access ANY Wordpress site on my server, I get a blank white screen. I've searched and can't find anyone who has experienced this? Any help or direction is much appreciated. This is a new VPS server from HostGator. I have contacted HostGator but so far they haven't been able to replicate it.
White screens are PHP errors. Try Debug and see what PHP errors you are getting.
See https://codex.wordpress.org/WP_DEBUG
Add
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
in wp-config.php and the debug.log file will be in wp-content.
Add this line
define( 'WP_DEBUG_DISPLAY', true);
to wp-config.php to log and dump them to the browser.
For me this was a conflicting plugin - Yoast SEO - I disabled it and it stopped the error.
It occurred whenever I tried to update a post as an admin user.

Wordpress Theme Compatibility Issue

I'm developing a WP theme for a client and have run into some trouble.
When my theme is activated:
I edit post or page (or several other areas), click UPDATE, PUBLISH, etc - and I get a blank white page.
When I go back, the post has been updated - so the system is working, it just isn't redirecting me back to the edit page.
Everything works fine when the default template is activated.
Thanks!!!
To trace the error set the WP_DEBUG as true
Refer : http://www.wprecipes.com/how-to-easily-enabledisable-debug-mode-in-wordpress
Change WP_DEBUG to true in wp-config.php file located in the WordPress root folder, and then you will be able to see the errors that are coming up. Fixing those errors will resolve your problem.

Resources