Plugin Author
POSIMYTH
(@posimyththemes)
Hello @mihail-barinov,
Can you share Debug Log?
You need to insert following code in your wp-config.php file. That will log all errors, notices, and warnings to a file called debug.log in the wp-content directory.
// Enable WP_DEBUG mode
define( ‘WP_DEBUG’, true );
// Enable Debug logging to the /wp-content/debug.log file
define( ‘WP_DEBUG_LOG’, true );
// Disable display of errors and warnings
define( ‘WP_DEBUG_DISPLAY’, false );
@ini_set( ‘display_errors’, 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( ‘SCRIPT_DEBUG’, true );
Then, You need to share that with us. You can use https://pastebin.com/ . That log will help you to identify the issue.
Thread Starter
ILLID
(@mihail-barinov)
It is empty.
But inside my nginx error log I see this thing:
[error] 12#0: *1464 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 10.1.4.41, server: , request: 'POST /wp-admin/admin-ajax.php HTTP/1.1', upstream: 'fastcgi://unix:/shared-run/php-fpm.sock:',
So I think that the issue is in server timeout error or in max response size ( your plugin generates very huge controls config when loading elementor front-end builder ).
Looks like I know that causes the issue – very huge config for Elementor module controls that loads via ajax requests. My question is – are there any php hooks that I can use to disable some of ThePlus modules options ( styling options most of all )?
Or you have another solution how to make these controls config smaller?
Plugin Author
POSIMYTH
(@posimyththemes)
Hello @mihail-barinov
As, We can see, It seems to be connection time out error and which is due to memory limit.
https://docs.posimyth.com/tpae/elementor-panel-in-the-editor-is-frozen-and-showing-a-spinning-circle/
1. Have you tried increasing your memory limit?
2. You can disable unused widgets from The PLus Settings. Once you disable all widgets and enabled only used, your memory limit requirement will be decreased. Same thing you can check on other elementor addons you are using. Because that memory limit issue is not related to our addons only, It’s issue of having more widgets in elementor panel. We have even option to disable elementor and elementor pro’s widgets too.
Hope above will help because it works fine with our other users and It’s 100% issue of server configuration.