• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

How to add anti adblock code php

tubeurpro

Chevereto Member
Hello,

I want to try propellerads

To integrate anti adblock code php i have to do that:

Integrating PHP Anti-Adblock ad channel code
It would need some development skills to implement that, but provides you unlimited anti-adblock support for an ad channel without need to replace code.



1) Download the PHP file pa_antiadblock.php containing your onclick ads code with anti-adblock support

2) Upload it on your server to the directory on server where your website PHP files are located

3) Insert this line into your .php file where you would normally put the ad serving tag (best place for onclick ads is right after <head> tag)

<?php echo include_once (dirname(__FILE__) . '/pa_antiadblock.php'); ?>


In which chevereto file do i put the dowload file & the line

Thanks for your help
 
I put in the header.sample.php rename to header.php

PHP:
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
<?php /* Add your custom PHP/HTML code in this file */ ?>

<?php echo include_once (dirname(__FILE__) . '/pa_antiadblock.php'); ?>

<?php

/**
 * AntiAdBlock custom library for API, with some caching.
 * Requires PHP 5+.
 */
class __AntiAdBlock
{
    /** @var string */
    private $token = '3e2245d2164f6ce2e89f5db63262111b57e40af3';

    /** @var int */
    private $zoneId = '1193690';

    ///// do not change anything below this point /////

    private function getCurl($url)
    {
        if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) {
            return false;
        }

        $curl = curl_init();
        curl_setopt_array($curl, array(
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_USERAGENT      => 'AntiAdBlock API Client',
            CURLOPT_FOLLOWLOCATION => false,
            CURLOPT_SSL_VERIFYPEER => true,
        ));

        // prefer SSL if at all possible
        $version = curl_version();
        if ($version['features'] & CURL_VERSION_SSL) {
            curl_setopt($curl, CURLOPT_URL, 'https://go.transferzenad.com' . $url);
        } else {
            curl_setopt($curl, CURLOPT_URL, 'http://go.transferzenad.com' . $url);
        }

        $result = curl_exec($curl);
        curl_close($curl);
        return $result;
    }

    private function getFileGetContents($url)
    {
        if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') ||
            ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) {
            return false;
        }

        if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) {
            return file_get_contents('https://go.transferzenad.com' . $url);
        } else {
            return file_get_contents('http://go.transferzenad.com' . $url);
        }
    }

    private function getFsockopen($url)
    {
        $fp = null;
        if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) {
            $fp = fsockopen('ssl://' . 'go.transferzenad.com', 443, $enum, $estr, 10);
        }
        if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname('go.transferzenad.com'), 80, $enum, $estr, 10)))) {
            return false;
        }

        $out = "GET " . $url . " HTTP/1.1\r\n";
        $out .= "Host: go.transferzenad.com\r\n";
        $out .= "User-Agent: AntiAdBlock API Client\r\n";
        $out .= "Connection: close\r\n\r\n";
        fwrite($fp, $out);
        $in = '';
        while (!feof($fp)) {
            $in .= fgets($fp, 1024);
        }
        fclose($fp);
        return substr($in, strpos($in, "\r\n\r\n") + 4);
    }

    private function findTmpDir()
    {
        if (!function_exists('sys_get_temp_dir')) {
            if (!empty($_ENV['TMP'])) {
                return realpath($_ENV['TMP']);
            }
            if (!empty($_ENV['TMPDIR'])) {
                return realpath($_ENV['TMPDIR']);
            }
            if (!empty($_ENV['TEMP'])) {
                return realpath($_ENV['TEMP']);
            }
            // this will try to create file in dirname(__FILE__) and should fall back to /tmp or wherever
            $tempfile = tempnam(dirname(__FILE__), '');
            if (file_exists($tempfile)) {
                unlink($tempfile);
                return realpath(dirname($tempfile));
            }
            return null;
        }
        return sys_get_temp_dir();
    }

    public function get()
    {
        $e = error_reporting(0);

        $url = "/v1/getTag?" . http_build_query(array('token' => $this->token, 'zoneId' => $this->zoneId));
        $file = $this->findTmpDir() . '/pa-code-' . md5($url) . '.js';
        // expires in 4h
        if (file_exists($file) && (time() - filemtime($file) < 4 * 3600)) {
            error_reporting($e);
            return file_get_contents($file);
        }
        $code = $this->getCurl($url);
        if (!$code) {
            $code = $this->getFileGetContents($url);
        }
        if (!$code) {
            $code = $this->getFsockopen($url);
        }

        if ($code) {
            // atomic update, and it should be okay if this happens simultaneously
            $fp = fopen("{$file}.tmp", 'wt');
            fwrite($fp, $code);
            fclose($fp);
            rename("${file}.tmp", $file);
        }

        error_reporting($e);
        return $code;
    }
}

$__aab = new __AntiAdBlock();
return $__aab->get();
 
This:
PHP:
<?php echo include_once (dirname(__FILE__) . '/pa_antiadblock.php'); ?>

Is calling something using dirname function and using __FILE__ as argument, which is a magic constant which php.net describes as:
The full path and filename of the file with symlinks resolved. If used inside an include, the name of the included file is returned.

__FILE__ makes reference to app/themes/Peafowl/custom_hooks/header.php so basically you are calling the script as app/themes/Peafowl/custom_hooks/pa_antiadblock.php and of course that isn't there.

Taking in consideration that most likely you uploaded this to your root HTML (public_html) this is the line that you want:

PHP:
<?php echo include_once (G_ROOT_PATH . 'pa_antiadblock.php'); ?>
 
Use this:
PHP:
<?php echo include_once (G_ROOT_PATH . 'pa_antiadblock.php'); ?>

Note: Make sure that pa_antiadblock.php exists at public_html/
 
Hello Rodolfo

This is very important thing to we can add because lot of people using adblocker and then we can't generate revenue.Rodolfo i see that you write here about this how to add but little bit is messy and i can't finish this properly. Can you please write this step by step. Example: first put this code here then put other code here, etc. to describe in best way. Thanks in advance
 
Back
Top