(06-06-2017 05:32 PM)Superslash Wrote: [ -> ]sorry dude, not mean to arguing here..but i have try your methode but i can not find it and not result anything
Its not a problem.
Here is the relevant screen dump of the commands I used to find the files that contain the variables you need to change.
Magic Button :
Code:
[root@centos6 plugins]# cd wpdigipro
[root@centos6 wpdigipro]# ls
assets index.php readme.txt wpdigipro.php
changelog.txt languages wpdigipro-controller.php
includes libraries wpdigipro-import.php
[root@centos6 wpdigipro]# grep https *
grep: assets: Is a directory
grep: includes: Is a directory
grep: languages: Is a directory
grep: libraries: Is a directory
readme.txt:License to use this plugin is being given ONLY to the users who have bought this from https://WPDigiPro.com 's official website.
wpdigipro.php:* Plugin URI: https://wpdigipro.com/
wpdigipro.php:* Author URI: https://ommune.com/
[root@centos6 wpdigipro]# grep https */*
grep: assets/css: Is a directory
grep: assets/fonts: Is a directory
grep: assets/graph: Is a directory
grep: assets/images: Is a directory
grep: assets/js: Is a directory
grep: includes/adapters: Is a directory
grep: includes/listeners: Is a directory
grep: includes/templates: Is a directory
includes/wpdigipro-actions.php: $document_link = 'https://wpdigipro.com/documentation/';
includes/wpdigipro-actions.php: $document_link = 'https://wpdigipro.com/helpdesk';
includes/wpdigipro-front-model.php: if (substr($url, 0, 8) == 'https://') { $url = substr($url, 8); }
includes/wpdigipro-includes.php:$wpdigipro_main_url = 'https://wpdigipro.com';
includes/wpdigipro-model.php: $url = 'https://www.gravatar.com/avatar/';$url .= md5(strtolower(trim($email)));$url .= "?s=$s&d=$d&r=$r";
includes/wpdigipro-model.php: $checkout_url = 'https://www.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://sandbox.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://www.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://sandbox.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: * Create short url for the use display short url (e.g. https://wpdigipro.com/images/new...png)
includes/wpdigipro-model.php: $html = '<div class="powered-by"><p>'.$name. ' <a href="https://wpdigipro.com" class="" target="_blank">'.$link.'</a></p></div>';
includes/wpdigipro-paypal-configuration.php: $paypal_api_url = 'https://api-3t.paypal.com/nvp';
includes/wpdigipro-paypal-configuration.php: $wpdigipro_paypal_url = 'https://www.paypal.com/cgi-bin/webscr';
includes/wpdigipro-paypal-configuration.php: $paypal_api_url = 'https://api-3t.sandbox.paypal.com/nvp';
includes/wpdigipro-paypal-configuration.php: $wpdigipro_paypal_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
grep: libraries/2checkout: Is a directory
grep: libraries/paypal-listener: Is a directory
grep: libraries/wpdigipro-sql: Is a directory
[root@centos6 wpdigipro]# grep https includes/wpdigipro-includes.php
$wpdigipro_main_url = 'https://wpdigipro.com';
[root@centos6 wpdigipro]# grep -B 1 https includes/wpdigipro-includes.php
$wpdigipro_main_refrence_id = 2387;
$wpdigipro_main_url = 'https://wpdigipro.com';
[root@centos6 wpdigipro]#
They change the names of the variables in the different plugin files but the license server always stays that same. That is the needle we are looking for in this haystack. Once we find that we can easily locate the other variable because it is always one line up.
(06-06-2017 05:32 PM)Superslash Wrote: [ -> ]sorry dude, not mean to arguing here..but i have try your methode but i can not find it and not result anything
Its not a problem.
Here is the relevant screen dump of the commands I used to find the files that contain the variables you need to change.
Magic Button :
Code:
[root@centos6 plugins]# cd wpdigipro
[root@centos6 wpdigipro]# ls
assets index.php readme.txt wpdigipro.php
changelog.txt languages wpdigipro-controller.php
includes libraries wpdigipro-import.php
[root@centos6 wpdigipro]# grep https *
grep: assets: Is a directory
grep: includes: Is a directory
grep: languages: Is a directory
grep: libraries: Is a directory
readme.txt:License to use this plugin is being given ONLY to the users who have bought this from https://WPDigiPro.com 's official website.
wpdigipro.php:* Plugin URI: https://wpdigipro.com/
wpdigipro.php:* Author URI: https://ommune.com/
[root@centos6 wpdigipro]# grep https */*
grep: assets/css: Is a directory
grep: assets/fonts: Is a directory
grep: assets/graph: Is a directory
grep: assets/images: Is a directory
grep: assets/js: Is a directory
grep: includes/adapters: Is a directory
grep: includes/listeners: Is a directory
grep: includes/templates: Is a directory
includes/wpdigipro-actions.php: $document_link = 'https://wpdigipro.com/documentation/';
includes/wpdigipro-actions.php: $document_link = 'https://wpdigipro.com/helpdesk';
includes/wpdigipro-front-model.php: if (substr($url, 0, 8) == 'https://') { $url = substr($url, 8); }
includes/wpdigipro-includes.php:$wpdigipro_main_url = 'https://wpdigipro.com';
includes/wpdigipro-model.php: $url = 'https://www.gravatar.com/avatar/';$url .= md5(strtolower(trim($email)));$url .= "?s=$s&d=$d&r=$r";
includes/wpdigipro-model.php: $checkout_url = 'https://www.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://sandbox.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://www.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: $checkout_url = 'https://sandbox.2checkout.com/checkout/purchase';
includes/wpdigipro-model.php: * Create short url for the use display short url (e.g. https://wpdigipro.com/images/new...png)
includes/wpdigipro-model.php: $html = '<div class="powered-by"><p>'.$name. ' <a href="https://wpdigipro.com" class="" target="_blank">'.$link.'</a></p></div>';
includes/wpdigipro-paypal-configuration.php: $paypal_api_url = 'https://api-3t.paypal.com/nvp';
includes/wpdigipro-paypal-configuration.php: $wpdigipro_paypal_url = 'https://www.paypal.com/cgi-bin/webscr';
includes/wpdigipro-paypal-configuration.php: $paypal_api_url = 'https://api-3t.sandbox.paypal.com/nvp';
includes/wpdigipro-paypal-configuration.php: $wpdigipro_paypal_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
grep: libraries/2checkout: Is a directory
grep: libraries/paypal-listener: Is a directory
grep: libraries/wpdigipro-sql: Is a directory
[root@centos6 wpdigipro]# grep https includes/wpdigipro-includes.php
$wpdigipro_main_url = 'https://wpdigipro.com';
[root@centos6 wpdigipro]# grep -B 1 https includes/wpdigipro-includes.php
$wpdigipro_main_refrence_id = 2387;
$wpdigipro_main_url = 'https://wpdigipro.com';
[root@centos6 wpdigipro]#
They change the names of the variables in the different plugin files but the license server always stays that same. That is the needle we are looking for in this haystack. Once we find that we can easily locate the other variable because it is always one line up.
yup..i am nulling this with same methode as your but in different version.
first, find the server code and looking for by pass the password/license so we do not need the license anymore rather than fake license code
as you can see on my nulled version, it doesnt need license key
this plugin is sucks..not worth it
the owner has got many garbage product
as you can see, he is selling a plugin that make everybody can selling online but his poduct is get downloaded by free..event its need license code it can nulled in blink of my eyes
honestly, i am not a codder or programmer just want to contributte for this forum
save your monney from wasting time using scrap product like this
but if you helped to use this, then buy the original product to support the owner/developer
by the way..
i still wait some review about this plugin from you all
(06-07-2017 12:08 PM)Superslash Wrote: [ -> ]this plugin is sucks..not worth it
the owner has got many garbage product
as you can see, he is selling a plugin that make everybody can selling online but his poduct is get downloaded by free..event its need license code it can nulled in blink of my eyes
honestly, i am not a codder or programmer just want to contributte for this forum
save your monney from wasting time using scrap product like this
but if you helped to use this, then buy the original product to support the owner/developer
by the way..
i still wait some review about this plugin from you all
need review from you all...for me this plugin is sucks!!
Why?
it does not look like as the offer on sales page,
some add on not works ( i have not done 100% tested the add on all )
consuming time for nulled the main plugin
contact me if the plugin doesnt work..
i will nulled again for you, just give max repp for my [/code]effort