• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Slider Revolution Responsive WordPress Plugin By ThemePunch

Slider Revolution Responsive WordPress Plugin By ThemePunch v6.7.8

No permission to download
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
 
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
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 by a moderator:
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
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
 
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
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
Babak 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...
 
Will this work with just installation or we need to register. I am newbee in using nulled plugins.
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock