Forum Replies Created
-
AuthorPosts
-
Edie
ParticipantHello,
We’d really like to get Perfmatters, which is 100% GPL here. We spent an entire year comparing the downloads here with those directly from devs and we know you are dedicated to good hygiene. We can’t say that for others and simply don’t have the time to carefully research and evaluate others.We haven’t used the plugin and can’t be sure that it will work without modification and without the license key but this page says that without a valid license you won’t get updates, not that the plugin will not work: https://perfmatters.io/docs/how-to-install-perfmatters/
We’d be glad to add a donation $19.95 if that will help.
October 3, 2017 at 2:43 pm in reply to: WP Rocket "How to remove the license code check" no longer works #19379Edie
ParticipantHi,
It works well and is in production on several sites.Thanks!
-EdieSeptember 13, 2017 at 3:47 pm in reply to: WP Rocket "How to remove the license code check" no longer works #19258Edie
ParticipantI setup the plugin and it now works fine–for all features–with the edits I posted.
September 13, 2017 at 2:21 pm in reply to: WP Rocket "How to remove the license code check" no longer works #19257Edie
ParticipantUpdate: I replaced:
`
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:
`
function rocket_valid_key() {
// BEGIN: DISABLE LICENSE CHECK
return 8;
// END: DISABLE LICENSE CHECK
}`
And it appears to work. I’ll report back if it doesn’t. -
AuthorPosts

