Welcome to GPLDL - we are still beta - please report any bugs via the contact form.
Hello,
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.
Hi,
It works well and is in production on several sites.
Thanks!
-Edie
I setup the plugin and it now works fine–for all features–with the edits I posted.
Update: 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.