Stuck on loading screen (Breakdance Builder)

Status
Not open for further replies.

tattooedbuddha

Senior Member
Joined
Jul 19, 2020
Messages
860
Reaction score
5,742
Sometimes when working on a website, using breakdance builder, I get stuck on loading screens when opening a page.

It looks like this and nothing is happening:
1690884054011.png


Do any of you know how to fix this?
 
I have not, is it through DirectAdmin?
DA or cPanel, it doesn't matter. I got you covered: Edited link, because it didn't provide comprehensive information.

LE

You can also add these lines:
Nav to root > wp includes folder > search for "default constants" file, scroll down and find "Define memory limits". Change with your new values. Example:

Code:
// Define memory limits.
    if ( ! defined( 'WP_MEMORY_LIMIT' ) ) {
        if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) {
            define( 'WP_MEMORY_LIMIT', $current_limit );
        } elseif ( is_multisite() ) {
            define( 'WP_MEMORY_LIMIT', '2000M' );
        } else {
            define( 'WP_MEMORY_LIMIT', '2000M' );
        }
    }

    if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) {
        if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) {
            define( 'WP_MAX_MEMORY_LIMIT', $current_limit );
        } elseif ( -1 === $current_limit_int || $current_limit_int > 268435456 /* = 256M */ ) {
            define( 'WP_MAX_MEMORY_LIMIT', $current_limit );
        } else {
            define( 'WP_MAX_MEMORY_LIMIT', '2000M' );
        }
    }

Other ways:

Code:
For wp-.config.php: define('WP_MEMORY_LIMIT', '2000M');

Code:
PHP.ini file: memory_limit = 2000M;

Code:
.htaccess file: php_value memory_limit 2000M
 
Last edited:
Disable it, no need when building only.
Also, after disable it, clean the browser cache, or use a 2nd browser.
Disabled it.

Cleared browser cache, no effect.

Tried using microsoft edge (cleared browser cache as well), no effect.

Hmm...

Edit: Tried incognito mode as well, no effect.
 
Creating a completely new page and editing it with breakdance builder works, going to try duplicating existing pages and seeing if that makes a difference

Edit: Duplicating pages and editing the duplicates works, this is so weird.

Still, a more long-term solution would be great, hmm...
 
The first thing to check would be the console. Check if you see any error there (f12 -> console). I see a loader icon in the op you posted. Makes me believe there’s some kind of javascript syntax error that is stopping the rest of the logic from executing.
 
The first thing to check would be the console. Check if you see any error there (f12 -> console). I see a loader icon in the op you posted. Makes me believe there’s some kind of javascript syntax error that is stopping the rest of the logic from executing.
1690886704037.png


Looks like some sort of SSL issue? Though the SSL certificate is valid and when duplicating the page it works fine in the editor..
 
View attachment 274001

Looks like some sort of SSL issue? Though the SSL certificate is valid and when duplicating the page it works fine in the editor..
Yepp, looks like you are trying to load some kind of iframe with http:// over https. That's causing the error. I guess the tool you are using uses iframe for the content? I-frame is nasty, and not good for seo atall. ;)
 
Yepp, looks like you are trying to load some kind of iframe with http:// over https. That's causing the error. I guess the tool you are using uses iframe for the content? I-frame is nasty, and not good for seo atall. ;)
Yes, but in this case it has to do with the builder not the finished frontend content, so SEO would be fine in the end. Don´t scare the shit out of him .. =)

To clarify, viewing the pages front-end works just fine
 
Yes, but in this case it has to do with the builder not the finished frontend content, so SEO would be fine in the end. Don´t scare the shit out of him .. =)
Ahh got it, makes sense. That's fine then.

@tattooedbuddha for local dev, don't use https. That will solve the problem.
 
Status
Not open for further replies.
Back
Top