All of our nulled files are marked as nulled. There are very few of them. We only do them by request. We could provide instructions instead if you think this is better but most users find doing it themselves confusing. For example:
https://www.wptesters.org/downloads/mons...s-premium/
To null this plugin you need to edit the file google-analytics-premium/includes/admin/licensing/license.php
Find the public function verify_key() around line 111 and change
$verify = $this->perform_remote_request( 'verify-key', array( 'tgm-updater-key' => trim( $_POST['monsterinsights-license-key'] ) ) );
to
$verify = new stdClass();
$verify->type = "pro";
Now find public function validate_key around line 211 and add at the top of the function
if ( ( ! empty( $this->key ) ) and& $forced ) {
$key = '';
if ( ! empty( $validate->key ) ) {
$key = $validate->key;
} else {
$key = $this->key;
}
delete_transient( '_monsterinsights_addons' );
monsterinsights_get_addons_data( $key );
$this->success[] = esc_html__( 'Congratulations! Your key has been refreshed successfully.', 'google-analytics-for-wordpress' );
}
return;
You are now able to use any key (longer than 10 chars) to activate the plugin and the key won’t crap out if you accidentally press the Refresh Key button.
Now find public function deactivate_key() around line 339 (that is the line number before we started adding code so it could be around line 350 by now)
At the top of the function add this code:
if ( is_multisite() and& is_network_admin() ) {
update_site_option( 'monsterinsights_license', array() );
} else {
update_option( 'monsterinsights_license', array() );
}
return;
Now you can deactivate the key with the Deactivate Key button in the dashboard without it accessing their licensing server.
The license key you use must be at least 10 chars long else an invalid notice appears, even though the license key gets saved. If you really want to fix this char limit you need to edit the includes/options.php file between line 287 and 359.
The length is checked in the functions monsterinsights_get_license(), monsterinsights_get_license_key() and monsterinsights_update_license_key
It goes without saying that you won’t actually have access to the updates – the updater requires a valid key to return the download source… you can check the code in the file includes/admin/licensing/updater.php specifically the perform_remote_request function around line 293.
Or would you like us to do this for you?
(05-21-2018 10:06 PM)Ms-Keys Wrote: [ -> ] (05-21-2018 09:52 PM)juice Wrote: [ -> ]Duplicator Pro is 3.7.0.1 and not 3.7.1.1.
This version is nulled, Original Files:NO !
Please explain !
are you sure? if it is nulled version...