Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • k ijijij
    Participant

    That doesn’t work anymore!

    For version 2.1.1 upward..

    Here is the working tweak…

    Replace the following… on line 533 – 540

    function rocket_valid_key() {
    if ( ! $rocket_secret_key = get_rocket_option( ‘secret_key’ ) ) {
    return false;
    }

    return 8 === strlen( get_rocket_option( ‘consumer_key’ ) ) && hash_equals( $rocket_secret_key, hash( ‘crc32’, get_rocket_option( ‘consumer_email’ ) ) );
    }

    With…

    //tweaked by stephen!
    function rocket_valid_key() {
    return true;

    }

    Currently working on Wp Rocket V2.1.1.5

    Cheers…

    • This reply was modified 6 years, 1 month ago by k ijijij.
Viewing 1 post (of 1 total)