parisa
parisa

Reputation: 101

Wordpress "Connection Lost. Saving has been disabled until you're reconnected." Error only when posting to Home Page

I have a WordPress 5.9.2 website and I'm using Elementor 3.6.5. I start to get "Connection Lost. Saving has been disabled until you're reconnected." error when I try to make any changes to my Home Page only after a while. I tried to clear my cache and cookies but i didn't work. I also tried other browsers and different internet connections but the issue still remains. I also tried other computers but in some of them I get the same error and in some I don't. How can I solve the problem? I have attached the error screenshot here.

enter image description here

Upvotes: 2

Views: 5353

Answers (2)

Tech Code
Tech Code

Reputation: 1

Increase PHP Resources. Elementor requires sufficient PHP memory and execution time. Update the wp-config.php file to increase these limits:

define('WP_MEMORY_LIMIT', '256M');
define('WP_MAX_MEMORY_LIMIT', '512M');
set_time_limit(300);

Upvotes: 0

Ali Duman
Ali Duman

Reputation: 1

Here is multiple factors that can cause this problem :

  1. The plugin/theme you installed : Try to disable them one to one and see if the error remains.
  2. Resource limits from their server : If you make to many edits for long enough, you may have the same error you have, this API solve the problem in this case.
  3. Issue from your hosting provider : You can still go to their forum and see if it's their fault that you have this issue.

Hope it helps.

Upvotes: 0

Related Questions