Hi @kromaweb,
Do you see any errors? Can you share them with us?
If not, could you enable debugging and let us know what is in the debug log?
You have two options: installing the WP Debugging plugin (https://www.ads-software.com/plugins/wp-debugging/) or following the instructions below to access the error log.
1. To enable debugging in WordPress, edit the wp-config.php file in the root of your WordPress installation and add the following lines before the line /* That’s all, stop editing! Happy publishing. */:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG, true);
define(‘WP_DEBUG_DISPLAY, false);
@ini_set(‘display_errors’, 0);
define(‘SCRIPT_DEBUG’, true);.
2. Save the file.?
3. To check the debug log, locate the debug.log file in the wp-content directory and open it with a text editor.?
4. Please share the error message with us.
5. To disable debugging, edit the wp-config.php file again and change define(‘WP_DEBUG’, true); to define(‘WP_DEBUG’, false);. Disable debugging on live sites for security and performance.
Kind regards,
Hessel