Hi @antdx,
Thank you for your reply.
The following WP_DEBUG code, inserted in your?wp-config.php?file, will log all errors, notices, and warnings to a file called debug.log in the wp-content directory. It is assumed to be false by default and is usually manually set to true in the wp-config.php file. When set to true, the log is saved to debug.log in the content directory (usually wp-content/debug.log) to your local system, Kindly share it with us so that we can investigate it further.
// 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 );
NOTE: You must insert this BEFORE /* That’s all, stop editing! Happy blogging. */ in the wp-config.php file.
Please refer to this helpful article on WordPress to enable debugging here and follow its steps: https://www.ads-software.com/support/article/debugging-in-wordpress/
Warm regards,
Support Team- File Manager Pro