• Hi

    How the following problem…..

    Latest WordPress and PHP 7.0.30 works just fine.
    Change PHP to 7.2 and all stops working.

    Any suggestions on how to track down the problem ?

Viewing 1 replies (of 1 total)
  • Changing PHP version certainly cause compatibility issues,
    To find out exact issue, make the following changes in WP-Config.php file to get exact error.

    1) if you find below WP_DEBUG set to false then set it as true

    define( ‘WP_DEBUG’, false ); ===> define( ‘WP_DEBUG’, true );

    It will trigger the “debug” mode.

    2) Also, change WP_DEBUG_DISPLAY from false to true

    define( ‘WP_DEBUG_DISPLAY’, false ); ====> define( ‘WP_DEBUG_DISPLAY’, true );

    It will displays the warnings and errors.

    Then check your website. Now it will shows the exact error.

Viewing 1 replies (of 1 total)
  • The topic ‘php7.2 crashes site’ is closed to new replies.