• 28-09-2023, 19:55:41
    #1
    Wordpress ile phpbb entegrasyon yapmaya çalışıyorum. sitede aşağıdaki hata veriyor;

    Sitedeki verdiği hata: Parse error: syntax error, unexpected identifier "with", expecting ")" in /home/pcdesryt/public_html/wp-config.php on line 83

    wp-config.php
    82.satır: define( 'WP_DEBUG', false );
    83.satır: comment ( prepend with // ) the 'WP_DEBUG' line // define( 'WP_DEBUG', true );

    hataya göre dosyadaki sorunu çözebilmek için 83.satırda nasıl bir kod eklemem lazım.
  • 28-09-2023, 20:01:32
    #2
    false haline getirsenize bi debug modeyi
  • 28-09-2023, 20:04:09
    #3
    Aşağıdaki gibi yaptım. "Ama oda Web sitenizde kritik bir hata oluştu. " diyor.

    // 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 );