• Hi. I found out a solution for my previous post. Just replace a line in the code of the script eu-cookie-consent.php, as follows:

    BEFORE CORRECTION
    define( 'RS_EUCC__PLUGIN_DIR_NAME', end( explode( '/', dirname( __FILE__ ) ) ) );
    
    AFTER CORRECTION
    //define( 'RS_EUCC__PLUGIN_DIR_NAME', end( explode( '/', dirname( __FILE__ ) ) ) );
    define( 'RS_EUCC__PLUGIN_DIR_NAME', substr(strrchr(dirname( __FILE__ ), '/'), 1) );
  • The topic ‘Notice in debug.log file’ is closed to new replies.