79627062

Date: 2025-05-17 23:59:02
Score: 1.5
Natty:
Report link

I ran into I similar problem when I was hosting my own WP site. Even when I increased the memory my elementor was stuck on the loading screen. Does your http://localhost/your-site-name/wp-json/ work? This should return a JSON response. If it doesn’t, Elementor can’t talk to WordPress properly. The issue was a result of my .htaccess file. Make sure that your file is correct it should look like this.
# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /your-path/

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /your-path/index.php [L]

</IfModule>

# END WordPress

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Noah Cardoso