Perfmatters - Speed Up Your WordPress Site

Perfmatters - Speed Up Your WordPress Site v2.4.3

No permission to download

acidgruvz

New member
Jul 27, 2020
12
19
3
plugin has a typo on line 18 of perfmatters.php a ] character.

also the nulling method they are doing is bad, it inserts into database the license every single request... bad for performance..

its better if you just change the functions.php file 3 last functions to:

function perfmatters_activate_license() {
/*
$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

update_option('perfmatters_edd_license_status', $license_data->license);
update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');
*/

}

function perfmatters_deactivate_license() {


}

function perfmatters_check_license() {

//object(stdClass)#2800 (5) { ["success"]=> bool(false) ["license"]=> string(7) "invalid" ["item_id"]=> bool(false) ["item_name"]=> string(11) "perfmatters" ["checksum"]=> string(32) "dcd4dc4dd1f04000afd42aa14223b6e9" }
//grab existing license data

$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

//update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');


return $l;
}
 

NBB

New member
Oct 19, 2019
28
14
3
Türkiye
PHP Parse error: syntax error, unexpected ']', expecting end of file in /home/......./public_html/wp-content/plugins/perfmatters/perfmatters.php on line 18
 
  • Like
Reactions: wookid

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,093
111,733
120

tayllor

Member
Dec 21, 2020
130
21
18
Can anyone suggest me some plugins which will boost site performance of my Wordpress site on a Shared Hosting ?
 

neomatrix

Member
May 1, 2020
72
6
8
plugin has a typo on line 18 of perfmatters.php a ] character.

also the nulling method they are doing is bad, it inserts into database the license every single request... bad for performance..

its better if you just change the functions.php file 3 last functions to:

function perfmatters_activate_license() {
/*
$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

update_option('perfmatters_edd_license_status', $license_data->license);
update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');
*/

}

function perfmatters_deactivate_license() {


}

function perfmatters_check_license() {

//object(stdClass)#2800 (5) { ["success"]=> bool(false) ["license"]=> string(7) "invalid" ["item_id"]=> bool(false) ["item_name"]=> string(11) "perfmatters" ["checksum"]=> string(32) "dcd4dc4dd1f04000afd42aa14223b6e9" }
//grab existing license data

$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

//update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');


return $l;
}



Does this apply to the latest version to download aswell? V1.65
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,093
111,733
120
philxxx updated Perfmatters - Plugin Developed To Speed Up Your WordPress Site with a new update entry:

Perfmatters v1.6.6 Nulled

Download Perfmatters v1.6.6 - Plugin Developed To Speed Up Your WordPress Site Nulled Free
v1.6.6 – 01.13.2021 - Thanks To @TassieNZ


Read the rest of this update entry...
 

pedrobonfim.br

Active member
Oct 4, 2018
107
52
28
Hello! I upgraded to this last version 1.6.6 , but now this saying that my license is invalid.
Can any friends help me?
Can you make available any key?
 

martts

Member
Oct 16, 2019
31
20
8
clouds
also the nulling method they are doing is bad, it inserts into database the license every single request... bad for performance..

its better if you just change the functions.php file 3 last functions to:

function perfmatters_activate_license() {
/*
$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

update_option('perfmatters_edd_license_status', $license_data->license);
update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');
*/

}

function perfmatters_deactivate_license() {


}

function perfmatters_check_license() {

//object(stdClass)#2800 (5) { ["success"]=> bool(false) ["license"]=> string(7) "invalid" ["item_id"]=> bool(false) ["item_name"]=> string(11) "perfmatters" ["checksum"]=> string(32) "dcd4dc4dd1f04000afd42aa14223b6e9" }
//grab existing license data

$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

//update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');


return $l;
}

Method work well and we got "License is Activated" status.. (y)
 
Last edited:

otetatsuya

Member
Dec 26, 2020
45
20
8
Bali, Indonesia
agraphotobali.com
plugin has a typo on line 18 of perfmatters.php a ] character.

also the nulling method they are doing is bad, it inserts into database the license every single request... bad for performance..

its better if you just change the functions.php file 3 last functions to:

function perfmatters_activate_license() {
/*
$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

update_option('perfmatters_edd_license_status', $license_data->license);
update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');
*/

}

function perfmatters_deactivate_license() {


}

function perfmatters_check_license() {

//object(stdClass)#2800 (5) { ["success"]=> bool(false) ["license"]=> string(7) "invalid" ["item_id"]=> bool(false) ["item_name"]=> string(11) "perfmatters" ["checksum"]=> string(32) "dcd4dc4dd1f04000afd42aa14223b6e9" }
//grab existing license data

$l = new \stdClass;
$l->success = true;
$l->license = 'valid';
$l->item_id = '666';
$l->item_name = 'perfmatters';
$l->checksum = 'dcd4dc4dd1f04000afd42aa14223b6e9';

//update_option('perfmatters_edd_license_key', 'YOU-MAK-MEA-SAD-PAN-DAH');


return $l;
}

This method work well after license issue when updated to 1.6.6 version.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu