[Помогите] Занулить тему Themeforest Newspaper6

Тема в разделе "Wordpress", создана пользователем alxxla, 18 авг 2015.

  1. alxxla

    alxxla

    Регистрация:
    22 мар 2013
    Сообщения:
    121
    Симпатии:
    4
     
    Последнее редактирование: 18 авг 2015
  2. $iD

    $iD Команда форума

    Регистрация:
    13 мар 2012
    Сообщения:
    3.580
    Симпатии:
    1.482
    шаблоном поделитесь :Smile:
     
  3. alxxla

    alxxla

    Регистрация:
    22 мар 2013
    Сообщения:
    121
    Симпатии:
    4

    Мне вот интересно, если это сообщение о активации будет просто висеть, то и ладно.
    Но почитал страшилок, что потом в админке WP перекроется доступ к управлению шаблона, а это уже совсем нехорошо...
    Светлые головы, подскажите :Smile: ...
     
  4. alxxla

    alxxla

    Регистрация:
    22 мар 2013
    Сообщения:
    121
    Симпатии:
    4
    файл td_cake.php
    кто разбирается в коде - может чего "подправить"
    Код:
    <?php
    
    // - to reset the counter uncomment the 3 lines :
    //td_util::update_option('td_cake_status_time', '');
    //td_util::update_option('td_cake_status', '');
    //td_util::update_option('td_cake_lp_status', '');
    //die;
    
    //echo td_util::get_option('td_cake_status');
    
    /**
    * Class td_cake
    */
    
    define ('TD_CAKE_THEME_VERSION_URL', 'http://td_cake.themesafe.com/td_cake/version.php');
    //define ('TD_CAKE_THEME_VERSION_URL', 'http://0div.com:69/td_cake/version.php');
    
    class td_cake {
    
    
        /**
         * is running on each page load
         */
        function __construct() {
            // not admin
            if (!is_admin()) {
                return;
            }
    
            $td_cake_status_time = td_util::get_option('td_cake_status_time');    // last time the status changed
            $td_cake_status = td_util::get_option('td_cake_status');              // the current status time
            $td_cake_lp_status = td_util::get_option('td_cake_lp_status');
    
            // verify if we have a status time, if we don't have one, the theme did not changed the status ever
            if (!empty($td_cake_status_time)) {
    
    
                // the time since the last status change
                $status_time_delta = time() - $td_cake_status_time;
    
    
                // late version check after 30
                if (TD_DEPLOY_MODE == 'dev') {
                    $delta_max = 40;
                } else {
                    $delta_max = 2592000;
                }
                if ($status_time_delta > $delta_max and $td_cake_lp_status != 'lp_sent') {
                    td_util::update_option('td_cake_lp_status', 'lp_sent');
                    $td_theme_version = @wp_remote_get(TD_CAKE_THEME_VERSION_URL . '?cs=' . $td_cake_status . '&lp=true&v=' . TD_THEME_VERSION . '&n=' . TD_THEME_NAME, array('blocking' => false));
                    return $td_theme_version;
                }
    
    
                // the theme is registered, return
                if ($td_cake_status == 2) {
                    return '';
                }
    
    
                // add the menu
                add_action('admin_menu', array($this, 'td_cake_register_panel'), 11);
    
    
                if (TD_DEPLOY_MODE == 'dev') {
                    $delta_max = 40;
                } else {
                    $delta_max = 1209600; // 14 days
                }
                if ($status_time_delta > $delta_max) {
                    add_action( 'admin_notices', array($this, 'td_cake_msg_2') );
                    if ($td_cake_status != '4') {
                        td_util::update_option('td_cake_status', '4');
                    }
                    return '';
                }
    
                if (TD_DEPLOY_MODE == 'dev') {
                    $delta_max = 20;
                } else {
                    $delta_max = 604800; // 7 days
                }
                if ($status_time_delta > $delta_max) {
                    add_action( 'admin_notices', array($this, 'td_cake_msg') );
                    if ($td_cake_status != '3') {
                        td_util::update_option('td_cake_status', '3');
                    }
                    return '';
                }
    
                // if some time passed and status is empty - do ping
                if ($status_time_delta > 0 and empty($td_cake_status)) {
                    td_util::update_option('td_cake_status_time', time());
                    td_util::update_option('td_cake_status', '1');
                    $td_theme_version = @wp_remote_get(TD_CAKE_THEME_VERSION_URL . '?v=' . TD_THEME_VERSION . '&n=' . TD_THEME_NAME, array('blocking' => false)); // check for updates
                    return $td_theme_version;
                }
    
            } else {
                // update the status time first time - we do nothing
                td_util::update_option('td_cake_status_time', time());
                // add the menu
                add_action('admin_menu', array($this, 'td_cake_register_panel'), 11);
            }
    
            return '';
        }
    
    
    
        function td_cake_server_id() {
            ob_start();
            phpinfo(INFO_GENERAL);
            echo TD_THEME_NAME;
            return md5(ob_get_clean());
        }
    
    
        function td_cake_manual($s_id, $e_id, $t_id) {
            if (md5($s_id . $e_id) == $t_id) {
                return true;
            } else {
                return false;
            }
        }
    
    
        /**
         * the cake panel
         */
    
        function td_cake_register_panel() {
    
            add_submenu_page( "td_theme_welcome", 'Activate theme', 'Activate theme', "edit_posts", 'td_cake_panel', array($this, 'td_cake_panel'), null );
        }
    
    
        function td_cake_panel() {
            ?>
            <style type="text/css">
                .updated, .error {
                    display: none !important;
    
                }
    
                .td-small-bottom {
                    font-size: 12px;
                    color:#686868;
                    margin-top: 5px;
                }
    
                .td-manual-activation {
                    display: none;
                }
            </style>
    
            <?php
            $td_key = '';
            $td_server_id = '';
            $td_envato_code = '';
    
    
            if (!empty($_POST['td_active'])) {
                //is for activation?
    
                if (!empty($_POST['td_envato_code'])) {
                    $td_envato_code = $_POST['td_envato_code'];
                }
    
                if (!empty($_POST['td_server_id'])) {
                    $td_server_id = $_POST['td_server_id'];
                }
    
                if (!empty($_POST['td_key'])) {
                    $td_key = $_POST['td_key'];
                }
    
    
                //manual activation
                if ($_POST['td_active'] == 'manual') {
                    if ($this->td_cake_manual($td_server_id, $td_envato_code, $td_key) === true) {
    
                        td_util::update_option('envato_key', $td_envato_code);
                        td_util::update_option('td_cake_status', '2');
                        ?>
                        <script type="text/javascript">
                            alert('Thanks for activating the theme!');
                            window.location = "<?php echo admin_url()?>";
                        </script>
                    <?php
                    } else {
                        ?>
                        <script type="text/javascript">
                            alert('The code is invalid!');
                        </script>
                    <?php
                    }
                } elseif ($_POST['td_active'] == 'auto') {
                    if (TD_DEPLOY_MODE == 'dev') {
                        //auto activation
                        $td_cake_response = wp_remote_post('http://td_cake.themesafe.com/td_cake/auto.php', array (
                            'method' => 'POST',
                            'body' => array(
                                'k' => $td_envato_code,
                                'n' => TD_THEME_NAME,
                                'v' => TD_THEME_VERSION
                            ),
                            'timeout' => 12
                        ));
    
                    } else {
                        //auto activation
                        $td_cake_response = wp_remote_post('http://td_cake.themesafe.com/td_cake/auto.php', array (
                            'method' => 'POST',
                            'body' => array(
                                'k' => $td_envato_code,
                                'n' => TD_THEME_NAME,
                                'v' => TD_THEME_VERSION
                            ),
                            'timeout' => 12
                        ));
                    }
    
    
                    if (is_wp_error($td_cake_response)) {
    
                        //error http
                        ?>
                        <script type="text/javascript">
                            alert('Error accessing our activation service. Please use the manual activation. Sorry about this.');
                        </script>
                    <?php
                    } else {
                        if (isset($td_cake_response['response']['code']) and $td_cake_response['response']['code'] != '200') {
                            ?>
                            <script type="text/javascript">
                                alert('Error accessing our activation service. Please use the manual activation. Sorry about this. Server code: <?php echo $td_cake_response['response']['code'] ?>');
                            </script>
                        <?php
                        }
    
                        if (!empty($td_cake_response['body'])) {
                            $api_response = @unserialize($td_cake_response['body']);
    
                            if (!empty($api_response['envato_is_valid']) and !empty($api_response['envato_is_valid_msg'])) {
    
                                if ($api_response['envato_is_valid'] == 'valid' or $api_response['envato_is_valid'] == 'td_fake_valid') {
                                    td_util::update_option('envato_key', $td_envato_code);
                                    td_util::update_option('td_cake_status', '2');
    
    
                                    ?>
                                    <script type="text/javascript">
                                        alert(<?php echo json_encode($api_response['envato_is_valid_msg']) ?>);
                                        window.location = "<?php echo admin_url()?>";
                                    </script>
                                <?php
                                } else {
                                    ?>
                                    <script type="text/javascript">
                                        alert(<?php echo json_encode($api_response['envato_is_valid_msg']) ?>);
                                    </script>
                                <?php
                                }
    
                            } else {
                                ?>
                                <script type="text/javascript">
                                    alert('Error accessing our activation service. Please use the manual activation. Sorry about this.');
                                </script>
                            <?php
                            }
    
    
    
                        } else {
                            //empty body error
                        }
                    }
    
    
    
    
                }
            }
    
    
            ?>
    
            <?php
    
            require_once "wp-admin/panel/td_view_header.php";
    
            ?>
    
    
            <div class="about-wrap td-admin-wrap">
                <h1>Activate <?php echo TD_THEME_NAME ?></h1>
                <div class="about-text" style="margin-bottom: 32px;">
                    <p>
                        Please activate <?php echo TD_THEME_NAME ?> to enjoy the full benefits of the theme. We're sorry about this extra step but we built the activation system to prevent
                        mass piracy of our themes, this allows us to better serve our paying customers.
    
                        <strong>Once activated</strong> you can easily register for support form the support tab.
                    </p>
                </div>
    
    
    
                <form method="post" action="admin.php?page=td_cake_panel">
                    <table class="form-table">
                        <tr valign="top">
                            <th scope="row">Envato purchase code:</th>
                            <td>
                                <input style="width: 400px" type="text" name="td_envato_code" value="<?php echo $td_envato_code; ?>" />
                                <br/>
                                <div class="td-small-bottom"><a href="http://forum.tagdiv.com/how-to-find-your-envato-purchase-code/" target="_blank">Where to find your purchase code ?</a></div>
                            </td>
                        </tr>
    
    
    
                    </table>
    
                    <input type="hidden" name="td_active" value="auto">
                    <?php submit_button('Activate theme'); ?>
    
                </form>
    
                <br/><br/><br/><br/><br/>
                <h3>Manual activation</h3>
                <p>If the above activation method fails, <a href="#" class="td-manual-activation-btn">activate the theme manually</a></p>
    
                <div class="td-manual-activation">
                    <ul>
                        <li>1. <a href="http://tagdiv.com/td_cake/manual.php" target="_blank">Go to our manual activation page</a></li>
                        <li>2. Paste your unique ID there and the <a href="http://forum.tagdiv.com/how-to-find-your-envato-purchase-code/" target="_blank">envato purchase code</a></li>
                        <li>3. <a href="http://forum.tagdiv.com/wp-content/uploads/2014/09/2014-09-09_1458.png" target="_blank">Get the activation code</a> and paste it in this form</li>
                    </ul>
    
                    <form method="post" action="admin.php?page=td_cake_panel">
                        <table class="form-table">
    
                            <tr valign="top">
                                <th scope="row">Your server ID:</th>
                                <td>
                                    <input style="width: 400px" type="text" value="<?php echo $this->td_cake_server_id();?>" />
                                    <br/>
                                    <div class="td-small-bottom">Copy this id and paste it in our manual activation page</div>
                                </td>
    
                            </tr>
    
    
                            <tr valign="top">
                                <th scope="row">Envato purchase code:</th>
                                <td><input style="width: 400px" type="text" name="td_envato_code" value="<?php echo $td_envato_code; ?>" /></td>
                            </tr>
    
                            <tr valign="top">
                                <th scope="row">tagDiv activation key:</th>
                                <td>
                                    <input style="width: 400px" type="text" name="td_key" value="<?php echo $td_key; ?>" />
                                    <br/>
                                    <div class="td-small-bottom">You will get this id from the <a href="http://tagdiv.com/td_cake/manual.php" target="_blank">manual activation page</a></div>
                                </td>
    
                            </tr>
    
                            <input type="hidden" name="td_active" value="manual">
                            <input type="hidden" name="td_server_id" value="<?php echo $this->td_cake_server_id();?>">
    
                        </table>
    
                        <?php submit_button('Manual activate theme'); ?>
                    </form>
                </div>
    
            </div>
    
    
    
            <script type="text/javascript">
                jQuery('.td-manual-activation-btn').click(function(event){
                    event.preventDefault();
                    jQuery('.td-manual-activation').css('display', 'block');
                    //alert('ra');
                });
            </script>
        <?php
        }
    
    
        // all admin pages that begin with td_ do now show the message
        private function check_if_is_our_page() {
            if (isset($_GET['page']) and substr($_GET['page'], 0, 3) == 'td_') {
                return true;
            }
            return false;
        }
    
    
    
        function td_cake_msg() {
            if ($this->check_if_is_our_page() === true) {
                return;
            }
            ?>
            <div class="error">
                <p><?php echo '<strong style="color:red"> Please activate the theme! </strong> - <a href="' . wp_nonce_url( admin_url( 'admin.php?page=td_cake_panel' ) ) . '">Click here to enter your code</a> - if this is an error please contact us at [email protected] - <a href="http://forum.tagdiv.com/how-to-activate-the-theme/">How to activate the theme</a>'; ?></p>
            </div>
        <?php
        }
    
    
        function td_cake_msg_2() {
            if ($this->check_if_is_our_page() === true) {
                return;
            }
            ?>
            <div class="error">
                <p>
                    Activate <?php echo TD_THEME_NAME ?> to enjoy the full benefits of the theme. We're sorry about this extra step but we built the activation system to prevent
                    mass piracy of our themes, this allows us to better serve our paying customers.
    
                    <strong>An active theme comes with free updates, top notch support, guaranteed latest WordPress support</strong>.
    
                </p>
                <p><?php echo '<strong style="color:red"> Please activate the theme! </strong> - <a href="' . wp_nonce_url( admin_url( 'admin.php?page=td_cake_panel' ) ) . '">Click here to enter your code</a> - if this is an error please contact us at [email protected] - <a href="http://forum.tagdiv.com/how-to-activate-the-theme/">How to activate the theme</a>'; ?></p>
            </div>
        <?php
        }
    }
    
    
    new td_cake();
    
     
  5. fisher

    fisher

    Регистрация:
    11 сен 2013
    Сообщения:
    1
    Симпатии:
    0
    Ой, вопрос решается элементарно. Не нужно никому, ничего писать:



    Вуаля! Активация выполнена!
     
  6. laruonhik

    laruonhik

    Регистрация:
    9 авг 2016
    Сообщения:
    1
    Симпатии:
    0
    Привет!
    Можешь помочь с этой темой? Не могу сообразить как ее активировать.. =(
    http://demo.themeisle.com/parallax-one/
     
  7. Tarix

    Tarix

    Регистрация:
    19 окт 2016
    Сообщения:
    1
    Симпатии:
    0
    Newspaper/includes/wp_booster/td_cake.php
    function td_cake_manual($s_id, $e_id, $t_id) {
    if (md5($s_id . $e_id) == $t_id) {
    return true;
    } else {
    return false;
    }
    }
    заменит
    if ($e_id == "bender.uz" && $t_id == "bender") {
    return true;
    } else {
    return false;
    }
    }
    tarix.uz/wp-admin/admin.php?page=td_cake_panel
    Envato Purchase Code: bender.uz

    Activation Key: bender
     
  8. pervostok

    pervostok

    Регистрация:
    1 авг 2019
    Сообщения:
    1
    Симпатии:
    0
    Шаблон PenNews
    Пишет что активировать нужно, что в принципе, дело, но не на этом домене и не сейчас
    Вот такой код нашел, что дальше делать, подскажет кто?

    Код:
             * Show notice active theme
            
            function validation_notice() {
                $pennews_theme = wp_get_theme();
                $link_page_active = admin_url( 'admin.php?page=pennews_active_theme' );
                ?>
                <div class="notice notice-success is-dismissible">
                    <p>
                        <a class="penci-notice-logo" href="<?php echo esc_url( 'http://pencidesign.com/' ); ?>" target="_blank"><?php $this->get_icon_penci(); ?></a>
                        <?php echo esc_html( sprintf( __( 'Please activate PenNews to use full features of the theme. We\'re sorry about this but we built the activation system to prevent piracy of our themes in the internet, we can do better serve our paying customers.', 'pennews' ), $pennews_theme->name ) ); ?>
                    </p>
                    <p>
                        <strong style="color:red"><?php esc_html_e( 'Please activate the theme!', 'pennews' ); ?></strong> -
                        <a href="<?php echo ( $link_page_active ); ?>"><?php esc_html_e( 'Click here to enter your code','pennews' ); ?></a>
                        - <?php _e( 'if you have issues with this please contact us via <a href="http://pencidesign.ticksy.com/" target="_blank">our support forum</a> or <a href="https://themeforest.net/user/pencidesign#contact" target="_blank">our contact form</a>', 'pennews' ); ?> -
                        <a href="<?php echo( $link_page_active ); ?>"><?php esc_html_e( 'Active theme page here', 'pennews' ); ?></a></p>
                </div>
                <?php
            }
     
  9. antonbaton

    antonbaton

    Регистрация:
    24 апр 2013
    Сообщения:
    11
    Симпатии:
    1
    Подскажите, возможно ли купить шаб, скачать демо-контент одного типа и занулить это?
    Потом скачать другой тип и снова занулить.

    Хочу купить один мультишаб с разными вариантами и поставить его несколько доменов.
    Как это реализуется, кто подскажет?
     
  10. $iD

    $iD Команда форума

    Регистрация:
    13 мар 2012
    Сообщения:
    3.580
    Симпатии:
    1.482
    Если код открыт то с вероятностью 90% можно