[ad_1]
Hi @berry12
You need to enable debug mode in WordPress, follow these steps:
- Access your website files via FTP or your hosting File Manager.
- Open the
wp-config.phpfile located in the root directory of your WordPress installation. - Look for the line that says
define( 'WP_DEBUG', false );. - Replace the code with this code below:
define( 'WP_DEBUG', true )
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
@ini_set( 'display_errors', 1 );4: Save the file and reload your site. Error messages should now be displayed on the page.
Remember to disable this after troubleshooting by setting WP_DEBUG and WP_DEBUG_DISPLAY back to false, as displaying errors publicly can expose sensitive information.
Let me know how it goes. Thanks
I think the issue was solved @sterndata . It was showing Critical Error message when I viewed the site.
Finally my website is working ❤️
