Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nam90viet

    (@nam90viet)

    Hi!

    You can fix it in: /public_html/wp-content/themes/dyad-wpcom/template-parts/content-custom-header.php

    Exemple:

    From:

    if( empty( shell_exec(“which $command”) ) ) {
    return false;
    }

    if( $config[‘debug’] ) {
    $start = microtime(true);
    }

    Change to:

    $var = shell_exec(“which $command”) ;
    if( empty( $var ) ) {
    return false;
    }

    if( $config[‘debug’] ) {
    $start = microtime(true);
    }

    It will ok.

    Thread Starter nam90viet

    (@nam90viet)

    I do not think so, I’ve tried before.
    I’ve seen this error, and edited according to a guide by a certain member will ok. But I can’t remember ??

Viewing 2 replies - 1 through 2 (of 2 total)