Slider Revolution Responsive WordPress Plugin By ThemePunch

Slider Revolution Responsive WordPress Plugin By ThemePunch v6.7.32 + All Addons

No permission to download

King Kong

Active member
Trusted Uploader
Aug 14, 2020
275
178
43
No Country for Old Men !
I have replaced the following code in wp-content/plugins/revslider/admin/includes/license.class.php
Code:
$response      = $rslb->call_url('activate.php', $data, 'updates');
        $version_info = wp_remote_retrieve_body($response);
     
        if(is_wp_error($version_info)) return false;

with (there needs to be a $ infront of version_info below)

Code:
version_info == 'valid'

This will register the Revslider, and also addons can be installed and activated without any issue. Unelss you are using a valid key I do not think you can update the plugin nor you can get the templates.

@ckeeper : Can you share the Full CODE as am bit confused on your explanation
 

ckeeper

Well-known member
Nov 8, 2019
623
376
63
Code:
<?php
/**
* @author    ThemePunch <[email protected]>
* @link      https://www.themepunch.com/
* @copyright 2020 ThemePunch
* @since      6.2.0
*/

if(!defined('ABSPATH')) exit();

class RevSliderLicense extends RevSliderFunctions {
    /**
     * Activate the Plugin through the ThemePunch Servers
     * @before 6.0.0: RevSliderOperations::checkPurchaseVerification();
     * @before 6.2.0: RevSliderAdmin::activate_plugin();
     **/
    public function activate_plugin($code){
        $rslb = new RevSliderLoadBalancer();
        $data = array('code' => urlencode($code), 'version'    => urlencode(RS_REVISION), 'product' => urlencode(RS_PLUGIN_SLUG));
       
        $version_info == 'valid';
       
        if($version_info == 'valid'){
            update_option('revslider-valid', 'true');
            update_option('revslider-code', $code);
            return true;
        }elseif($version_info == 'exist'){
            return 'exist';
        }elseif($version_info == 'banned'){
            return 'banned';
        }
       
        return false;
    }
   
   
    /**
     * Deactivate the Plugin through the ThemePunch Servers
     * @before 6.0.0: RevSliderOperations::doPurchaseDeactivation();
     * @before 6.2.0: RevSliderAdmin::deactivate_plugin();
     **/
    public function deactivate_plugin(){
        $rslb = new RevSliderLoadBalancer();
        $code = get_option('revslider-code', '');
        $data = array('code' => urlencode($code), 'product' => urlencode(RS_PLUGIN_SLUG));
       
        $res = $rslb->call_url('deactivate.php', $data, 'updates');
        $vi     = wp_remote_retrieve_body($res);
       
        if(is_wp_error($vi)) return false;

        if($vi == 'valid'){
            update_option('revslider-valid', 'false');
            update_option('revslider-code', '');
           
            return true;
        }
       
        return false;
    }
}
?>
 
Last edited:
  • Like
Reactions: mader

King Kong

Active member
Trusted Uploader
Aug 14, 2020
275
178
43
No Country for Old Men !
Code:
<?php
/**
* @author    ThemePunch <[email protected]>
* @link      https://www.themepunch.com/
* @copyright 2020 ThemePunch
* @since      6.2.0
*/

if(!defined('ABSPATH')) exit();

class RevSliderLicense extends RevSliderFunctions {
    /**
     * Activate the Plugin through the ThemePunch Servers
     * @before 6.0.0: RevSliderOperations::checkPurchaseVerification();
     * @before 6.2.0: RevSliderAdmin::activate_plugin();
     **/
    public function activate_plugin($code){
        $rslb = new RevSliderLoadBalancer();
        $data = array('code' => urlencode($code), 'version'    => urlencode(RS_REVISION), 'product' => urlencode(RS_PLUGIN_SLUG));
      
        $version_info == 'valid'
      
        if($version_info == 'valid'){
            update_option('revslider-valid', 'true');
            update_option('revslider-code', $code);
            return true;
        }elseif($version_info == 'exist'){
            return 'exist';
        }elseif($version_info == 'banned'){
            return 'banned';
        }
      
        return false;
    }
  
  
    /**
     * Deactivate the Plugin through the ThemePunch Servers
     * @before 6.0.0: RevSliderOperations::doPurchaseDeactivation();
     * @before 6.2.0: RevSliderAdmin::deactivate_plugin();
     **/
    public function deactivate_plugin(){
        $rslb = new RevSliderLoadBalancer();
        $code = get_option('revslider-code', '');
        $data = array('code' => urlencode($code), 'product' => urlencode(RS_PLUGIN_SLUG));
      
        $res = $rslb->call_url('deactivate.php', $data, 'updates');
        $vi     = wp_remote_retrieve_body($res);
      
        if(is_wp_error($vi)) return false;

        if($vi == 'valid'){
            update_option('revslider-valid', 'false');
            update_option('revslider-code', '');
          
            return true;
        }
      
        return false;
    }
}
?>

when used I see this error --> Rev Slider Revolution - More Than Just a WordPress Slider v6.3.4 Nulled

1609085545055.png
 
Last edited:

NullMaster

Well-known member
Null Master
Trusted Uploader
Jul 25, 2018
12,058
22,063
120
when used I see this error --> Rev Slider Revolution - More Than Just a WordPress Slider v6.3.4 Nulled

1609085545055.png
no no..
Code:
public function activate_plugin($code){
        $rslb = new RevSliderLoadBalancer();
        $data = array('code' => urlencode($code), 'version'    => urlencode(RS_REVISION), 'product' => urlencode(RS_PLUGIN_SLUG));
        
        $response      = $rslb->call_url('activate.php', $data, 'updates');
        $version_info = wp_remote_retrieve_body($response);
        
        update_option('revslider-valid', 'true');
        update_option('revslider-code', '073e077f-b600-41e4-8b74-767431910d31');
        return true;
        

    }
 
  • Love
Reactions: mohablogfx

King Kong

Active member
Trusted Uploader
Aug 14, 2020
275
178
43
No Country for Old Men !
no no..
Code:
public function activate_plugin($code){
        $rslb = new RevSliderLoadBalancer();
        $data = array('code' => urlencode($code), 'version'    => urlencode(RS_REVISION), 'product' => urlencode(RS_PLUGIN_SLUG));
      
        $response      = $rslb->call_url('activate.php', $data, 'updates');
        $version_info = wp_remote_retrieve_body($response);
      
        update_option('revslider-valid', 'true');
        update_option('revslider-code', '073e077f-b600-41e4-8b74-767431910d31');
        return true;
      

    }

I am embarrassed to admit, @NullMaster but strangely I still see the repeat of same issue --> Add ons not being activated. I cleared all Cache/Cookies and tried a few times. If possible request you to pls paste the full working code lines for file license.class.php for me copy paste on the my install.

Thanks
 

ckeeper

Well-known member
Nov 8, 2019
623
376
63
If you guys are having issues with registration, you may need to delete the following from the database before trying to register it again. Most seems to work except the template import part on my end.
 

Attachments

  • Screen Shot 2020-12-27 at 19.54.44.png
    Screen Shot 2020-12-27 at 19.54.44.png
    64.4 KB · Views: 40

gNoM3

Member
Dec 30, 2020
81
70
18
Version 6.3.5 (31st December 2020)
Bugfixes

  • Added a protection against loop animation on layers where curviness was allowed and no values were set on x,y which may have produced console errors
  • Changing metas in the navigation editor will now straight add changes to the global and slide based styles
  • Fixed: Post excerpt limitations will now really make a difference between words and chars
  • Fixed: The vertically position of the progress bar may not show up well on slides with dynamic height in carousel view
  • Reducing amount of columns in a row will now copy layers from the “removed” column into the last existing column
  • Fixed: Rare error in backend that prevented editing sliders in case the new covered mode of layers has been used
  • Fixed: Chrome layout breaks on device orientation change
 
  • Like
Reactions: JRGWxRxZ

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,077
111,717
120
Tomz updated Slider Revolution - More Than Just a WordPress Slider with a new update entry:

Slider Revolution v6.3.5 Nulled

Download Slider Revolution v6.3.5 Responsive WordPress Plugin Nulled Free
v6.3.5 (31st December 2020) Thanks To @NullMaster
Bugfixes

  • Added a protection against loop animation on layers where curviness was allowed and no values were set on x,y which may have produced console errors
  • Changing metas in the navigation editor will now straight add changes to the global and slide based styles
  • Fixed: Post excerpt limitations will now really make a difference...

Read the rest of this update entry...
 

parthjuneja

Active member
Banned User
Oct 19, 2020
193
53
28
Pluto
Will this work with just installation or we need to register. I am newbee in using nulled plugins.
 

Latest posts

Forum statistics

Threads
69,246
Messages
908,561
Members
237,332
Latest member
Bchoi2314

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