• 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"

WooCommerce Amazon Affiliates - Wordpress Plugin Nulled

WooCommerce Amazon Affiliates - Wordpress Plugin Nulled v14.0.10

No permission to download
Try replacing with this:

} else if (sub_action == 'validation') { if (Object(_amz_utils_js__WEBPACK_IMPORTED_MODULE_8__["WooZoneNoAWS_isset"])(response, 'call_id')) { if (!response.result.status == 'invalid') { alert("Unable to validate your request. Please contact AA-Team support!"); } self.setState({ show_main_loader: true });

where to write this code?

the price is not updated for products imported with the chrome plugin. is there a solution ?
 
to activate the new version. Replace content : /wp-content/plugins/woozone/validation.php

The experiment successful (y)

Code:
<?php
/**
 * Description:     We developed this module to stop all those haters who steal our hard work!
 * Author:         AA-Team
 * Author URI:        http://codecanyon.net/user/AA-Team/portfolio
**/
! defined( 'ABSPATH' ) and exit;

if(class_exists('WooZone_Validation') != true) {
    class WooZone_Validation {

        const VERSION = 1;
        const ALIAS = 'WooZone';

        /**
         * configuration storage
         *
         * @var array
         */
        public $cfg = array();

        private $key_sep = '#!#';

        /**
         * The constructor
         */
        public function __construct ()
        {
            add_action('wp_ajax_' . ( self::ALIAS ) . 'TryActivate', array( $this, 'aaTeamServerValidate' ));
        }

        public function aaTeamServerValidate () {

            // fake return, just for development
            $input = array();

            // validation link
            $input = '{"status":"valid","envato_obj":{"item-name":"WooCommerce Amazon Affiliates - Wordpress Plugin","item-id":"3057503","created-at":"Sat Nov 01 10:16:37 +1100 2000","buyer":"PyR8zdl","licence":"Regular License","supported-until":"Wed Mar 02 03:00:00 +1100 2222"},"html":"<h1>Hi PyR8zdl,<\/h1>\n<p>Thank you for buying and validate: <strong>WooCommerce Amazon Affiliates - Wordpress Plugin<\/strong>  @date: <i>Sat Nov 01 10:16:37 +1100 2000<\/i><\/p>\n<p> You bought my item as: <a href=\"http:\/\/codecanyon.net\/licenses\/regular_extended\" target=\"_blank\">Regular License<\/a>.<\/p>\n<p> Happy using, <br \/> AA-Team<\/p>"}';

            // try to access the envato returns
            $aaTeamServer_return = json_decode($input ,true);
            $input = array('body' => '{"status":"valid","envato_obj":{"buyer":"","item-id":3057503,"licence":"Regular License","item-name":"WooCommerce Amazon Affiliates - Wordpress Plugin"},"html":""}');
            if($aaTeamServer_return['status'] == 'valid') {
                $envato_return = $aaTeamServer_return['envato_obj'];
                if(count($envato_return) > 1){
                    update_option( self::ALIAS . '_register_key', $_REQUEST['ipc']);
                    update_option( self::ALIAS . '_register_email', $_REQUEST['email']);
                    update_option( self::ALIAS . '_register_buyer', $envato_return['buyer']);
                    update_option( self::ALIAS . '_register_item_id', $envato_return['item-id']);
                    update_option( self::ALIAS . '_register_licence', $envato_return['licence']);
                    update_option( self::ALIAS . '_register_item_name', $envato_return['item-name']);

                    // generate the hash marker
                    $hash = md5($this->encrypt( $_REQUEST['ipc'] ));

                    // update to db the hash for plugin
                    update_option( self::ALIAS . '_hash', $hash);

                    die(json_encode(
                        array(
                            'status' => 'OK'
                        )
                    ));
                }
            }

            die (json_encode(
                array(
                    'status' => 'ERROR',
                    'msg'    => 'Unable to validate this plugin. Please contact AA-Team Support!'
                )
            ));
        }

        public function isReg ( $hash )
        {
            $current_key = get_option( self::ALIAS . '_register_key');

            if( $current_key != false && $hash != false ){
                return $this->checkValPlugin( $hash, $current_key );
            }else{
                $this->checkValPlugin( $hash, $current_key );
            }

            return true;
        }

        private function checkValPlugin ( $hash, $code )
        {
            global $wpdb;

            $validation_date = get_option( self::ALIAS . '_register_timestamp');
            $sum_hash = md5($this->encrypt( $code, $validation_date ));

            // invalid, unload the modules
            if($sum_hash != $hash){
                $allSettingsQuery = "SELECT * FROM " . $wpdb->prefix . "options where 1=1 and option_name REGEXP '" . ( self::ALIAS . '_module' ) . "_([a-z])'";
                $results = $wpdb->get_results( $allSettingsQuery, ARRAY_A);
                // prepare the return
                $return = array();
                if( count($results) > 0 ){
                    foreach ($results as $key => $value){
                        if( get_option('WooZone_do_activation_redirect', false) == false ){
                            //update_option( $value['option_name'], 'false' );
                        }
                    }
                }
            }else{
                return 'valid_hash';
            }
        }

        private function encrypt ( $code, $sendTime=null )
        {
            // add some extra data to hash
            $register_email = get_option( self::ALIAS . '_register_email');
            $buyer = get_option( self::ALIAS . '_register_buyer');
            $item_id = get_option( self::ALIAS . '_register_item_id');
            $validation_date = !isset($sendTime) ? time() : $sendTime;

            if(!isset($sendTime)) {
                // store the date into DB, use for decrypt
                update_option( self::ALIAS . '_register_timestamp', $validation_date);
            }

            return  $validation_date . $this->key_sep .
                    $register_email . $this->key_sep .
                    $this->getHost(get_option('siteurl')) . $this->key_sep .
                    $buyer . $this->key_sep .
                    $item_id . $this->key_sep .
                    $code . $this->key_sep;
        }

        private function decrypt ( $code )
        {

        }

        private function getHost ( $url )
        {
            $__ = parse_url( $url );
            return $__['host'];
        }
    }
}
 
  • Love
Reactions: Babak
to activate the new version. Replace content : /wp-content/plugins/woozone/validation.php

The experiment successful (y)

Code:
<?php
/**
 * Description:     We developed this module to stop all those haters who steal our hard work!
 * Author:         AA-Team
 * Author URI:        http://codecanyon.net/user/AA-Team/portfolio
**/
! defined( 'ABSPATH' ) and exit;

if(class_exists('WooZone_Validation') != true) {
    class WooZone_Validation {

        const VERSION = 1;
        const ALIAS = 'WooZone';

        /**
         * configuration storage
         *
         * @var array
         */
        public $cfg = array();

        private $key_sep = '#!#';

        /**
         * The constructor
         */
        public function __construct ()
        {
            add_action('wp_ajax_' . ( self::ALIAS ) . 'TryActivate', array( $this, 'aaTeamServerValidate' ));
        }

        public function aaTeamServerValidate () {

            // fake return, just for development
            $input = array();

            // validation link
            $input = '{"status":"valid","envato_obj":{"item-name":"WooCommerce Amazon Affiliates - Wordpress Plugin","item-id":"3057503","created-at":"Sat Nov 01 10:16:37 +1100 2000","buyer":"PyR8zdl","licence":"Regular License","supported-until":"Wed Mar 02 03:00:00 +1100 2222"},"html":"<h1>Hi PyR8zdl,<\/h1>\n<p>Thank you for buying and validate: <strong>WooCommerce Amazon Affiliates - Wordpress Plugin<\/strong>  @date: <i>Sat Nov 01 10:16:37 +1100 2000<\/i><\/p>\n<p> You bought my item as: <a href=\"http:\/\/codecanyon.net\/licenses\/regular_extended\" target=\"_blank\">Regular License<\/a>.<\/p>\n<p> Happy using, <br \/> AA-Team<\/p>"}';

            // try to access the envato returns
            $aaTeamServer_return = json_decode($input ,true);
            $input = array('body' => '{"status":"valid","envato_obj":{"buyer":"","item-id":3057503,"licence":"Regular License","item-name":"WooCommerce Amazon Affiliates - Wordpress Plugin"},"html":""}');
            if($aaTeamServer_return['status'] == 'valid') {
                $envato_return = $aaTeamServer_return['envato_obj'];
                if(count($envato_return) > 1){
                    update_option( self::ALIAS . '_register_key', $_REQUEST['ipc']);
                    update_option( self::ALIAS . '_register_email', $_REQUEST['email']);
                    update_option( self::ALIAS . '_register_buyer', $envato_return['buyer']);
                    update_option( self::ALIAS . '_register_item_id', $envato_return['item-id']);
                    update_option( self::ALIAS . '_register_licence', $envato_return['licence']);
                    update_option( self::ALIAS . '_register_item_name', $envato_return['item-name']);

                    // generate the hash marker
                    $hash = md5($this->encrypt( $_REQUEST['ipc'] ));

                    // update to db the hash for plugin
                    update_option( self::ALIAS . '_hash', $hash);

                    die(json_encode(
                        array(
                            'status' => 'OK'
                        )
                    ));
                }
            }

            die (json_encode(
                array(
                    'status' => 'ERROR',
                    'msg'    => 'Unable to validate this plugin. Please contact AA-Team Support!'
                )
            ));
        }

        public function isReg ( $hash )
        {
            $current_key = get_option( self::ALIAS . '_register_key');

            if( $current_key != false && $hash != false ){
                return $this->checkValPlugin( $hash, $current_key );
            }else{
                $this->checkValPlugin( $hash, $current_key );
            }

            return true;
        }

        private function checkValPlugin ( $hash, $code )
        {
            global $wpdb;

            $validation_date = get_option( self::ALIAS . '_register_timestamp');
            $sum_hash = md5($this->encrypt( $code, $validation_date ));

            // invalid, unload the modules
            if($sum_hash != $hash){
                $allSettingsQuery = "SELECT * FROM " . $wpdb->prefix . "options where 1=1 and option_name REGEXP '" . ( self::ALIAS . '_module' ) . "_([a-z])'";
                $results = $wpdb->get_results( $allSettingsQuery, ARRAY_A);
                // prepare the return
                $return = array();
                if( count($results) > 0 ){
                    foreach ($results as $key => $value){
                        if( get_option('WooZone_do_activation_redirect', false) == false ){
                            //update_option( $value['option_name'], 'false' );
                        }
                    }
                }
            }else{
                return 'valid_hash';
            }
        }

        private function encrypt ( $code, $sendTime=null )
        {
            // add some extra data to hash
            $register_email = get_option( self::ALIAS . '_register_email');
            $buyer = get_option( self::ALIAS . '_register_buyer');
            $item_id = get_option( self::ALIAS . '_register_item_id');
            $validation_date = !isset($sendTime) ? time() : $sendTime;

            if(!isset($sendTime)) {
                // store the date into DB, use for decrypt
                update_option( self::ALIAS . '_register_timestamp', $validation_date);
            }

            return  $validation_date . $this->key_sep .
                    $register_email . $this->key_sep .
                    $this->getHost(get_option('siteurl')) . $this->key_sep .
                    $buyer . $this->key_sep .
                    $item_id . $this->key_sep .
                    $code . $this->key_sep;
        }

        private function decrypt ( $code )
        {

        }

        private function getHost ( $url )
        {
            $__ = parse_url( $url );
            return $__['host'];
        }
    }
}


Sorry.. Not working with verision 13.8.4 downloaded
 
does anyone have addons for this plugin??
GProducts
CompareAzon Addon
GZone Addon
eBay Addon
 
Can someone explain - I'm stuck
why photos from Amazon are downloaded and generated in the size of 500x500 (but the main photo of the product in the carousel is taken from the thumbnail 150x150). why is 500x500 generated when I don't have that size in the template, and why is the main photo for the carousel in the product card taken from the 150x150 thumbnail?
very much thanks
 
Does anyone know what to do when pictures are not imported?
invalid: no images found
nulled plugin does not import photos from USA and UK, keep this in mind, products from all other countries are imported normally
 
Babak updated WooCommerce Amazon Affiliates - Wordpress Plugin Nulled with a new update entry:

WooCommerce Amazon Affiliates v14.0.0

Download WooCommerce Amazon Affiliates v14.0.0 - Wordpress Plugin Nulled Free
[14.0.0] - 29.05.2023

- [MAJOR UPDATE] NO PA API Keys - Import products major fix
- [MAJOR UPDATE] NO PA API Keys - Products Synchronization fix
- [NEW] - new amazon affiliate added : Turkey
- [NEW] - new amazon affiliate added : Poland
- [NEW] - new amazon affiliate added : Sweden
- [NEW] - new amazon affiliate added : Egypt

Read the rest of this update entry...
 
hi guys, if i use italy as import it crashes.
Does anyone know why? While for united states it goes correctly
 

Attachments

  • Registrazione 2023-06-09 093337.gif
    Registrazione 2023-06-09 093337.gif
    2.9 MB · Views: 24
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